Skip to content

Commit

Permalink
prepare for 0.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kyren committed Jul 10, 2023
1 parent a6a5e48 commit 42f519e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.3.2]
- Implement `Eq`, `PartialEq`, `Ord`, `PartialOrd`, and `Hash` traits on `Gc<T>`
similar to the traits on std smart pointers like `Rc<T>`.
- Relax unnecessary bounds on `Collect` impls of std collections.
- Make `Arena::remembered_size()` return reasonable values.

## [0.3.1]
- Fallible `DynamicRootSet` API.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
]

[workspace.package]
version = "0.3.1"
version = "0.3.2"
authors = ["kyren <kerriganw@gmail.com>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/gc-arena/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 42f519e

Please sign in to comment.