Skip to content

Commit 6cecda4

Browse files
committed
Release 0.2.0-alpha.3
There are still some more API changes incoming....
1 parent b61c1be commit 6cecda4

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
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.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["Techcable <[email protected]>"]
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.2" }
17+
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.3" }
1818

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

Diff for: libs/context/Cargo.toml

+3-3
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.2"
4+
version = "0.2.0-alpha.3"
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.2" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.3" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
1515
parking_lot = { version = "0.11", optional = true }
@@ -25,7 +25,7 @@ default = [
2525
# Use the standard library (required for `sync`)
2626
std = []
2727
# This will allow multiple threads to access the garbage collector
28-
# by creating a seperate context for each.
28+
# by creating a separate context for each.
2929
#
3030
# Thread safe collectors can have increased overhead
3131
# by requiring communication between threads.

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.2"
4+
version = "0.2.0-alpha.3"
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.2", path = "../.." }
15+
zerogc = { version = "0.2.0-alpha.3", 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.2"
4+
version = "0.2.0-alpha.3"
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.2" }
12+
zerogc = { path = "../..", version = "0.2.0-alpha.3" }
1313
once_cell = { version = "1.5", optional = true }
1414
# Shared impl
15-
zerogc-context = { path = "../context", version = "0.2.0-alpha.2", default-features = false }
16-
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.2" }
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" }
1717
# Concurrency
1818
parking_lot = { version = "0.11", optional = true }
1919
# Logging

0 commit comments

Comments
 (0)