From 936f655c67f03d6eae6c2c9fc2ad0647b54d74b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 12 Sep 2021 10:53:01 +0200 Subject: [PATCH] Release v0.11.1 --- CHANGELOG.md | 7 +++++++ build/rapier2d-f64/Cargo.toml | 2 +- build/rapier2d/Cargo.toml | 2 +- build/rapier3d-f64/Cargo.toml | 2 +- build/rapier3d/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd52308..7539bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.11.1 +### Fixed +- Fix a bug causing large moving colliders to miss some collisions after some time. +- Fix invalid forces generated by contacts with position-based kinematic bodies. +- Fix a bug where two colliders without parent would not have their collision computed even if the + appropriate flags were set. + ## v0.11.0 Check out the user-guide for the JS/Typescript bindings for rapier. It has been fully rewritten and is now exhaustive! Check it out on [rapier.rs](https://www.rapier.rs/docs/user_guides/javascript/getting_started_js) diff --git a/build/rapier2d-f64/Cargo.toml b/build/rapier2d-f64/Cargo.toml index bc39ebb..5d85639 100644 --- a/build/rapier2d-f64/Cargo.toml +++ b/build/rapier2d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rapier2d-f64" -version = "0.11.0" +version = "0.11.1" authors = [ "Sébastien Crozet " ] description = "2-dimensional physics engine in Rust." documentation = "http://docs.rs/rapier2d" diff --git a/build/rapier2d/Cargo.toml b/build/rapier2d/Cargo.toml index 61b7295..9bc5f3b 100644 --- a/build/rapier2d/Cargo.toml +++ b/build/rapier2d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rapier2d" -version = "0.11.0" +version = "0.11.1" authors = [ "Sébastien Crozet " ] description = "2-dimensional physics engine in Rust." documentation = "http://docs.rs/rapier2d" diff --git a/build/rapier3d-f64/Cargo.toml b/build/rapier3d-f64/Cargo.toml index dc0c5a7..a6cdd00 100644 --- a/build/rapier3d-f64/Cargo.toml +++ b/build/rapier3d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rapier3d-f64" -version = "0.11.0" +version = "0.11.1" authors = [ "Sébastien Crozet " ] description = "3-dimensional physics engine in Rust." documentation = "http://docs.rs/rapier3d" diff --git a/build/rapier3d/Cargo.toml b/build/rapier3d/Cargo.toml index 567a2f2..2830c07 100644 --- a/build/rapier3d/Cargo.toml +++ b/build/rapier3d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rapier3d" -version = "0.11.0" +version = "0.11.1" authors = [ "Sébastien Crozet " ] description = "3-dimensional physics engine in Rust." documentation = "http://docs.rs/rapier3d"