diff --git a/CHANGELOG.md b/CHANGELOG.md index d54a27fd..fd88c3df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## Unreleased +## v0.17.0 ### Added @@ -21,6 +21,7 @@ - Rename `Shape::clone_box` to `Shape::clone_dyn` (the `clone_box` method still exists but has been deprecated). - Make `try_convex_hull` return an error instead of panicking if less than 3 input points are given. +- Make `Triangle::normal` and `Triangle::scaled_normal` only available in 3D insead of panicking in 2D. ## v0.16.1 diff --git a/crates/parry2d-f64/Cargo.toml b/crates/parry2d-f64/Cargo.toml index 8821dbb5..293d84b7 100644 --- a/crates/parry2d-f64/Cargo.toml +++ b/crates/parry2d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry2d-f64" -version = "0.16.1" +version = "0.17.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 61beba47..d5e2cd52 100644 --- a/crates/parry2d/Cargo.toml +++ b/crates/parry2d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry2d" -version = "0.16.1" +version = "0.17.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 cef9c114..5d469892 100644 --- a/crates/parry3d-f64/Cargo.toml +++ b/crates/parry3d-f64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry3d-f64" -version = "0.16.1" +version = "0.17.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 c2818326..97dd9648 100644 --- a/crates/parry3d/Cargo.toml +++ b/crates/parry3d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parry3d" -version = "0.16.1" +version = "0.17.0" authors = ["Sébastien Crozet "] description = "3 dimensional collision detection library in Rust."