From fbb26b4edf5f6ceb9281ef20eacee8269a51eb58 Mon Sep 17 00:00:00 2001 From: kyren Date: Tue, 11 Jul 2023 13:35:36 -0400 Subject: [PATCH] prepare for 0.3.3 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/gc-arena/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 352f4fb..1bc24a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.3.3] +- Actually pause for the configured amount of time in the gc, rather than the + minimum. + ## [0.3.2] - Implement `Eq`, `PartialEq`, `Ord`, `PartialOrd`, and `Hash` traits on `Gc` similar to the traits on std smart pointers like `Rc`. diff --git a/Cargo.toml b/Cargo.toml index 8a85cf8..0e12d0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.3.2" +version = "0.3.3" authors = ["kyren "] edition = "2018" license = "MIT" diff --git a/src/gc-arena/Cargo.toml b/src/gc-arena/Cargo.toml index 72ffaa1..98910e7 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.2"} +gc-arena-derive = { path = "../gc-arena-derive", version = "0.3.3"} sptr = "0.3.2" [dev-dependencies]