Skip to content

Commit

Permalink
Release v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Jul 20, 2024
1 parent 55ad150 commit 112f688
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 101 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
### Unreleased
### 0.14.0 (20 July 2024)

- Update from rapier 0.19 to 0.21 ([#281](https://github.com/dimforge/rapier.js/pull/281)), see [rapier's changelog](https://github.com/dimforge/rapier/blob/master/CHANGELOG.md#v0210-23-june-2024) for more context.
#### Modified

- Update from the rust library of rapier 0.19 to 0.22,
see [rapier's changelog](https://github.com/dimforge/rapier/blob/master/CHANGELOG.md#v0210-23-june-2024) for more
context.

#### Added

- Added `userForce` function to retrieve the constant force(s) the user added to a rigid-body
- Added `userTorque` function to retrieve the constant torque(s) the user added to a rigid-body
- Added `RigidBody.userForce` function to retrieve the constant force(s) the user added to a rigid-body
- Added `RigidBody.userTorque` function to retrieve the constant torque(s) the user added to a rigid-body

### 0.13.1 (2024-05-08)

Expand Down
167 changes: 74 additions & 93 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions 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.1"
version = "0.14.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "2-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier2d/index.html"
Expand Down Expand Up @@ -38,7 +38,7 @@ bincode = "1"
crossbeam-channel = "0.5"
palette = "0.7"
libm = "0.2"
parry2d = "^0.16.1" # Use at least this version to fix a regression in 0.15.0
parry2d = "0.17" # 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
4 changes: 2 additions & 2 deletions 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.1"
version = "0.14.0"
authors = ["Sébastien Crozet <[email protected]>"]
description = "3-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier2d/index.html"
Expand Down Expand Up @@ -37,7 +37,7 @@ serde = { version = "1", features = ["derive", "rc"] }
bincode = "1"
crossbeam-channel = "0.5"
palette = "0.7"
parry2d = "^0.15.1" # Use at least this version to fix a regression in 0.15.0
parry2d = "0.17" # 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 112f688

Please sign in to comment.