diff --git a/CHANGELOG.md b/CHANGELOG.md index a43a9a50..0bd4c007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## v0.14.0 ### Modified @@ -27,11 +27,15 @@ - Add `Aabb::intersects_moving_aabb` to perform a swept test between two moving aabbs. ## v0.13.8 + ### Added -- Add `Qbvh::traverse_depth_first_with_context`, `Qbvh::traverse_depth_first_node_with_stack_and_context`, and the related `SimdVisitorWithContext` trait to allow parent nodes to pass a custom context to its children during recursion. +- Add `Qbvh::traverse_depth_first_with_context`, `Qbvh::traverse_depth_first_node_with_stack_and_context`, and the + related `SimdVisitorWithContext` trait to allow parent nodes to pass a custom context to its children during + recursion. ## v0.13.7 + ### Modified - The `point_in_poly2d` now handles arbitrary (convex and non-convex) polygons. The previous implementation diff --git a/crates/parry2d-f64/Cargo.toml b/crates/parry2d-f64/Cargo.toml index 79ab82bb..00c9447f 100644 --- a/crates/parry2d-f64/Cargo.toml +++ b/crates/parry2d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry2d-f64" -version = "0.13.8" +version = "0.14.0" authors = ["Sébastien Crozet "] description = "2 dimensional collision detection library in Rust. 64-bit precision version." diff --git a/crates/parry2d/Cargo.toml b/crates/parry2d/Cargo.toml index d6a0850d..6e0226e7 100644 --- a/crates/parry2d/Cargo.toml +++ b/crates/parry2d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry2d" -version = "0.13.8" +version = "0.14.0" authors = ["Sébastien Crozet "] description = "2 dimensional collision detection library in Rust." diff --git a/crates/parry3d-f64/Cargo.toml b/crates/parry3d-f64/Cargo.toml index 79969057..b611964e 100644 --- a/crates/parry3d-f64/Cargo.toml +++ b/crates/parry3d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry3d-f64" -version = "0.13.8" +version = "0.14.0" authors = ["Sébastien Crozet "] description = "3 dimensional collision detection library in Rust. 64-bits precision version." diff --git a/crates/parry3d/Cargo.toml b/crates/parry3d/Cargo.toml index 9b79dab5..ae463787 100644 --- a/crates/parry3d/Cargo.toml +++ b/crates/parry3d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry3d" -version = "0.13.8" +version = "0.14.0" authors = ["Sébastien Crozet "] description = "3 dimensional collision detection library in Rust."