diff options
| author | mat <git@matdoes.dev> | 2023-05-16 23:57:06 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-05-16 23:57:06 -0500 |
| commit | cb204304813f63b8ef6601dce84f8f911b0af154 (patch) | |
| tree | 57bcc63a2d6d5199ae8202f5f67ac684de1ab9d2 | |
| parent | a63beff5e395ebf104a62047cefe1c8f6d426f6f (diff) | |
| download | azalea-drasl-cb204304813f63b8ef6601dce84f8f911b0af154.tar.xz | |
chore: Release
| -rw-r--r-- | Cargo.lock | 14 | ||||
| -rw-r--r-- | azalea-block/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-brigadier/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-chat/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-client/Cargo.toml | 8 | ||||
| -rw-r--r-- | azalea-core/Cargo.toml | 10 | ||||
| -rw-r--r-- | azalea-inventory/Cargo.toml | 8 | ||||
| -rw-r--r-- | azalea-inventory/azalea-inventory-macros/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-nbt/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-physics/Cargo.toml | 6 | ||||
| -rw-r--r-- | azalea-protocol/Cargo.toml | 10 | ||||
| -rw-r--r-- | azalea-registry/Cargo.toml | 4 | ||||
| -rw-r--r-- | azalea-registry/azalea-registry-macros/Cargo.toml | 2 | ||||
| -rw-r--r-- | azalea-world/Cargo.toml | 10 | ||||
| -rw-r--r-- | azalea/Cargo.toml | 8 |
15 files changed, 45 insertions, 45 deletions
@@ -260,7 +260,7 @@ dependencies = [ [[package]] name = "azalea-chat" -version = "0.6.0" +version = "0.7.0" dependencies = [ "azalea-buf", "azalea-language", @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "azalea-core" -version = "0.6.0" +version = "0.7.0" dependencies = [ "azalea-buf", "azalea-chat", @@ -335,7 +335,7 @@ dependencies = [ [[package]] name = "azalea-inventory" -version = "0.6.0" +version = "0.7.0" dependencies = [ "azalea-buf", "azalea-inventory-macros", @@ -345,7 +345,7 @@ dependencies = [ [[package]] name = "azalea-inventory-macros" -version = "0.6.0" +version = "0.7.0" dependencies = [ "proc-macro2", "quote", @@ -363,7 +363,7 @@ dependencies = [ [[package]] name = "azalea-nbt" -version = "0.6.0" +version = "0.7.0" dependencies = [ "azalea-buf", "byteorder", @@ -445,7 +445,7 @@ dependencies = [ [[package]] name = "azalea-registry" -version = "0.6.0" +version = "0.7.0" dependencies = [ "azalea-buf", "azalea-registry-macros", @@ -454,7 +454,7 @@ dependencies = [ [[package]] name = "azalea-registry-macros" -version = "0.6.0" +version = "0.7.0" dependencies = [ "proc-macro2", "quote", diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml index bf546152..fe648991 100644 --- a/azalea-block/Cargo.toml +++ b/azalea-block/Cargo.toml @@ -13,4 +13,4 @@ version = "0.6.0" [dependencies] azalea-block-macros = { path = "./azalea-block-macros", version = "^0.6.0" } azalea-buf = { path = "../azalea-buf", version = "^0.7.0" } -azalea-registry = { version = "0.6.0", path = "../azalea-registry" } +azalea-registry = { version = "0.7.0", path = "../azalea-registry" } diff --git a/azalea-brigadier/Cargo.toml b/azalea-brigadier/Cargo.toml index 4f2e1b0d..2c61ea3c 100644 --- a/azalea-brigadier/Cargo.toml +++ b/azalea-brigadier/Cargo.toml @@ -10,7 +10,7 @@ version = "0.6.0" [dependencies] azalea-buf = { path = "../azalea-buf", version = "^0.7.0", optional = true } -azalea-chat = { path = "../azalea-chat", version = "^0.6.0", optional = true } +azalea-chat = { path = "../azalea-chat", version = "^0.7.0", optional = true } parking_lot = "0.12.1" [features] diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml index f26bd402..3794b256 100644 --- a/azalea-chat/Cargo.toml +++ b/azalea-chat/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-chat" repository = "https://github.com/mat-1/azalea/tree/main/azalea-chat" -version = "0.6.0" +version = "0.7.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml index fce8a31b..a4fe20eb 100644 --- a/azalea-client/Cargo.toml +++ b/azalea-client/Cargo.toml @@ -13,19 +13,19 @@ anyhow = "1.0.59" async-trait = "0.1.58" 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-chat = { path = "../azalea-chat", version = "0.7.0" } +azalea-core = { path = "../azalea-core", version = "0.7.0" } azalea-crypto = { path = "../azalea-crypto", version = "0.6.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-registry = { path = "../azalea-registry", version = "0.7.0" } azalea-world = { path = "../azalea-world", version = "0.6.0" } bevy_app = "0.10.0" bevy_ecs = "0.10.0" bevy_log = "0.10.0" bevy_tasks = "0.10.0" bevy_time = "0.10.0" -azalea-inventory = { path = "../azalea-inventory", version = "0.6.0" } +azalea-inventory = { path = "../azalea-inventory", version = "0.7.0" } derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } futures = "0.3.25" log = "0.4.17" diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml index 6f953359..1982f878 100644 --- a/azalea-core/Cargo.toml +++ b/azalea-core/Cargo.toml @@ -4,16 +4,16 @@ edition = "2021" license = "MIT" name = "azalea-core" repository = "https://github.com/mat-1/azalea/tree/main/azalea-core" -version = "0.6.0" +version = "0.7.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.7.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.6.0" } -azalea-inventory = { version = "0.6.0", path = "../azalea-inventory" } -azalea-nbt = { path = "../azalea-nbt", version = "^0.6.0" } -azalea-registry = { path = "../azalea-registry", version = "^0.6.0" } +azalea-chat = { path = "../azalea-chat", version = "^0.7.0" } +azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } +azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0" } +azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } bevy_ecs = { version = "0.10.0", default-features = false, optional = true } num-traits = "0.2.15" serde = { version = "^1.0", optional = true } diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml index 5fe756f7..4e689d03 100644 --- a/azalea-inventory/Cargo.toml +++ b/azalea-inventory/Cargo.toml @@ -4,12 +4,12 @@ edition = "2021" license = "MIT" name = "azalea-inventory" repository = "https://github.com/mat-1/azalea/tree/main/azalea-inventory-macros" -version = "0.6.0" +version = "0.7.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] azalea-buf = { version = "0.7.0", path = "../azalea-buf" } -azalea-inventory-macros = { version = "0.6.0", path = "./azalea-inventory-macros" } -azalea-nbt = { version = "0.6.0", path = "../azalea-nbt" } -azalea-registry = { version = "0.6.0", path = "../azalea-registry" } +azalea-inventory-macros = { version = "0.7.0", path = "./azalea-inventory-macros" } +azalea-nbt = { version = "0.7.0", path = "../azalea-nbt" } +azalea-registry = { version = "0.7.0", path = "../azalea-registry" } diff --git a/azalea-inventory/azalea-inventory-macros/Cargo.toml b/azalea-inventory/azalea-inventory-macros/Cargo.toml index 0db33255..ee41c6b6 100644 --- a/azalea-inventory/azalea-inventory-macros/Cargo.toml +++ b/azalea-inventory/azalea-inventory-macros/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT" name = "azalea-inventory-macros" repository = "https://github.com/mat-1/azalea/tree/main/azalea-inventory/azalea-inventory-macros" -version = "0.6.0" +version = "0.7.0" [lib] proc-macro = true diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml index 278df81f..e2c253f5 100644 --- a/azalea-nbt/Cargo.toml +++ b/azalea-nbt/Cargo.toml @@ -3,7 +3,7 @@ description = "A fast NBT serializer and deserializer." edition = "2021" license = "MIT" name = "azalea-nbt" -version = "0.6.0" +version = "0.7.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 diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml index d42e5d1d..67f14c29 100644 --- a/azalea-physics/Cargo.toml +++ b/azalea-physics/Cargo.toml @@ -10,9 +10,9 @@ version = "0.6.0" [dependencies] azalea-block = { path = "../azalea-block", version = "^0.6.0" } -azalea-core = { path = "../azalea-core", version = "^0.6.0" } -azalea-inventory = { version = "0.6.0", path = "../azalea-inventory" } -azalea-registry = { path = "../azalea-registry", version = "^0.6.0" } +azalea-core = { path = "../azalea-core", version = "^0.7.0" } +azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } +azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } azalea-world = { path = "../azalea-world", version = "^0.6.0" } bevy_app = "0.10.0" bevy_ecs = "0.10.0" diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml index 1f16c240..5b622d39 100644 --- a/azalea-protocol/Cargo.toml +++ b/azalea-protocol/Cargo.toml @@ -20,17 +20,17 @@ azalea-brigadier = { path = "../azalea-brigadier", version = "^0.6.0", features "azalea-buf", ] } azalea-buf = { path = "../azalea-buf", version = "^0.7.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.6.0" } -azalea-core = { path = "../azalea-core", optional = true, version = "^0.6.0", features = [ +azalea-chat = { path = "../azalea-chat", version = "^0.7.0" } +azalea-core = { path = "../azalea-core", optional = true, version = "^0.7.0", features = [ "serde", ] } azalea-crypto = { path = "../azalea-crypto", version = "^0.6.0" } -azalea-inventory = { version = "0.6.0", path = "../azalea-inventory" } -azalea-nbt = { path = "../azalea-nbt", version = "^0.6.0", features = [ +azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } +azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0", features = [ "serde", ] } azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "^0.6.0" } -azalea-registry = { path = "../azalea-registry", version = "^0.6.0" } +azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } azalea-world = { path = "../azalea-world", version = "^0.6.0" } bevy_ecs = { version = "0.10.0", default-features = false } byteorder = "^1.4.3" diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml index 473af69c..af36946f 100644 --- a/azalea-registry/Cargo.toml +++ b/azalea-registry/Cargo.toml @@ -4,13 +4,13 @@ edition = "2021" license = "MIT" name = "azalea-registry" repository = "https://github.com/mat-1/azalea/tree/main/azalea-registry" -version = "0.6.0" +version = "0.7.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.7.0" } -azalea-registry-macros = { path = "./azalea-registry-macros", version = "^0.6.0" } +azalea-registry-macros = { path = "./azalea-registry-macros", version = "^0.7.0" } serde = { version = "^1.0", optional = true } [features] diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml index 6b58e43b..1bb659ac 100644 --- a/azalea-registry/azalea-registry-macros/Cargo.toml +++ b/azalea-registry/azalea-registry-macros/Cargo.toml @@ -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.6.0" +version = "0.7.0" [lib] proc-macro = true diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml index 7242bdfc..42f056ca 100644 --- a/azalea-world/Cargo.toml +++ b/azalea-world/Cargo.toml @@ -11,13 +11,13 @@ version = "0.6.0" [dependencies] azalea-block = { path = "../azalea-block", default-features = false, version = "^0.6.0" } azalea-buf = { path = "../azalea-buf", version = "^0.7.0" } -azalea-chat = { path = "../azalea-chat", version = "^0.6.0" } -azalea-core = { path = "../azalea-core", version = "^0.6.0", features = [ +azalea-chat = { path = "../azalea-chat", version = "^0.7.0" } +azalea-core = { path = "../azalea-core", version = "^0.7.0", features = [ "bevy_ecs", ] } -azalea-inventory = { version = "0.6.0", path = "../azalea-inventory" } -azalea-nbt = { path = "../azalea-nbt", version = "^0.6.0" } -azalea-registry = { path = "../azalea-registry", version = "^0.6.0" } +azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } +azalea-nbt = { path = "../azalea-nbt", version = "^0.7.0" } +azalea-registry = { path = "../azalea-registry", version = "^0.7.0" } bevy_app = "0.10.0" bevy_ecs = "0.10.0" derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index c79b44f9..1fd25ccd 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -15,13 +15,13 @@ pre-release-replacements = [ anyhow = "^1.0.65" async-trait = "0.1.58" azalea-block = { version = "0.6.0", path = "../azalea-block" } -azalea-chat = { version = "0.6.0", path = "../azalea-chat" } +azalea-chat = { version = "0.7.0", path = "../azalea-chat" } azalea-client = { version = "0.6.0", path = "../azalea-client" } -azalea-core = { version = "0.6.0", path = "../azalea-core" } -azalea-inventory = { version = "0.6.0", path = "../azalea-inventory" } +azalea-core = { version = "0.7.0", path = "../azalea-core" } +azalea-inventory = { version = "0.7.0", path = "../azalea-inventory" } 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-registry = { version = "0.7.0", path = "../azalea-registry" } azalea-world = { version = "0.6.0", path = "../azalea-world" } azalea-auth = { version = "0.6.0", path = "../azalea-auth" } azalea-brigadier = { version = "0.6.0", path = "../azalea-brigadier" } |
