From 3b2f25692e54411c89a3488deea1c7d5c4916d27 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Fri, 3 Mar 2023 15:12:58 +0100 Subject: [PATCH] Release physx-sys v0.11.0 --- physx-sys/CHANGELOG.md | 4 +++- physx-sys/Cargo.toml | 2 +- physx/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/physx-sys/CHANGELOG.md b/physx-sys/CHANGELOG.md index 0c445f2d..b324a768 100644 --- a/physx-sys/CHANGELOG.md +++ b/physx-sys/CHANGELOG.md @@ -4,6 +4,7 @@ ## [Unreleased] - ReleaseDate +## [0.11.0] - 2023-03-03 ### Changed - [PR#191](https://github.com/EmbarkStudios/physx-rs/pull/191) resolved [#187](https://github.com/EmbarkStudios/physx-rs/issues/187) by replacing the deprecated `PxCooking` class with the non-deprecated free functions that implement the same functionality. - phys_PxCreateCooking -> **removed** @@ -179,7 +180,8 @@ - Ability to not run the default filter shader before the callback. -[Unreleased]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.10.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.11.0...HEAD +[0.11.0]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.10.0...physx-sys-v0.11.0 [0.10.0]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.8.2...physx-sys-v0.10.0 [0.8.2]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.8.1...physx-sys-v0.8.2 [0.8.1]: https://github.com/EmbarkStudios/physx-rs/compare/physx-sys-v0.8.0...physx-sys-v0.8.1 diff --git a/physx-sys/Cargo.toml b/physx-sys/Cargo.toml index 9eb0eb30..642aa751 100644 --- a/physx-sys/Cargo.toml +++ b/physx-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "physx-sys" description = "Unsafe bindings for NVIDIA PhysX C++ SDK" -version = "0.10.0" +version = "0.11.0" authors = [ "Embark ", "Tomasz Stachowiak ", diff --git a/physx/Cargo.toml b/physx/Cargo.toml index c82dfe04..5d2f649a 100644 --- a/physx/Cargo.toml +++ b/physx/Cargo.toml @@ -23,7 +23,7 @@ structgen = ["physx-sys/structgen"] debug-structs = ["physx-sys/debug-structs"] [dependencies] -physx-sys = { version = "0.10.0", path = "../physx-sys" } +physx-sys = { version = "0.11.0", path = "../physx-sys" } bitflags = "1.3" log = "0.4"