Skip to content

Commit 1381624

Browse files
committed
Release v0.17.2
1 parent c85a833 commit 1381624

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
## v0.17.1 (22 Jan. 2022)
1+
## v0.17.2 (26 Feb. 2023)
2+
### Fix
3+
- Fix issue with convex polyhedron jitter due to missing contacts.
4+
- Fix character controller getting stuck against vertical walls.
5+
- Fix character controller’s snapping to ground not triggering sometimes.
6+
- Fix character controller’s horizontal offset being mostly ignored and some instances of vertical offset being ignored.
7+
8+
## v0.17.1 (22 Jan. 2023)
29
### Fix
310
- Fix bug resulting in dynamic rigid-bodies acting as kinematic bodies after being disabled and then re-enabled.
411

512

6-
## v0.17.0 (15 Jan. 2022)
13+
## v0.17.0 (15 Jan. 2023)
714
### Added
815
- Add `RigidBody::set_enabled`, `RigidBody::is_enabled`, `RigidBodyBuilder::enabled` to enable/disable a rigid-body
916
without having to delete it. Disabling a rigid-body attached to a multibody joint isn’t supported yet.

crates/rapier2d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier2d-f64"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors = [ "Sébastien Crozet <[email protected]>" ]
55
description = "2-dimensional physics engine in Rust."
66
documentation = "http://docs.rs/rapier2d"
@@ -52,7 +52,7 @@ vec_map = { version = "0.8", optional = true }
5252
instant = { version = "0.1", features = [ "now" ], optional = true }
5353
num-traits = "0.2"
5454
nalgebra = "0.32"
55-
parry2d-f64 = "0.13"
55+
parry2d-f64 = "0.13.1"
5656
simba = "0.8"
5757
approx = "0.5"
5858
rayon = { version = "1", optional = true }

crates/rapier2d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier2d"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors = [ "Sébastien Crozet <[email protected]>" ]
55
description = "2-dimensional physics engine in Rust."
66
documentation = "http://docs.rs/rapier2d"
@@ -52,7 +52,7 @@ vec_map = { version = "0.8", optional = true }
5252
instant = { version = "0.1", features = [ "now" ], optional = true }
5353
num-traits = "0.2"
5454
nalgebra = "0.32"
55-
parry2d = "0.13"
55+
parry2d = "0.13.1"
5656
simba = "0.8"
5757
approx = "0.5"
5858
rayon = { version = "1", optional = true }

crates/rapier3d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d-f64"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors = [ "Sébastien Crozet <[email protected]>" ]
55
description = "3-dimensional physics engine in Rust."
66
documentation = "http://docs.rs/rapier3d"
@@ -52,7 +52,7 @@ vec_map = { version = "0.8", optional = true }
5252
instant = { version = "0.1", features = [ "now" ], optional = true }
5353
num-traits = "0.2"
5454
nalgebra = "0.32"
55-
parry3d-f64 = "0.13"
55+
parry3d-f64 = "0.13.1"
5656
simba = "0.8"
5757
approx = "0.5"
5858
rayon = { version = "1", optional = true }

crates/rapier3d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors = [ "Sébastien Crozet <[email protected]>" ]
55
description = "3-dimensional physics engine in Rust."
66
documentation = "http://docs.rs/rapier3d"
@@ -52,7 +52,7 @@ vec_map = { version = "0.8", optional = true }
5252
instant = { version = "0.1", features = [ "now" ], optional = true }
5353
num-traits = "0.2"
5454
nalgebra = "0.32"
55-
parry3d = "0.13"
55+
parry3d = "0.13.1"
5656
simba = "0.8"
5757
approx = "0.5"
5858
rayon = { version = "1", optional = true }

0 commit comments

Comments
 (0)