Skip to content

Commit 83cac88

Browse files
committed
Bump version to v0.2.0-alpha.1
For some reason the `binary_trees_parallel` fails to compile but the `binary_trees` example suceeds :? Regardless, the basic API is in place and I need to make a release so that downstream code can use the new lifetimes 😉
1 parent 7c7e790 commit 83cac88

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zerogc"
3-
version = "0.1.3"
3+
version = "0.2.0-alpha.1"
44
authors = ["Techcable <[email protected]>"]
55
description = "Zero overhead tracing garbage collection for rust"
66
repository = "https://github.com/DuckLogic/zerogc"

libs/context/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "zerogc-context"
33
description = "Handles the context of a zerogc collector."
4-
version = "0.1.3"
4+
version = "0.2.0-alpha.1"
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.1.3" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.1" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
1515
parking_lot = { version = "0.11", features = ["nightly"], optional = true }

libs/derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.1.4"
4+
version = "0.2.0-alpha.1"
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.1.3", path = "../.." }
15+
zerogc = { version = "0.2.0-alpha.1", path = "../.." }
1616

1717
[dependencies]
1818
# Proc macros

libs/simple/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "zerogc-simple"
33
description = "Lightweight mark/sweep collector for zerogc."
4-
version = "0.1.3"
4+
version = "0.2.0-alpha.1"
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.1.3" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.1" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Shared impl
15-
zerogc-context = { path = "../context", version = "0.1.3", default-features = false }
15+
zerogc-context = { path = "../context", version = "0.2.0-alpha.1", default-features = false }
1616
# Concurrency
1717
parking_lot = { version = "0.11", features = ["nightly"], optional = true }
1818
# Logging

0 commit comments

Comments
 (0)