Skip to content

Commit 421db0a

Browse files
committed
Release v0.30.0
1 parent 134f433 commit 421db0a

File tree

11 files changed

+26
-21
lines changed

11 files changed

+26
-21
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.30.0 (03 Oct. 2025)
2+
3+
- Update to parry 0.25 (which involves breaking changes in the `Voxels` API but improves its internal storage to support
4+
large voxel maps).
5+
16
## v0.29.0 (05 Sept. 2025)
27

38
This version contains a significant rework of the internal velocity constraints solver.

crates/rapier2d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier2d-f64"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "2-dimensional physics engine in Rust."
66
documentation = "https://docs.rs/rapier2d"
@@ -69,7 +69,7 @@ vec_map = { version = "0.8", optional = true }
6969
web-time = { version = "1.1", optional = true }
7070
num-traits = "0.2"
7171
nalgebra = "0.34"
72-
parry2d-f64 = "0.24.0"
72+
parry2d-f64 = "0.25.0"
7373
simba = "0.9.1"
7474
approx = "0.5"
7575
rayon = { version = "1", optional = true }

crates/rapier2d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier2d"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "2-dimensional physics engine in Rust."
66
documentation = "https://docs.rs/rapier2d"
@@ -70,7 +70,7 @@ vec_map = { version = "0.8", optional = true }
7070
web-time = { version = "1.1", optional = true }
7171
num-traits = "0.2"
7272
nalgebra = "0.34"
73-
parry2d = "0.24.0"
73+
parry2d = "0.25.0"
7474
simba = "0.9.1"
7575
approx = "0.5"
7676
rayon = { version = "1", optional = true }

crates/rapier3d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d-f64"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "3-dimensional physics engine in Rust."
66
documentation = "https://docs.rs/rapier3d"
@@ -72,7 +72,7 @@ vec_map = { version = "0.8", optional = true }
7272
web-time = { version = "1.1", optional = true }
7373
num-traits = "0.2"
7474
nalgebra = "0.34"
75-
parry3d-f64 = "0.24.0"
75+
parry3d-f64 = "0.25.0"
7676
simba = "0.9.1"
7777
approx = "0.5"
7878
rayon = { version = "1", optional = true }

crates/rapier3d-meshloader/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d-meshloader"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "STL file loader for the 3D rapier physics engine."
66
documentation = "https://docs.rs/rapier3d-meshloader"
@@ -29,4 +29,4 @@ thiserror = "2"
2929
profiling = "1.0"
3030
mesh-loader = "0.1.12"
3131

32-
rapier3d = { version = "0.29.0", path = "../rapier3d" }
32+
rapier3d = { version = "0.30.0", path = "../rapier3d" }

crates/rapier3d-urdf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d-urdf"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "URDF file loader for the 3D rapier physics engine."
66
documentation = "https://docs.rs/rapier3d-urdf"
@@ -31,5 +31,5 @@ anyhow = "1"
3131
bitflags = "2"
3232
urdf-rs = "0.9"
3333

34-
rapier3d = { version = "0.29.0", path = "../rapier3d" }
35-
rapier3d-meshloader = { version = "0.10.0", path = "../rapier3d-meshloader", default-features = false, optional = true }
34+
rapier3d = { version = "0.30.0", path = "../rapier3d" }
35+
rapier3d-meshloader = { version = "0.11.0", path = "../rapier3d-meshloader", default-features = false, optional = true }

crates/rapier3d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier3d"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "3-dimensional physics engine in Rust."
66
documentation = "https://docs.rs/rapier3d"
@@ -74,7 +74,7 @@ vec_map = { version = "0.8", optional = true }
7474
web-time = { version = "1.1", optional = true }
7575
num-traits = "0.2"
7676
nalgebra = "0.34"
77-
parry3d = "0.24.0"
77+
parry3d = "0.25.0"
7878
simba = "0.9.1"
7979
approx = "0.5"
8080
rayon = { version = "1", optional = true }

crates/rapier_testbed2d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier_testbed2d-f64"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "Testbed for the Rapier 2-dimensional physics engine in Rust."
66
homepage = "http://rapier.rs"
@@ -98,5 +98,5 @@ bevy = { version = "0.15", default-features = false, features = [
9898
[dependencies.rapier]
9999
package = "rapier2d-f64"
100100
path = "../rapier2d-f64"
101-
version = "0.29.0"
101+
version = "0.30.0"
102102
features = ["serde-serialize", "debug-render", "profiler"]

crates/rapier_testbed2d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier_testbed2d"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "Testbed for the Rapier 2-dimensional physics engine in Rust."
66
homepage = "http://rapier.rs"
@@ -98,5 +98,5 @@ bevy = { version = "0.15", default-features = false, features = [
9898
[dependencies.rapier]
9999
package = "rapier2d"
100100
path = "../rapier2d"
101-
version = "0.29.0"
101+
version = "0.30.0"
102102
features = ["serde-serialize", "debug-render", "profiler"]

crates/rapier_testbed3d-f64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapier_testbed3d-f64"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors = ["Sébastien Crozet <[email protected]>"]
55
description = "Testbed for the Rapier 3-dimensional physics engine in Rust."
66
homepage = "http://rapier.rs"
@@ -99,5 +99,5 @@ bevy = { version = "0.15", default-features = false, features = [
9999
[dependencies.rapier]
100100
package = "rapier3d-f64"
101101
path = "../rapier3d-f64"
102-
version = "0.29.0"
102+
version = "0.30.0"
103103
features = ["serde-serialize", "debug-render", "profiler"]

0 commit comments

Comments
 (0)