Skip to content

Commit c3e1955

Browse files
committed
Version bump to alpha.6
I am mostly using this as "garbage collected arenas". Use as a more general GC would require a redesign.
1 parent d0af2e3 commit c3e1955

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zerogc"
3-
version = "0.2.0-alpha.5"
3+
version = "0.2.0-alpha.6"
44
authors = ["Techcable <[email protected]>"]
55
description = "Zero overhead tracing garbage collection for rust"
66
repository = "https://github.com/DuckLogic/zerogc"
@@ -21,7 +21,7 @@ anyhow = { version = "1", optional = true }
2121
# Serde support (optional)
2222
serde = { version = "1", optional = true, features = ["derive"] }
2323
# Used for macros
24-
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.5" }
24+
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.6" }
2525
# Used for the "epsilon" no-op collector
2626
bumpalo = { version = "3", optional = true }
2727
# Used for our custom hashmap

libs/context/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "zerogc-context"
33
description = "Handles the context of a zerogc collector."
4-
version = "0.2.0-alpha.5"
4+
version = "0.2.0-alpha.6"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
88
license = "MIT"
99
edition = "2018"
1010

1111
[dependencies]
12-
zerogc = { path = "../..", version = "0.2.0-alpha.5" }
13-
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.5" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.6" }
13+
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.6" }
1414
once_cell = { version = "1.5", optional = true }
1515
# Concurrency
1616
parking_lot = { version = "0.11", optional = true }

libs/derive/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zerogc-derive"
33
description = "Procedural derive for zerogc's garbage collection"
4-
version = "0.2.0-alpha.5"
4+
version = "0.2.0-alpha.6"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
@@ -12,7 +12,7 @@ edition = "2018"
1212
proc-macro = true
1313

1414
[dev-dependencies]
15-
zerogc = { version = "0.2.0-alpha.5", path = "../..", features = ["serde1"] }
15+
zerogc = { version = "0.2.0-alpha.6", path = "../..", features = ["serde1"] }
1616
serde = { version = "1" }
1717

1818
[dependencies]
@@ -29,4 +29,4 @@ itertools = "0.10.1"
2929

3030
[features]
3131
# Indicates that zerogc was compiled with support for serde,
32-
__serde-internal = []
32+
__serde-internal = []

libs/simple/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zerogc-simple"
33
description = "Lightweight mark/sweep collector for zerogc."
4-
version = "0.2.0-alpha.5"
4+
version = "0.2.0-alpha.6"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
@@ -10,11 +10,11 @@ edition = "2018"
1010

1111
[dependencies]
1212
inherent = "1"
13-
zerogc = { path = "../..", version = "0.2.0-alpha.5" }
13+
zerogc = { path = "../..", version = "0.2.0-alpha.6" }
1414
once_cell = { version = "1.5", optional = true }
1515
# Shared impl
16-
zerogc-context = { path = "../context", version = "0.2.0-alpha.5", default-features = false }
17-
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.5" }
16+
zerogc-context = { path = "../context", version = "0.2.0-alpha.6", default-features = false }
17+
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.6" }
1818
# Concurrency
1919
parking_lot = { version = "0.11", optional = true }
2020
# Logging

0 commit comments

Comments
 (0)