chore: Release

This commit is contained in:
mat 2023-02-09 21:03:16 -06:00
parent 2c7518be33
commit ba3d8c35af
21 changed files with 95 additions and 95 deletions

38
Cargo.lock generated
View file

@ -162,7 +162,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "azalea"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"anyhow",
"async-trait",
@ -193,7 +193,7 @@ dependencies = [
[[package]]
name = "azalea-auth"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf",
"azalea-crypto",
@ -211,7 +211,7 @@ dependencies = [
[[package]]
name = "azalea-block"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-block-macros",
"azalea-buf",
@ -220,7 +220,7 @@ dependencies = [
[[package]]
name = "azalea-block-macros"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"proc-macro2",
"quote",
@ -229,7 +229,7 @@ dependencies = [
[[package]]
name = "azalea-brigadier"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf",
"azalea-chat",
@ -237,7 +237,7 @@ dependencies = [
[[package]]
name = "azalea-buf"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf-macros",
"byteorder",
@ -250,7 +250,7 @@ dependencies = [
[[package]]
name = "azalea-buf-macros"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"proc-macro2",
"quote",
@ -259,7 +259,7 @@ dependencies = [
[[package]]
name = "azalea-chat"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf",
"azalea-language",
@ -271,7 +271,7 @@ dependencies = [
[[package]]
name = "azalea-client"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"anyhow",
"async-trait",
@ -304,7 +304,7 @@ dependencies = [
[[package]]
name = "azalea-core"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf",
"azalea-chat",
@ -315,7 +315,7 @@ dependencies = [
[[package]]
name = "azalea-crypto"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"aes",
"azalea-buf",
@ -351,7 +351,7 @@ dependencies = [
[[package]]
name = "azalea-language"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"once_cell",
"serde",
@ -360,7 +360,7 @@ dependencies = [
[[package]]
name = "azalea-nbt"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"ahash 0.8.3",
"azalea-buf",
@ -375,7 +375,7 @@ dependencies = [
[[package]]
name = "azalea-physics"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-block",
"azalea-core",
@ -390,7 +390,7 @@ dependencies = [
[[package]]
name = "azalea-protocol"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"anyhow",
"async-compression",
@ -427,7 +427,7 @@ dependencies = [
[[package]]
name = "azalea-protocol-macros"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"proc-macro2",
"quote",
@ -436,7 +436,7 @@ dependencies = [
[[package]]
name = "azalea-registry"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-buf",
"azalea-registry-macros",
@ -445,7 +445,7 @@ dependencies = [
[[package]]
name = "azalea-registry-macros"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"proc-macro2",
"quote",
@ -454,7 +454,7 @@ dependencies = [
[[package]]
name = "azalea-world"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"azalea-block",
"azalea-buf",

View file

@ -4,13 +4,13 @@ edition = "2021"
license = "MIT"
name = "azalea-auth"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-auth"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf = {path = "../azalea-buf", version = "^0.5.0"}
azalea-crypto = {path = "../azalea-crypto", version = "^0.5.0"}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-crypto = {path = "../azalea-crypto", version = "^0.6.0" }
chrono = {version = "0.4.22", default-features = false}
log = "0.4.17"
num-bigint = "0.4.3"

8
azalea-block/Cargo.toml Executable file → Normal file
View file

@ -4,13 +4,13 @@ edition = "2021"
license = "MIT"
name = "azalea-block"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block"
version = "0.5.0"
version = "0.6.0"
[lib]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block-macros = { path = "./azalea-block-macros", version = "^0.5.0" }
azalea-buf = { path = "../azalea-buf", version = "^0.5.0" }
azalea-registry = { version = "0.5.0", path = "../azalea-registry" }
azalea-block-macros = { path = "./azalea-block-macros", version = "^0.6.0" }
azalea-buf = { path = "../azalea-buf", version = "^0.6.0" }
azalea-registry = { version = "0.6.0", path = "../azalea-registry" }

2
azalea-block/azalea-block-macros/Cargo.toml Executable file → Normal file
View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-block-macros"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block/azalea-block-macros"
version = "0.5.0"
version = "0.6.0"
[lib]
proc-macro = true

6
azalea-brigadier/Cargo.toml Executable file → Normal file
View file

@ -4,13 +4,13 @@ edition = "2021"
license = "MIT"
name = "azalea-brigadier"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-brigadier"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf = {path = "../azalea-buf", version = "^0.5.0", optional = true}
azalea-chat = {path = "../azalea-chat", version = "^0.5.0", optional = true}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0", optional = true}
azalea-chat = {path = "../azalea-chat", version = "^0.6.0", optional = true}
[features]
azalea-buf = ["dep:azalea-buf", "dep:azalea-chat"]

View file

@ -4,12 +4,12 @@ edition = "2021"
license = "MIT"
name = "azalea-buf"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf-macros = {path = "./azalea-buf-macros", version = "^0.5.0" }
azalea-buf-macros = {path = "./azalea-buf-macros", version = "^0.6.0" }
byteorder = "^1.4.3"
log = "0.4.17"
serde_json = {version = "^1.0", optional = true}

2
azalea-buf/azalea-buf-macros/Cargo.toml Executable file → Normal file
View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-buf-macros"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
version = "0.5.0"
version = "0.6.0"
[lib]
proc-macro = true

6
azalea-chat/Cargo.toml Executable file → Normal file
View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-chat"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-chat"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -14,8 +14,8 @@ default = ["azalea-buf"]
[dependencies]
azalea-buf = { path = "../azalea-buf", features = [
"serde_json",
], version = "^0.5.0", optional = true }
azalea-language = { path = "../azalea-language", version = "^0.5.0" }
], version = "^0.6.0", optional = true }
azalea-language = { path = "../azalea-language", version = "^0.6.0" }
log = "0.4.17"
once_cell = "1.16.0"
serde = { version = "^1.0.148", features = ["derive"] }

View file

@ -4,23 +4,23 @@ edition = "2021"
license = "MIT"
name = "azalea-client"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-client"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.59"
async-trait = "0.1.58"
azalea-auth = {path = "../azalea-auth", version = "0.5.0"}
azalea-block = {path = "../azalea-block", version = "0.5.0"}
azalea-chat = {path = "../azalea-chat", version = "0.5.0"}
azalea-core = {path = "../azalea-core", version = "0.5.0"}
azalea-crypto = {path = "../azalea-crypto", version = "0.5.0"}
azalea-auth = {path = "../azalea-auth", version = "0.6.0" }
azalea-block = {path = "../azalea-block", version = "0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "0.6.0" }
azalea-core = {path = "../azalea-core", version = "0.6.0" }
azalea-crypto = {path = "../azalea-crypto", version = "0.6.0" }
azalea-ecs = {path = "../azalea-ecs", version = "0.6.0"}
azalea-physics = {path = "../azalea-physics", version = "0.5.0"}
azalea-protocol = {path = "../azalea-protocol", version = "0.5.0"}
azalea-registry = {path = "../azalea-registry", version = "0.5.0"}
azalea-world = {path = "../azalea-world", version = "0.5.0"}
azalea-physics = {path = "../azalea-physics", version = "0.6.0" }
azalea-protocol = {path = "../azalea-protocol", version = "0.6.0" }
azalea-registry = {path = "../azalea-registry", version = "0.6.0" }
azalea-world = {path = "../azalea-world", version = "0.6.0" }
bevy_tasks = "0.9.1"
bevy_time = "0.9.1"
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}

8
azalea-core/Cargo.toml Executable file → Normal file
View file

@ -4,14 +4,14 @@ edition = "2021"
license = "MIT"
name = "azalea-core"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-core"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf = {path = "../azalea-buf", version = "^0.5.0"}
azalea-chat = {path = "../azalea-chat", version = "^0.5.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.5.0"}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.6.0" }
azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0" }
bevy_ecs = {version = "0.9.1", default-features = false, optional = true}
uuid = "^1.1.2"

4
azalea-crypto/Cargo.toml Executable file → Normal file
View file

@ -3,14 +3,14 @@ description = "Cryptography features used in Minecraft."
edition = "2021"
license = "MIT"
name = "azalea-crypto"
version = "0.5.0"
version = "0.6.0"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-crypto"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.1"
azalea-buf = {path = "../azalea-buf", version = "^0.5.0" }
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
cfb8 = "0.8.1"
num-bigint = "^0.4.3"
rand = {version = "^0.8.4", features = ["getrandom"]}

2
azalea-language/Cargo.toml Executable file → Normal file
View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-language"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-language"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

4
azalea-nbt/Cargo.toml Executable file → Normal file
View file

@ -3,14 +3,14 @@ description = "A fast NBT serializer and deserializer."
edition = "2021"
license = "MIT"
name = "azalea-nbt"
version = "0.5.0"
version = "0.6.0"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-nbt"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = { version = "^0.8.0", features = ["serde"]}
azalea-buf = {path = "../azalea-buf", version = "^0.5.0" }
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
byteorder = "^1.4.3"
flate2 = "^1.0.23"
log = "0.4.17"

View file

@ -4,16 +4,16 @@ edition = "2021"
license = "MIT"
name = "azalea-physics"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-physics"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = {path = "../azalea-block", version = "^0.5.0"}
azalea-core = {path = "../azalea-core", version = "^0.5.0"}
azalea-block = {path = "../azalea-block", version = "^0.6.0" }
azalea-core = {path = "../azalea-core", version = "^0.6.0" }
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
azalea-registry = {path = "../azalea-registry", version = "^0.5.0"}
azalea-world = {path = "../azalea-world", version = "^0.5.0"}
azalea-registry = {path = "../azalea-registry", version = "^0.6.0" }
azalea-world = {path = "../azalea-world", version = "^0.6.0" }
iyes_loopless = "0.9.1"
once_cell = "1.16.0"
parking_lot = "^0.12.1"

View file

@ -4,24 +4,24 @@ edition = "2021"
license = "MIT"
name = "azalea-protocol"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-protocol"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-compression = {version = "^0.3.8", features = ["tokio", "zlib"], optional = true}
async-recursion = "1.0.0"
azalea-auth = {path = "../azalea-auth", version = "^0.5.0" }
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.5.0" }
azalea-brigadier = {path = "../azalea-brigadier", version = "^0.5.0", features = ["azalea-buf"]}
azalea-buf = {path = "../azalea-buf", version = "^0.5.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.5.0" }
azalea-core = {path = "../azalea-core", optional = true, version = "^0.5.0" }
azalea-crypto = {path = "../azalea-crypto", version = "^0.5.0" }
azalea-nbt = {path = "../azalea-nbt", version = "^0.5.0" }
azalea-protocol-macros = {path = "./azalea-protocol-macros", version = "^0.5.0" }
azalea-registry = {path = "../azalea-registry", version = "^0.5.0" }
azalea-world = {path = "../azalea-world", version = "^0.5.0" }
azalea-auth = {path = "../azalea-auth", version = "^0.6.0" }
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.6.0" }
azalea-brigadier = {path = "../azalea-brigadier", version = "^0.6.0", features = ["azalea-buf"]}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.6.0" }
azalea-core = {path = "../azalea-core", optional = true, version = "^0.6.0" }
azalea-crypto = {path = "../azalea-crypto", version = "^0.6.0" }
azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0" }
azalea-protocol-macros = {path = "./azalea-protocol-macros", version = "^0.6.0" }
azalea-registry = {path = "../azalea-registry", version = "^0.6.0" }
azalea-world = {path = "../azalea-world", version = "^0.6.0" }
bevy_ecs = { version = "0.9.1", default-features = false }
byteorder = "^1.4.3"
bytes = "^1.1.0"
@ -46,4 +46,4 @@ packets = ["connecting", "dep:async-compression", "dep:azalea-core"]
anyhow = "^1.0.65"
tracing = "^0.1.36"
tracing-subscriber = "^0.3.15"
once_cell = "1.17.0"
once_cell = "1.17.0"

2
azalea-protocol/azalea-protocol-macros/Cargo.toml Executable file → Normal file
View file

@ -3,7 +3,7 @@ description = "Macros internally used in azalea-protocol."
edition = "2021"
license = "MIT"
name = "azalea-protocol-macros"
version = "0.5.0"
version = "0.6.0"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-protocol/azalea-protocol-macros"
[lib]

6
azalea-registry/Cargo.toml Executable file → Normal file
View file

@ -4,11 +4,11 @@ edition = "2021"
license = "MIT"
name = "azalea-registry"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-buf = {path = "../azalea-buf", version = "^0.5.0"}
azalea-registry-macros = {path = "./azalea-registry-macros", version = "^0.5.0"}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-registry-macros = {path = "./azalea-registry-macros", version = "^0.6.0" }
enum-as-inner = "0.5.1"

2
azalea-registry/azalea-registry-macros/Cargo.toml Executable file → Normal file
View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea-registry-macros"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry/azalea-registry-macros"
version = "0.5.0"
version = "0.6.0"
[lib]
proc-macro = true

View file

@ -4,18 +4,18 @@ edition = "2021"
license = "MIT"
name = "azalea-world"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-world"
version = "0.5.0"
version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.5.0"}
azalea-buf = {path = "../azalea-buf", version = "^0.5.0"}
azalea-chat = {path = "../azalea-chat", version = "^0.5.0"}
azalea-core = {path = "../azalea-core", version = "^0.5.0", features = ["bevy_ecs"]}
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.6.0" }
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.6.0" }
azalea-core = {path = "../azalea-core", version = "^0.6.0", features = ["bevy_ecs"]}
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.5.0"}
azalea-registry = {path = "../azalea-registry", version = "^0.5.0"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0" }
azalea-registry = {path = "../azalea-registry", version = "^0.6.0" }
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
enum-as-inner = "0.5.1"
iyes_loopless = "0.9.1"

View file

@ -4,7 +4,7 @@ edition = "2021"
license = "MIT"
name = "azalea"
repository = "https://github.com/mat-1/azalea/tree/main/azalea"
version = "0.5.0"
version = "0.6.0"
[package.metadata.release]
pre-release-replacements = [
@ -14,15 +14,15 @@ pre-release-replacements = [
[dependencies]
anyhow = "^1.0.65"
async-trait = "0.1.58"
azalea-block = {version = "0.5.0", path = "../azalea-block"}
azalea-chat = {version = "0.5.0", path = "../azalea-chat"}
azalea-client = {version = "0.5.0", path = "../azalea-client"}
azalea-core = {version = "0.5.0", path = "../azalea-core"}
azalea-block = {version = "0.6.0", path = "../azalea-block"}
azalea-chat = {version = "0.6.0", path = "../azalea-chat"}
azalea-client = {version = "0.6.0", path = "../azalea-client"}
azalea-core = {version = "0.6.0", path = "../azalea-core"}
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
azalea-physics = {version = "0.5.0", path = "../azalea-physics"}
azalea-protocol = {version = "0.5.0", path = "../azalea-protocol"}
azalea-registry = {version = "0.5.0", path = "../azalea-registry"}
azalea-world = {version = "0.5.0", path = "../azalea-world"}
azalea-physics = {version = "0.6.0", path = "../azalea-physics"}
azalea-protocol = {version = "0.6.0", path = "../azalea-protocol"}
azalea-registry = {version = "0.6.0", path = "../azalea-registry"}
azalea-world = {version = "0.6.0", path = "../azalea-world"}
bevy_tasks = "0.9.1"
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
futures = "0.3.25"

View file

@ -15,7 +15,7 @@ Then, add one of the following lines to your Cargo.toml:
Latest bleeding-edge version:
`azalea = { git="https://github.com/mat-1/azalea" }`\
Latest "stable" release:
`azalea = "0.5.0"`
`azalea = "0.6.0"`
## Optimization