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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.19.1 (03 Oct. 2025)

### Modified

- Update to Rapier 0.30.0. The only change is a [switch to a sparse storage](https://github.com/dimforge/parry/pull/380)
for the Voxels shapes. This allows support for orders of magnitudes larger maps without reaching the 4GB WASM memory
limit.

### 0.19.0 (05 Sept. 2025)

### Modified
Expand Down
4 changes: 2 additions & 2 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.19.0"
version = "0.19.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.29.0", features = [
rapier{{ dimension }}d = { version = "0.30.0", features = [
"serde-serialize",
"debug-render",
"profiler",
Expand Down