Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Jan 11, 2024
1 parent 6a264e2 commit 72fdc30
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-std-workspace"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based version of the Rust standard library"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -20,12 +20,12 @@ rust-version = "1.63"
#async-std = { version = "1.10.0", features = ["attributes"] }
anyhow = "1.0.37"
#cap-async-std = { path = "cap-async-std", version = "^0.25.0" }
cap-fs-ext = { path = "cap-fs-ext", version = "^2.0.0" }
cap-net-ext = { path = "cap-net-ext", version = "^2.0.0" }
cap-directories = { path = "cap-directories", version = "^2.0.0" }
cap-std = { path = "cap-std", version = "^2.0.0" }
cap-tempfile = { path = "cap-tempfile", version = "^2.0.0" }
cap-rand = { path = "cap-rand", version = "^2.0.0" }
cap-fs-ext = { path = "cap-fs-ext", version = "^3.0.0" }
cap-net-ext = { path = "cap-net-ext", version = "^3.0.0" }
cap-directories = { path = "cap-directories", version = "^3.0.0" }
cap-std = { path = "cap-std", version = "^3.0.0" }
cap-tempfile = { path = "cap-tempfile", version = "^3.0.0" }
cap-rand = { path = "cap-rand", version = "^3.0.0" }
rand = "0.8.1"
tempfile = "3.1.0"
camino = "1.0.5"
Expand Down
4 changes: 2 additions & 2 deletions cap-directories/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-directories"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based standard directories for config, cache and other data"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
edition = "2021"

[dependencies]
cap-std = { path = "../cap-std", version = "^2.0.0" }
cap-std = { path = "../cap-std", version = "^3.0.0" }
directories-next = "2.0.0"

[target.'cfg(not(windows))'.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions cap-fs-ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-fs-ext"
version = "2.0.0"
version = "3.0.0"
description = "Extension traits for `Dir`, `File`, etc."
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -15,8 +15,8 @@ edition = "2021"
[dependencies]
arf-strings = { version = "0.7.0", optional = true }
#cap-async-std = { path = "../cap-async-std", optional = true, version = "^0.25.0" }
cap-std = { path = "../cap-std", optional = true, version = "^2.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
cap-std = { path = "../cap-std", optional = true, version = "^3.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.0.0" }
io-lifetimes = { version = "2.0.0", default-features = false }
# Enable "unstable" for `spawn_blocking`.
#async-std = { version = "1.10.0", features = ["attributes", "unstable"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions cap-net-ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-net-ext"
version = "2.0.0"
version = "3.0.0"
description = "Extension traits for `TcpListener`, `Pool`, etc."
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
edition = "2021"

[dependencies]
cap-std = { path = "../cap-std", version = "^2.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
cap-std = { path = "../cap-std", version = "^3.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.0.0" }
rustix = { version = "0.38.0", features = ["net"] }
smallvec = "1.10"
2 changes: 1 addition & 1 deletion cap-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-primitives"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based primitives"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand Down
2 changes: 1 addition & 1 deletion cap-rand/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-rand"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based random number generators"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand Down
4 changes: 2 additions & 2 deletions cap-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-std"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based version of the Rust standard library"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=doc_cfg"]

[dependencies]
arf-strings = { version = "0.7.0", optional = true }
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.0.0" }
io-extras = "0.18.0"
io-lifetimes = { version = "2.0.0", default-features = false }
camino = { version = "1.0.5", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions cap-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-tempfile"
version = "2.0.0"
version = "3.0.0"
description = "Capability-based temporary directories"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
edition = "2021"

[dependencies]
cap-std = { path = "../cap-std", version = "^2.0.0" }
cap-std = { path = "../cap-std", version = "^3.0.0" }
uuid = { version = "1.0.0", features = ["v4"] }
camino = { version = "1.0.5", optional = true }

Expand Down
6 changes: 3 additions & 3 deletions cap-time-ext/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-time-ext"
version = "2.0.0"
version = "3.0.0"
description = "Extension traits for `SystemClock` and `MonotonicClock`"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -14,8 +14,8 @@ edition = "2021"

[dependencies]
ambient-authority = "0.0.2"
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
cap-std = { path = "../cap-std", optional = true, version = "^2.0.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.0.0" }
cap-std = { path = "../cap-std", optional = true, version = "^3.0.0" }
iana-time-zone = "0.1.57"

[target.'cfg(not(windows))'.dependencies]
Expand Down

0 comments on commit 72fdc30

Please sign in to comment.