diff --git a/Cargo.toml b/Cargo.toml index effc22f..6d8c3c3 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 "] @@ -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] @@ -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