Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Dec 11, 2022
1 parent 42fdd59 commit a729c95
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Change Log

## Unreleased
## v0.12.0 (11 Nov. 2022)

### Modified
- `Qbvh::leaf_data` now requires `&self` instead of `&mut self`.
- Replace the `Qbvh::leaf` boolean by a bitflags.

### Added
- Add `Qbvh::remove`, `Qbvh::pre_update_or_insert`, `Qbvh::refit`, `Qbvh::rebalance` to allow modifying a `Qbvh`
without having to rebuild it completely.
- Add `QbvhNode::is_leaf` to get if a node is a leaf or not.
- Add `SharedShape::trimesh_with_flags` for building a trimesh with specific pre-processing flags.

### Fixed
- Fix `Triangle::contains_point`.

## v0.11.1 (30 Oct. 2022)

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/parry2d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parry2d-f64"
version = "0.11.1"
version = "0.12.0"
authors = [ "Sébastien Crozet <[email protected]>" ]

description = "2 dimensional collision detection library in Rust. 64-bit precision version."
Expand Down
2 changes: 1 addition & 1 deletion crates/parry2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parry2d"
version = "0.11.1"
version = "0.12.0"
authors = [ "Sébastien Crozet <[email protected]>" ]

description = "2 dimensional collision detection library in Rust."
Expand Down
2 changes: 1 addition & 1 deletion crates/parry3d-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parry3d-f64"
version = "0.11.1"
version = "0.12.0"
authors = [ "Sébastien Crozet <[email protected]>" ]

description = "3 dimensional collision detection library in Rust. 64-bits precision version."
Expand Down
2 changes: 1 addition & 1 deletion crates/parry3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parry3d"
version = "0.11.1"
version = "0.12.0"
authors = [ "Sébastien Crozet <[email protected]>" ]

description = "3 dimensional collision detection library in Rust."
Expand Down

0 comments on commit a729c95

Please sign in to comment.