Skip to content

Commit

Permalink
Release v0.13.1
Browse files Browse the repository at this point in the history
This updates to parry 0.15.1 to include a regression fix on ball collision-detection.
  • Loading branch information
sebcrozet committed May 8, 2024
1 parent 4f5edf4 commit a86610f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 0.13.1 (2024-05-08)

#### Fixed

- Fix regression that could cause missed contact between a ball and another shape type.

### 0.13.0 (2024-05-05)

Several stability improvements are added as part of this release.
Expand Down
10 changes: 6 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion rapier2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dimforge_rapier2d" # Can't be named rapier2d which conflicts with the dependency.
version = "0.13.0"
version = "0.13.1"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "2-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier2d/index.html"
Expand Down Expand Up @@ -33,6 +33,7 @@ bincode = "1"
crossbeam-channel = "0.5"
palette = "0.6"
libm = "0.2"
parry2d = "^0.15.1" # Use at least this version to fix a regression in 0.15.0

[package.metadata.wasm-pack.profile.release]
# add -g to keep debug symbols
Expand Down
3 changes: 2 additions & 1 deletion rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dimforge_rapier3d" # Can't be named rapier3d which conflicts with the dependency.
version = "0.13.0"
version = "0.13.1"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "3-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier2d/index.html"
Expand Down Expand Up @@ -32,6 +32,7 @@ serde = { version = "1", features = ["derive", "rc"] }
bincode = "1"
crossbeam-channel = "0.5"
palette = "0.6"
parry2d = "^0.15.1" # Use at least this version to fix a regression in 0.15.0

[package.metadata.wasm-pack.profile.release]
# add -g to keep debug symbols
Expand Down

0 comments on commit a86610f

Please sign in to comment.