From 93dfde666dd1169137403effd4da1d9c362c0db2 Mon Sep 17 00:00:00 2001 From: Joona Aalto Date: Fri, 9 May 2025 23:28:27 +0300 Subject: [PATCH 1/3] Update to full Bevy 0.16 release --- Cargo.toml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index effc22f..1805cc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,10 +39,10 @@ std = ["bevy_math/std"] [dependencies] # Math approx = { version = "0.5", optional = true } -bevy_math = { version = "0.16.0-rc.2", default-features = false } +bevy_math = { version = "0.16", default-features = false } # Serialization -bevy_reflect = { version = "0.16.0-rc.2", default-features = false, optional = true } +bevy_reflect = { version = "0.16", default-features = false, optional = true } serde = { version = "1.0", default-features = false, optional = true } [dev-dependencies] @@ -51,7 +51,7 @@ bevy_heavy = { path = ".", features = ["approx"] } # Math approx = { version = "0.5", default-features = false } -bevy_math = { version = "0.16.0-rc.2", default-features = false, features = [ +bevy_math = { version = "0.16", default-features = false, features = [ "std", "approx", "rand", diff --git a/README.md b/README.md index 3c97e13..e8ae82b 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ or `ComputeMassProperties3d` for them. | `bevy_math` | `bevy_heavy` | | ----------- | ------------ | -| 0.16 RC | main | +| 0.16 | 0.2 | | 0.15 | 0.1 | ## License From d0df9f1ce9d9a9d63a189b1da4157218251946cf Mon Sep 17 00:00:00 2001 From: Joona Aalto Date: Fri, 9 May 2025 23:31:19 +0300 Subject: [PATCH 2/3] Update version number --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1805cc0..f1271e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_heavy" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Joona Aalto "] From 681ccb1369c38f002d99a9c17be9c50060002034 Mon Sep 17 00:00:00 2001 From: Joona Aalto Date: Fri, 9 May 2025 23:32:34 +0300 Subject: [PATCH 3/3] Only 5 keywords allowed now :( --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f1271e8..6d8c3c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ description = "Mass property computation for Bevy's geometric primitives." documentation = "https://docs.rs/bevy_heavy" repository = "https://github.com/Jondolf/bevy_heavy" readme = "README.md" -keywords = ["gamedev", "physics", "simulation", "math", "mass", "bevy"] +keywords = ["gamedev", "physics", "simulation", "math", "bevy"] categories = ["game-development", "science", "mathematics", "simulation"] [features]