Skip to content
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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 0.18.1 (8 August 2025)

### Modified

- Update to Rapier 0.28.0 which includes performance improvements when CCD is active and when
the user applies modification to a collider or rigid-body.

### Fix

- Another attempt to fix bundlerless module import with rapier-compat.

### 0.18.0 (24 July 2025)

### Added
Expand All @@ -15,7 +26,7 @@

#### Modified

- Update to Rapier 0.22.0-beta.1 which includes a fully reworked broad-phase tha supports scene queries.
- Update to Rapier 0.27.0-beta.1 which includes a fully reworked broad-phase tha supports scene queries.
This implies a performance gain on large scenes by avoiding the need to re-build the underlying acceleration
structure at each frame.
- Un-deprecate methods for reading shape properties (for example `collider.radius()`). It turned out that these
Expand Down
6 changes: 3 additions & 3 deletions builds/prepare_builds/templates/Cargo.toml.tera
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dimforge_{{ js_package_name }}" # Can't be named rapier{{ dimension }}d which conflicts with the dependency.
version = "0.18.0"
version = "0.18.1"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "{{ dimension }}-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier{{ dimension }}d/index.html"
Expand All @@ -27,7 +27,7 @@ rust.unexpected_cfgs = { level = "warn", check-cfg = [
] }

[dependencies]
rapier{{ dimension }}d = { version = "0.27.0", features = [
rapier{{ dimension }}d = { version = "0.28.0", features = [
"serde-serialize",
"debug-render",
"profiler",
Expand All @@ -38,7 +38,7 @@ rapier{{ dimension }}d = { version = "0.27.0", features = [
ref-cast = "1"
wasm-bindgen = "0.2.100"
js-sys = "0.3"
nalgebra = "0.33"
nalgebra = "0.34"
serde = { version = "1", features = ["derive", "rc"] }
bincode = "1"
palette = "0.7"
Expand Down
Loading