Skip to content

Commit c461c07

Browse files
committed
chore: Release
1 parent dcc3818 commit c461c07

File tree

10 files changed

+28
-28
lines changed

10 files changed

+28
-28
lines changed

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-std-workspace"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
description = "Capability-based version of the Rust standard library"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -19,13 +19,13 @@ rust-version = "1.63"
1919
[dev-dependencies]
2020
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] }
2121
anyhow = "1.0.37"
22-
cap-async-std = { path = "cap-async-std", version = "3.4.0" }
23-
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.0" }
24-
cap-net-ext = { path = "cap-net-ext", version = "3.4.0" }
25-
cap-directories = { path = "cap-directories", version = "3.4.0" }
26-
cap-std = { path = "cap-std", version = "3.4.0" }
27-
cap-tempfile = { path = "cap-tempfile", version = "3.4.0" }
28-
cap-rand = { path = "cap-rand", version = "3.4.0" }
22+
cap-async-std = { path = "cap-async-std", version = "3.4.1" }
23+
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.1" }
24+
cap-net-ext = { path = "cap-net-ext", version = "3.4.1" }
25+
cap-directories = { path = "cap-directories", version = "3.4.1" }
26+
cap-std = { path = "cap-std", version = "3.4.1" }
27+
cap-tempfile = { path = "cap-tempfile", version = "3.4.1" }
28+
cap-rand = { path = "cap-rand", version = "3.4.1" }
2929
rand = "0.8.1"
3030
tempfile = "3.1.0"
3131
camino = "1.0.5"

cap-async-std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-async-std"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
description = "Capability-based version of async-std"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -15,7 +15,7 @@ edition = "2021"
1515
[dependencies]
1616
arf-strings = { version = "0.7.0", optional = true }
1717
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] }
18-
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
18+
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
1919
io-lifetimes = { version = "2.0.0", default-features = false, features = ["async-std"] }
2020
io-extras = { version = "0.18.3", features = ["use_async_std"] }
2121
camino = { version = "1.0.5", optional = true }

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 = "3.4.0"
3+
version = "3.4.1"
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 = "^3.4.0" }
16+
cap-std = { path = "../cap-std", version = "^3.4.1" }
1717
directories-next = "2.0.0"
1818

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

cap-fs-ext/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cap-fs-ext"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
description = "Extension traits for `Dir`, `File`, etc."
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -14,9 +14,9 @@ edition = "2021"
1414

1515
[dependencies]
1616
arf-strings = { version = "0.7.0", optional = true }
17-
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.0" }
18-
cap-std = { path = "../cap-std", optional = true, version = "3.4.0" }
19-
cap-primitives = { path = "../cap-primitives", version = "3.4.0" }
17+
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.1" }
18+
cap-std = { path = "../cap-std", optional = true, version = "3.4.1" }
19+
cap-primitives = { path = "../cap-primitives", version = "3.4.1" }
2020
io-lifetimes = { version = "2.0.0", default-features = false }
2121
async-std = { version = "1.13.0", features = ["io_safety", "attributes"], optional = true }
2222
async-trait = { version = "0.1.42", 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 = "3.4.0"
3+
version = "3.4.1"
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 = "^3.4.0" }
17-
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
16+
cap-std = { path = "../cap-std", version = "^3.4.1" }
17+
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
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 = "3.4.0"
3+
version = "3.4.1"
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 = "3.4.0"
3+
version = "3.4.1"
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 = "3.4.0"
3+
version = "3.4.1"
44
description = "Capability-based version of the Rust standard library"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=docsrs"]
1818

1919
[dependencies]
2020
arf-strings = { version = "0.7.0", optional = true }
21-
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
21+
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
2222
io-extras = "0.18.3"
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 = "3.4.0"
3+
version = "3.4.1"
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 = "^3.4.0" }
16+
cap-std = { path = "../cap-std", version = "^3.4.1" }
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 = "3.4.0"
3+
version = "3.4.1"
44
description = "Extension traits for `SystemClock` and `MonotonicClock`"
55
authors = [
66
"Dan Gohman <[email protected]>",
@@ -14,8 +14,8 @@ edition = "2021"
1414

1515
[dependencies]
1616
ambient-authority = "0.0.2"
17-
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
18-
cap-std = { path = "../cap-std", optional = true, version = "^3.4.0" }
17+
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
18+
cap-std = { path = "../cap-std", optional = true, version = "^3.4.1" }
1919
iana-time-zone = "0.1.57"
2020

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

0 commit comments

Comments
 (0)