Skip to content

Commit 6f62e81

Browse files
committed
Release version 0.2.0-alpha.2
I need to release an official version to crates.io so that static-reflect has a public dependency to build against. AFAIK git-dependencies are forbidden on crates.io (thats a good thing)
1 parent ab5fcbb commit 6f62e81

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zerogc"
3-
version = "0.2.0-alpha.1"
3+
version = "0.2.0-alpha.2"
44
authors = ["Techcable <Techcable@techcable.net>"]
55
description = "Zero overhead tracing garbage collection for rust"
66
repository = "https://github.com/DuckLogic/zerogc"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
# gives zerogc 'batteries included' support.
1515
indexmap = { version = "1.6", optional = true }
1616
# Used for macros
17-
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.1" }
17+
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.2" }
1818

1919
[workspace]
2020
members = ["libs/simple", "libs/derive", "libs/context"]
@@ -32,4 +32,4 @@ std = []
3232
# This is implied by using the standard library (feature="std")
3333
#
3434
# This implements `Trace` for `Box` and collections like `Vec`
35-
alloc = []
35+
alloc = []

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.2.0-alpha.1"
4+
version = "0.2.0-alpha.2"
55
authors = ["Techcable <Techcable@techcable.net>"]
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.1" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.2" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
1515
parking_lot = { version = "0.11", 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.2.0-alpha.1"
4+
version = "0.2.0-alpha.2"
55
authors = ["Techcable <Techcable@techcable.net>"]
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.1", path = "../.." }
15+
zerogc = { version = "0.2.0-alpha.2", 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.2.0-alpha.1"
4+
version = "0.2.0-alpha.2"
55
authors = ["Techcable <Techcable@techcable.net>"]
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.1" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.2" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Shared impl
15-
zerogc-context = { path = "../context", version = "0.2.0-alpha.1", default-features = false }
15+
zerogc-context = { path = "../context", version = "0.2.0-alpha.2", default-features = false }
1616
# Concurrency
1717
parking_lot = { version = "0.11", optional = true }
1818
# Logging

0 commit comments

Comments
 (0)