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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.19.3 (05 Nov. 2025)

- Significantly improve performances of `combineVoxelStates`.

### 0.19.2 (17 Oct. 2025)

- Fix bug where kinematic bodies would not wake up when setting its velocity.
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion 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.2"
version = "0.19.3"
authors = ["Sébastien Crozet <[email protected]>"]
description = "{{ dimension }}-dimensional physics engine in Rust - official JS bindings."
documentation = "https://rapier.rs/rustdoc/rapier{{ dimension }}d/index.html"
Expand Down Expand Up @@ -35,6 +35,8 @@ rapier{{ dimension }}d = { version = "0.30.1", features = [
"{{ feature }}",
{%- endfor %}
] }
# The explicit dependency to parry only needed to pin the patch version.
parry{{ dimension }}d = { version = "^0.25.3" }
ref-cast = "1"
wasm-bindgen = "0.2.100"
js-sys = "0.3"
Expand Down