aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-05-16 23:49:08 -0500
committermat <git@matdoes.dev>2023-05-16 23:49:08 -0500
commit3f8177a3022145ada55e8bc15c6f409de59d0bd4 (patch)
tree3ad8cfb92a733d4e41ba4ef9b9fcb269edeff6c4
parentc26bb0733f42d660d406d1714a07b51dda7c8b3e (diff)
downloadazalea-drasl-3f8177a3022145ada55e8bc15c6f409de59d0bd4.tar.xz
chore: Release
-rw-r--r--Cargo.lock4
-rw-r--r--azalea-auth/Cargo.toml2
-rw-r--r--azalea-block/Cargo.toml2
-rw-r--r--azalea-brigadier/Cargo.toml2
-rw-r--r--azalea-buf/Cargo.toml4
-rw-r--r--azalea-buf/azalea-buf-macros/Cargo.toml2
-rw-r--r--azalea-chat/Cargo.toml2
-rw-r--r--[-rwxr-xr-x]azalea-core/Cargo.toml2
-rw-r--r--azalea-crypto/Cargo.toml2
-rw-r--r--azalea-inventory/Cargo.toml2
-rw-r--r--azalea-nbt/Cargo.toml2
-rw-r--r--azalea-protocol/Cargo.toml2
-rw-r--r--azalea-registry/Cargo.toml2
-rw-r--r--azalea-world/Cargo.toml2
14 files changed, 16 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a947496d..8b76cd6f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -239,7 +239,7 @@ dependencies = [
[[package]]
name = "azalea-buf"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"azalea-buf-macros",
"byteorder",
@@ -251,7 +251,7 @@ dependencies = [
[[package]]
name = "azalea-buf-macros"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"proc-macro2",
"quote",
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index c635d01b..401e20e0 100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -9,7 +9,7 @@ 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.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
azalea-crypto = { path = "../azalea-crypto", version = "^0.6.0" }
chrono = { version = "0.4.22", default-features = false }
log = "0.4.17"
diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml
index 770bf336..bf546152 100644
--- a/azalea-block/Cargo.toml
+++ b/azalea-block/Cargo.toml
@@ -12,5 +12,5 @@ version = "0.6.0"
[dependencies]
azalea-block-macros = { path = "./azalea-block-macros", version = "^0.6.0" }
-azalea-buf = { path = "../azalea-buf", version = "^0.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
azalea-registry = { version = "0.6.0", path = "../azalea-registry" }
diff --git a/azalea-brigadier/Cargo.toml b/azalea-brigadier/Cargo.toml
index 7fddad7d..4f2e1b0d 100644
--- a/azalea-brigadier/Cargo.toml
+++ b/azalea-brigadier/Cargo.toml
@@ -9,7 +9,7 @@ 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.6.0", optional = true }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0", optional = true }
azalea-chat = { path = "../azalea-chat", version = "^0.6.0", optional = true }
parking_lot = "0.12.1"
diff --git a/azalea-buf/Cargo.toml b/azalea-buf/Cargo.toml
index 5f628b8a..cbd00bef 100644
--- a/azalea-buf/Cargo.toml
+++ b/azalea-buf/Cargo.toml
@@ -4,12 +4,12 @@ edition = "2021"
license = "MIT"
name = "azalea-buf"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-buf"
-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-macros = { path = "./azalea-buf-macros", version = "^0.6.0" }
+azalea-buf-macros = { path = "./azalea-buf-macros", version = "^0.7.0" }
byteorder = "^1.4.3"
log = "0.4.17"
serde_json = { version = "^1.0", optional = true }
diff --git a/azalea-buf/azalea-buf-macros/Cargo.toml b/azalea-buf/azalea-buf-macros/Cargo.toml
index b46204db..2aa98fd7 100644
--- a/azalea-buf/azalea-buf-macros/Cargo.toml
+++ b/azalea-buf/azalea-buf-macros/Cargo.toml
@@ -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.6.0"
+version = "0.7.0"
[lib]
proc-macro = true
diff --git a/azalea-chat/Cargo.toml b/azalea-chat/Cargo.toml
index c3ffb464..f26bd402 100644
--- a/azalea-chat/Cargo.toml
+++ b/azalea-chat/Cargo.toml
@@ -14,7 +14,7 @@ default = ["azalea-buf"]
[dependencies]
azalea-buf = { path = "../azalea-buf", features = [
"serde_json",
-], version = "^0.6.0", optional = true }
+], version = "^0.7.0", optional = true }
azalea-language = { path = "../azalea-language", version = "^0.6.0" }
log = "0.4.17"
once_cell = "1.16.0"
diff --git a/azalea-core/Cargo.toml b/azalea-core/Cargo.toml
index 76f4b456..7f642acd 100755..100644
--- a/azalea-core/Cargo.toml
+++ b/azalea-core/Cargo.toml
@@ -9,7 +9,7 @@ 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.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
azalea-chat = { path = "../azalea-chat", version = "^0.6.0" }
azalea-inventory = { version = "0.1.0", path = "../azalea-inventory" }
azalea-nbt = { path = "../azalea-nbt", version = "^0.6.0" }
diff --git a/azalea-crypto/Cargo.toml b/azalea-crypto/Cargo.toml
index 1e4868a8..29223ea2 100644
--- a/azalea-crypto/Cargo.toml
+++ b/azalea-crypto/Cargo.toml
@@ -10,7 +10,7 @@ repository = "https://github.com/mat-1/azalea/tree/main/azalea-crypto"
[dependencies]
aes = "0.8.1"
-azalea-buf = { path = "../azalea-buf", version = "^0.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
cfb8 = "0.8.1"
num-bigint = "^0.4.3"
rand = { version = "^0.8.4", features = ["getrandom"] }
diff --git a/azalea-inventory/Cargo.toml b/azalea-inventory/Cargo.toml
index 4b00901f..80dcd95b 100644
--- a/azalea-inventory/Cargo.toml
+++ b/azalea-inventory/Cargo.toml
@@ -6,7 +6,7 @@ version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-buf = { version = "0.6.0", path = "../azalea-buf" }
+azalea-buf = { version = "0.7.0", path = "../azalea-buf" }
azalea-inventory-macros = { version = "0.1.0", path = "./azalea-inventory-macros" }
azalea-nbt = { version = "0.6.0", path = "../azalea-nbt" }
azalea-registry = { version = "0.6.0", path = "../azalea-registry" }
diff --git a/azalea-nbt/Cargo.toml b/azalea-nbt/Cargo.toml
index 6958e992..278df81f 100644
--- a/azalea-nbt/Cargo.toml
+++ b/azalea-nbt/Cargo.toml
@@ -9,7 +9,7 @@ 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]
-azalea-buf = { path = "../azalea-buf", version = "^0.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
byteorder = "^1.4.3"
compact_str = { version = "0.7.0", features = ["serde"] }
enum-as-inner = "0.5.1"
diff --git a/azalea-protocol/Cargo.toml b/azalea-protocol/Cargo.toml
index f555af4e..8754ff05 100644
--- a/azalea-protocol/Cargo.toml
+++ b/azalea-protocol/Cargo.toml
@@ -19,7 +19,7 @@ azalea-block = { path = "../azalea-block", default-features = false, version = "
azalea-brigadier = { path = "../azalea-brigadier", version = "^0.6.0", features = [
"azalea-buf",
] }
-azalea-buf = { path = "../azalea-buf", 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", optional = true, version = "^0.6.0", features = [
"serde",
diff --git a/azalea-registry/Cargo.toml b/azalea-registry/Cargo.toml
index 6fc93849..473af69c 100644
--- a/azalea-registry/Cargo.toml
+++ b/azalea-registry/Cargo.toml
@@ -9,7 +9,7 @@ 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.6.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.7.0" }
azalea-registry-macros = { path = "./azalea-registry-macros", version = "^0.6.0" }
serde = { version = "^1.0", optional = true }
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index 81984900..8c304cbe 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -10,7 +10,7 @@ version = "0.6.0"
[dependencies]
azalea-block = { path = "../azalea-block", default-features = false, version = "^0.6.0" }
-azalea-buf = { path = "../azalea-buf", 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 = [
"bevy_ecs",