Skip to content

Commit 963eebf

Browse files
committed
chore: Release
1 parent 01055f1 commit 963eebf

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-std-workspace"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based version of the Rust standard library"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -20,12 +20,12 @@ rust-version = "1.63"
2020
#async-std = { version = "1.10.0", features = ["attributes"] }
2121
anyhow = "1.0.37"
2222
#cap-async-std = { path = "cap-async-std", version = "^0.25.0" }
23-
cap-fs-ext = { path = "cap-fs-ext", version = "^1.0.16" }
24-
cap-net-ext = { path = "cap-net-ext", version = "^1.0.16" }
25-
cap-directories = { path = "cap-directories", version = "^1.0.16" }
26-
cap-std = { path = "cap-std", version = "^1.0.16" }
27-
cap-tempfile = { path = "cap-tempfile", version = "^1.0.16" }
28-
cap-rand = { path = "cap-rand", version = "^1.0.16" }
23+
cap-fs-ext = { path = "cap-fs-ext", version = "^2.0.0" }
24+
cap-net-ext = { path = "cap-net-ext", version = "^2.0.0" }
25+
cap-directories = { path = "cap-directories", version = "^2.0.0" }
26+
cap-std = { path = "cap-std", version = "^2.0.0" }
27+
cap-tempfile = { path = "cap-tempfile", version = "^2.0.0" }
28+
cap-rand = { path = "cap-rand", version = "^2.0.0" }
2929
rand = "0.8.1"
3030
tempfile = "3.1.0"
3131
camino = "1.0.5"

cap-directories/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-directories"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based standard directories for config, cache and other data"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313
edition = "2021"
1414

1515
[dependencies]
16-
cap-std = { path = "../cap-std", version = "^1.0.16" }
16+
cap-std = { path = "../cap-std", version = "^2.0.0" }
1717
directories-next = "2.0.0"
1818

1919
[target.'cfg(not(windows))'.dependencies]

cap-fs-ext/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-fs-ext"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Extension traits for `Dir`, `File`, etc."
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -15,8 +15,8 @@ edition = "2021"
1515
[dependencies]
1616
arf-strings = { version = "0.7.0", optional = true }
1717
#cap-async-std = { path = "../cap-async-std", optional = true, version = "^0.25.0" }
18-
cap-std = { path = "../cap-std", optional = true, version = "^1.0.16" }
19-
cap-primitives = { path = "../cap-primitives", version = "^1.0.16" }
18+
cap-std = { path = "../cap-std", optional = true, version = "^2.0.0" }
19+
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
2020
io-lifetimes = { version = "2.0.0", default-features = false }
2121
# Enable "unstable" for `spawn_blocking`.
2222
#async-std = { version = "1.10.0", features = ["attributes", "unstable"], optional = true }

cap-net-ext/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-net-ext"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Extension traits for `TcpListener`, `Pool`, etc."
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313
edition = "2021"
1414

1515
[dependencies]
16-
cap-std = { path = "../cap-std", version = "^1.0.16" }
17-
cap-primitives = { path = "../cap-primitives", version = "^1.0.16" }
16+
cap-std = { path = "../cap-std", version = "^2.0.0" }
17+
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
1818
rustix = { version = "0.38.0", features = ["net"] }
1919
smallvec = "1.10"

cap-primitives/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-primitives"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based primitives"
55
authors = [
66
"Dan Gohman <[email protected]>",

cap-rand/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-rand"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based random number generators"
55
authors = [
66
"Dan Gohman <[email protected]>",

cap-std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-std"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based version of the Rust standard library"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=doc_cfg"]
1818

1919
[dependencies]
2020
arf-strings = { version = "0.7.0", optional = true }
21-
cap-primitives = { path = "../cap-primitives", version = "^1.0.16" }
21+
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
2222
io-extras = "0.18.0"
2323
io-lifetimes = { version = "2.0.0", default-features = false }
2424
camino = { version = "1.0.5", optional = true }

cap-tempfile/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-tempfile"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Capability-based temporary directories"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313
edition = "2021"
1414

1515
[dependencies]
16-
cap-std = { path = "../cap-std", version = "^1.0.16" }
16+
cap-std = { path = "../cap-std", version = "^2.0.0" }
1717
uuid = { version = "1.0.0", features = ["v4"] }
1818
camino = { version = "1.0.5", optional = true }
1919

cap-time-ext/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-time-ext"
3-
version = "1.0.16"
3+
version = "2.0.0"
44
description = "Extension traits for `SystemClock` and `MonotonicClock`"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -13,8 +13,8 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313
edition = "2021"
1414

1515
[dependencies]
16-
cap-primitives = { path = "../cap-primitives", version = "^1.0.16" }
17-
cap-std = { path = "../cap-std", optional = true, version = "^1.0.16" }
16+
cap-primitives = { path = "../cap-primitives", version = "^2.0.0" }
17+
cap-std = { path = "../cap-std", optional = true, version = "^2.0.0" }
1818

1919
[target.'cfg(not(windows))'.dependencies]
2020
rustix = { version = "0.38.0", features = ["time"] }

0 commit comments

Comments
 (0)