From dea729720cf25bfa8c26b88e2c1b416b6beb8b96 Mon Sep 17 00:00:00 2001 From: Alex Kocharin Date: Sat, 2 Mar 2024 22:01:30 +0400 Subject: [PATCH] 0.4.1 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 30 +++++++++++++++--------------- 3 files changed, 22 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a5423..2444940 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.1 - bevy 0.12 - 2024-03-02 + +### Fixed + + - fixed null pointer handling in debug visualization (it now crashes as debug assertion in newer Rust versions) + ## 0.4.0 - bevy 0.12 - 2023-11-17 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 20ece4b..f0c434b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_mod_physx" -version = "0.4.0" +version = "0.4.1" authors = ["Alex Kocharin "] description = "PhysX plugin for Bevy" documentation = "https://docs.rs/bevy_mod_physx" diff --git a/README.md b/README.md index 1e47752..c32e759 100644 --- a/README.md +++ b/README.md @@ -77,20 +77,20 @@ fn setup_physics( ### Compatibility / Prior art -|[]() |[]() |[]() |[]() -|--|--|--|-- -| published | [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 -| | | | -| git tags | [git:master](https://github.com/rlidwka/bevy_mod_physx) | Bevy 0.12 | PhysX 5 -| | [git:a2741a6](https://github.com/rlidwka/bevy_mod_physx/tree/a2741a632b03e0a2c5763768a1042ca8d42774a1) | Bevy 0.11 | PhysX 5 -| | [git:a21b570](https://github.com/rlidwka/bevy_mod_physx/tree/a21b570b20a1e7ac22b5c86c54fcc1597760f2ec) | Bevy 0.11 | PhysX 4 -| | [git:43ae89e](https://github.com/rlidwka/bevy_mod_physx/tree/43ae89e013daf00ef841611149420fb4d04c2a4f) | Bevy 0.10 | PhysX 5 -| | [git:8f66a99](https://github.com/rlidwka/bevy_mod_physx/tree/8f66a9965eb461794856898ca44a1faf13c295ab) | Bevy 0.10 | PhysX 4 -| | | | -| other crates | [bevy_mod_physx](https://github.com/MasterOfMarkets/bevy_mod_physx) v0.1.0 | Bevy 0.10 | deprecated -| | [bevy_prototype_physx](https://github.com/superdump/bevy_prototype_physx) | Bevy 0.2-0.5 | unknown -| | [bevy_physx](https://crates.io/crates/bevy_physx) | | never existed -| | | | +|[]() |[]() |[]() |[]() | +|---------------|--------------------------------------------------------------------------------------------------------|--------------|---------------| +| published | [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 | +| | | | | +| git tags | [git:master](https://github.com/rlidwka/bevy_mod_physx) | Bevy 0.12 | PhysX 5 | +| | [git:a2741a6](https://github.com/rlidwka/bevy_mod_physx/tree/a2741a632b03e0a2c5763768a1042ca8d42774a1) | Bevy 0.11 | PhysX 5 | +| | [git:a21b570](https://github.com/rlidwka/bevy_mod_physx/tree/a21b570b20a1e7ac22b5c86c54fcc1597760f2ec) | Bevy 0.11 | PhysX 4 | +| | [git:43ae89e](https://github.com/rlidwka/bevy_mod_physx/tree/43ae89e013daf00ef841611149420fb4d04c2a4f) | Bevy 0.10 | PhysX 5 | +| | [git:8f66a99](https://github.com/rlidwka/bevy_mod_physx/tree/8f66a9965eb461794856898ca44a1faf13c295ab) | Bevy 0.10 | PhysX 4 | +| | | | | +| other crates | [bevy_mod_physx](https://github.com/MasterOfMarkets/bevy_mod_physx) v0.1.0 | Bevy 0.10 | deprecated | +| | [bevy_prototype_physx](https://github.com/superdump/bevy_prototype_physx) | Bevy 0.2-0.5 | unknown | +| | [bevy_physx](https://crates.io/crates/bevy_physx) | | never existed | +| | | | | *Note: you can find PhysX 4 version of this crate. It exists because PhysX 5 bindings don't have Vehicle API. It is not officially supported nor published to crates.io, and may get removed in the future.*