Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed Dec 16, 2024
1 parent 3c9e8eb commit 93936cf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_mod_physx"
version = "0.6.0"
version = "0.7.0"
authors = ["Alex Kocharin <[email protected]>"]
description = "PhysX plugin for Bevy"
documentation = "https://docs.rs/bevy_mod_physx"
Expand Down Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down

0 comments on commit 93936cf

Please sign in to comment.