aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-02-09 21:02:34 -0600
committermat <github@matdoes.dev>2023-02-09 21:02:34 -0600
commit2c7518be33577b767c62c82143f8cc0d9c4275ca (patch)
tree47b93f868744347e5d33b5628d6248e12fb5c387
parent7341a06dbf8adb954fdf6b56539aa576aec0b8f8 (diff)
downloadazalea-drasl-2c7518be33577b767c62c82143f8cc0d9c4275ca.tar.xz
release ecs crates
-rw-r--r--Cargo.lock4
-rw-r--r--azalea-client/Cargo.toml2
-rw-r--r--azalea-ecs/Cargo.toml6
-rwxr-xr-xazalea-ecs/azalea-ecs-macros/Cargo.toml2
-rw-r--r--azalea-physics/Cargo.toml10
-rw-r--r--azalea-world/Cargo.toml2
-rw-r--r--azalea/Cargo.toml4
7 files changed, 16 insertions, 14 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 94203b2f..73f21a5e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -330,7 +330,7 @@ dependencies = [
[[package]]
name = "azalea-ecs"
-version = "0.5.0"
+version = "0.6.0"
dependencies = [
"azalea-ecs-macros",
"bevy_app",
@@ -341,7 +341,7 @@ dependencies = [
[[package]]
name = "azalea-ecs-macros"
-version = "0.5.0"
+version = "0.6.0"
dependencies = [
"proc-macro2",
"quote",
diff --git a/azalea-client/Cargo.toml b/azalea-client/Cargo.toml
index 8a807212..6bfc4947 100644
--- a/azalea-client/Cargo.toml
+++ b/azalea-client/Cargo.toml
@@ -16,7 +16,7 @@ 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-ecs = {path = "../azalea-ecs", version = "0.5.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"}
diff --git a/azalea-ecs/Cargo.toml b/azalea-ecs/Cargo.toml
index 30c9676b..113ff392 100644
--- a/azalea-ecs/Cargo.toml
+++ b/azalea-ecs/Cargo.toml
@@ -1,12 +1,14 @@
[package]
+description = "ECS stuff used in Azalea"
edition = "2021"
+license = "MIT"
name = "azalea-ecs"
-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-ecs-macros = {path = "./azalea-ecs-macros", version = "^0.5.0"}
+azalea-ecs-macros = {path = "./azalea-ecs-macros", version = "^0.6.0"}
bevy_app = "0.9.1"
bevy_ecs = {version = "0.9.1", default-features = false}
iyes_loopless = "0.9.1"
diff --git a/azalea-ecs/azalea-ecs-macros/Cargo.toml b/azalea-ecs/azalea-ecs-macros/Cargo.toml
index 2301f2f1..cd7b2c8d 100755
--- a/azalea-ecs/azalea-ecs-macros/Cargo.toml
+++ b/azalea-ecs/azalea-ecs-macros/Cargo.toml
@@ -3,7 +3,7 @@ description = "Azalea ECS Macros"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "azalea-ecs-macros"
-version = "0.5.0"
+version = "0.6.0"
[lib]
proc-macro = true
diff --git a/azalea-physics/Cargo.toml b/azalea-physics/Cargo.toml
index e0fc7f96..44aa2fb6 100644
--- a/azalea-physics/Cargo.toml
+++ b/azalea-physics/Cargo.toml
@@ -9,14 +9,14 @@ version = "0.5.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-world = { path = "../azalea-world", version = "^0.5.0" }
-azalea-registry = { path = "../azalea-registry", version = "^0.5.0" }
+azalea-block = {path = "../azalea-block", version = "^0.5.0"}
+azalea-core = {path = "../azalea-core", version = "^0.5.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"}
iyes_loopless = "0.9.1"
once_cell = "1.16.0"
parking_lot = "^0.12.1"
-azalea-ecs = { version = "0.5.0", path = "../azalea-ecs" }
[dev-dependencies]
uuid = "^1.1.2"
diff --git a/azalea-world/Cargo.toml b/azalea-world/Cargo.toml
index 4ddbd54f..6ab6b4ed 100644
--- a/azalea-world/Cargo.toml
+++ b/azalea-world/Cargo.toml
@@ -13,7 +13,7 @@ azalea-block = {path = "../azalea-block", default-features = false, version = "^
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-ecs = { version = "0.5.0", path = "../azalea-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"}
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml
index 83067d0b..a37cb84c 100644
--- a/azalea/Cargo.toml
+++ b/azalea/Cargo.toml
@@ -8,7 +8,7 @@ version = "0.5.0"
[package.metadata.release]
pre-release-replacements = [
- {file = "src/lib.rs", search = "//! `azalea = \"[a-z0-9\\.-]+\"`", replace = "//! `azalea = \"{{version}}\"`"},
+ {file = "README.md", search = "`azalea = \"[a-z0-9\\.-]+\"`", replace = "`azalea = \"{{version}}\"`"},
]
[dependencies]
@@ -18,7 +18,7 @@ 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-ecs = { version = "0.5.0", path = "../azalea-ecs" }
+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"}