From 64ab98785417dd8b82737e6c34a80fb6e0f46f87 Mon Sep 17 00:00:00 2001 From: kyren Date: Sun, 21 Apr 2024 22:36:18 -0600 Subject: [PATCH] prepare for v0.5.1 release --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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"