Skip to content

Commit

Permalink
Release 0.2.0-alpha.3
Browse files Browse the repository at this point in the history
There are still some more API changes incoming....
  • Loading branch information
Techcable committed May 17, 2021
1 parent b61c1be commit 6cecda4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zerogc"
version = "0.2.0-alpha.2"
version = "0.2.0-alpha.3"
authors = ["Techcable <[email protected]>"]
description = "Zero overhead tracing garbage collection for rust"
repository = "https://github.com/DuckLogic/zerogc"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
# gives zerogc 'batteries included' support.
indexmap = { version = "1.6", optional = true }
# Used for macros
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.2" }
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.3" }

[workspace]
members = ["libs/simple", "libs/derive", "libs/context"]
Expand Down
6 changes: 3 additions & 3 deletions libs/context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "zerogc-context"
description = "Handles the context of a zerogc collector."
version = "0.2.0-alpha.2"
version = "0.2.0-alpha.3"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
license = "MIT"
edition = "2018"

[dependencies]
zerogc = { path = "../..", version = "0.2.0-alpha.2" }
zerogc = { path = "../..", version = "0.2.0-alpha.3" }
once_cell = { version = "1.5", optional = true }
# Concurrency
parking_lot = { version = "0.11", optional = true }
Expand All @@ -25,7 +25,7 @@ default = [
# Use the standard library (required for `sync`)
std = []
# This will allow multiple threads to access the garbage collector
# by creating a seperate context for each.
# by creating a separate context for each.
#
# Thread safe collectors can have increased overhead
# by requiring communication between threads.
Expand Down
4 changes: 2 additions & 2 deletions libs/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zerogc-derive"
description = "Procedural derive for zerogc's garbage collection"
version = "0.2.0-alpha.2"
version = "0.2.0-alpha.3"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dev-dependencies]
zerogc = { version = "0.2.0-alpha.2", path = "../.." }
zerogc = { version = "0.2.0-alpha.3", path = "../.." }

[dependencies]
# Proc macros
Expand Down
8 changes: 4 additions & 4 deletions libs/simple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "zerogc-simple"
description = "Lightweight mark/sweep collector for zerogc."
version = "0.2.0-alpha.2"
version = "0.2.0-alpha.3"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
license = "MIT"
edition = "2018"

[dependencies]
zerogc = { path = "../..", version = "0.2.0-alpha.2" }
zerogc = { path = "../..", version = "0.2.0-alpha.3" }
once_cell = { version = "1.5", optional = true }
# Shared impl
zerogc-context = { path = "../context", version = "0.2.0-alpha.2", default-features = false }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.2" }
zerogc-context = { path = "../context", version = "0.2.0-alpha.3", default-features = false }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.3" }
# Concurrency
parking_lot = { version = "0.11", optional = true }
# Logging
Expand Down

0 comments on commit 6cecda4

Please sign in to comment.