Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.14.0 #288

Merged
merged 2 commits into from
Jul 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

6 changes: 3 additions & 3 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 All @@ -23,7 +23,7 @@ required-features = ["dim2"]


[dependencies]
rapier2d = { version = "0.21.0", features = [
rapier2d = { version = "0.22", features = [
"wasm-bindgen",
"serde-serialize",
"enhanced-determinism",
Expand All @@ -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
Loading
Loading