diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cbd74..98001f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.7.0 - bevy 0.15 - 2024-12-16 + +### Changed + + - updated Bevy to 0.15 + - disabled bevy's default-features, enabling only features this crate needs + ## 0.6.0 - bevy 0.14 - 2024-07-07 ### Added diff --git a/Cargo.toml b/Cargo.toml index 5c80127..59022ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_physx" -version = "0.6.0" +version = "0.7.0" authors = ["Alex Kocharin "] description = "PhysX plugin for Bevy" documentation = "https://docs.rs/bevy_mod_physx" @@ -28,7 +28,8 @@ physx-sys = "0.11.5" serde = { version = "1", features = ["derive"], optional = true } [dev-dependencies.bevy] -version = "*" +# cargo is expected to pick up the same version as above +version = ">= 0.0.0" default-features = false features = [ "bevy_core_pipeline", "bevy_gilrs", "bevy_pbr", "bevy_window", "bevy_winit", "tonemapping_luts", "x11" diff --git a/README.md b/README.md index 94bbe51..de7f064 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,8 @@ fn setup_physics( |[]() |[]() |[]() |[]() | |---------------|--------------------------------------------------------------------------------------------------------|--------------|---------------| -| published | [0.6.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.14 | PhysX 5 | +| published | [0.7.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.15 | PhysX 5 | +| | [0.6.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.14 | PhysX 5 | | | [0.5.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.13 | PhysX 5 | | | [0.4.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.12 | PhysX 5 | | | [0.2.x - 0.3.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.11 | PhysX 5 |