diff --git a/CHANGELOG.md b/CHANGELOG.md index 4988960..dff5d4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.5.1] + +* Correct the behavior of `Arena::mark_debt` and `Arena::mark_all` + to do what their documentation suggest and do nothing during + `CollectionPhase::Collecting` +* Implement `Collect` for `std::collections::LinkedList` +* Make `StaticCollect` `#[repr(transparent)]`, to support sound casting from + `Gc>` to `Gc`. + ## [0.5.0] This release adds the concept of "finalization" to arenas. At the end of the diff --git a/Cargo.toml b/Cargo.toml index 45ac727..94e3339 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ ] [workspace.package] -version = "0.5.0" +version = "0.5.1" authors = ["kyren ", "moulins", "Aaron Hill "] edition = "2021" license = "MIT"