diff --git a/CHANGELOG.md b/CHANGELOG.md index 723a669..352f4fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.3.2] +- Implement `Eq`, `PartialEq`, `Ord`, `PartialOrd`, and `Hash` traits on `Gc` + similar to the traits on std smart pointers like `Rc`. +- Relax unnecessary bounds on `Collect` impls of std collections. +- Make `Arena::remembered_size()` return reasonable values. + ## [0.3.1] - Fallible `DynamicRootSet` API. diff --git a/Cargo.toml b/Cargo.toml index a155695..8a85cf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.3.1" +version = "0.3.2" authors = ["kyren "] edition = "2018" license = "MIT" diff --git a/src/gc-arena/Cargo.toml b/src/gc-arena/Cargo.toml index faaa420..72ffaa1 100644 --- a/src/gc-arena/Cargo.toml +++ b/src/gc-arena/Cargo.toml @@ -13,7 +13,7 @@ default = ["std"] std = [] [dependencies] -gc-arena-derive = { path = "../gc-arena-derive", version = "0.3.1"} +gc-arena-derive = { path = "../gc-arena-derive", version = "0.3.2"} sptr = "0.3.2" [dev-dependencies]