Skip to content

Commit a90e38a

Browse files
committed
Bump version to 0.2.0-alpha.4
1 parent a61e65e commit a90e38a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Diff for: 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.3"
3+
version = "0.2.0-alpha.4"
44
authors = ["Techcable <[email protected]>"]
55
description = "Zero overhead tracing garbage collection for rust"
66
repository = "https://github.com/DuckLogic/zerogc"
@@ -15,7 +15,7 @@ scopeguard = "1.1"
1515
# gives zerogc 'batteries included' support.
1616
indexmap = { version = "1.6", optional = true }
1717
# Used for macros
18-
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.3" }
18+
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.4" }
1919

2020
[workspace]
2121
members = ["libs/simple", "libs/derive", "libs/context"]

Diff for: libs/context/Cargo.toml

+2-2
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.2.0-alpha.3"
4+
version = "0.2.0-alpha.4"
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.3" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.4" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
1515
parking_lot = { version = "0.11", optional = true }

Diff for: libs/derive/Cargo.toml

+2-2
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.3"
4+
version = "0.2.0-alpha.4"
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.3", path = "../.." }
15+
zerogc = { version = "0.2.0-alpha.4", path = "../.." }
1616

1717
[dependencies]
1818
# Proc macros

Diff for: libs/simple/Cargo.toml

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

0 commit comments

Comments
 (0)