Skip to content

Commit 50fc400

Browse files
committed
Release v0.22.1
1 parent 8f14e16 commit 50fc400

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.22.1
2+
3+
### Added
4+
5+
- Add `Bvh::insert_with_change_detection` which runs an insertion unless the inserted aabb is enclosed in the
6+
existing one. This differs from `insert_or_update_partially` because the former will update parent AABBs so
7+
they enclose their descendants.
8+
19
## 0.22.0
210

311
### Fixed

crates/parry2d-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 = "parry2d-f64"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "2 dimensional collision detection library in Rust. 64-bit precision version."
@@ -73,7 +73,7 @@ num-traits = { version = "0.2", default-features = false }
7373
slab = { version = "0.4", optional = true }
7474
arrayvec = { version = "0.7", default-features = false }
7575
simba = { version = "0.9", default-features = false }
76-
nalgebra = { version = "0.33", default-features = false, features = ["libm"] }
76+
nalgebra = { version = "0.34", default-features = false, features = ["libm"] }
7777
approx = { version = "0.5", default-features = false }
7878
serde = { version = "1.0", optional = true, features = ["derive"] }
7979
rkyv = { version = "0.7.41", optional = true }

crates/parry2d/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry2d"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "2 dimensional collision detection library in Rust."
@@ -73,7 +73,7 @@ num-traits = { version = "0.2", default-features = false }
7373
slab = { version = "0.4", optional = true }
7474
arrayvec = { version = "0.7", default-features = false }
7575
simba = { version = "0.9", default-features = false }
76-
nalgebra = { version = "0.33", default-features = false, features = ["libm"] }
76+
nalgebra = { version = "0.34", default-features = false, features = ["libm"] }
7777
approx = { version = "0.5", default-features = false }
7878
serde = { version = "1.0", optional = true, features = ["derive"] }
7979
rkyv = { version = "0.7.41", optional = true }

crates/parry3d-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 = "parry3d-f64"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "3 dimensional collision detection library in Rust. 64-bits precision version."
@@ -73,7 +73,7 @@ num-traits = { version = "0.2", default-features = false }
7373
slab = { version = "0.4", optional = true }
7474
arrayvec = { version = "0.7", default-features = false }
7575
simba = { version = "0.9", default-features = false }
76-
nalgebra = { version = "0.33", default-features = false, features = ["libm"] }
76+
nalgebra = { version = "0.34", default-features = false, features = ["libm"] }
7777
approx = { version = "0.5", default-features = false }
7878
serde = { version = "1.0", optional = true, features = ["derive", "rc"] }
7979
rkyv = { version = "0.7.41", optional = true }

crates/parry3d/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry3d"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "3 dimensional collision detection library in Rust."
@@ -74,7 +74,7 @@ num-traits = { version = "0.2", default-features = false }
7474
slab = { version = "0.4", optional = true }
7575
arrayvec = { version = "0.7", default-features = false }
7676
simba = { version = "0.9", default-features = false }
77-
nalgebra = { version = "0.33", default-features = false, features = ["libm"] }
77+
nalgebra = { version = "0.34", default-features = false, features = ["libm"] }
7878
approx = { version = "0.5", default-features = false }
7979
serde = { version = "1.0", optional = true, features = ["derive", "rc"] }
8080
rkyv = { version = "0.7.41", optional = true }
@@ -105,7 +105,7 @@ oorandom = "11"
105105
ptree = "0.4.0"
106106
rand = { version = "0.8" }
107107
macroquad = "0.4.12"
108-
nalgebra = { version = "0.33", default-features = false, features = ["rand"] }
108+
nalgebra = { version = "0.34", default-features = false, features = ["rand"] }
109109
rand_isaac = "0.3"
110110

111111
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)