Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Nov 5, 2024
1 parent dcc3818 commit c461c07
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 28 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-std-workspace"
version = "3.4.0"
version = "3.4.1"
description = "Capability-based version of the Rust standard library"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -19,13 +19,13 @@ rust-version = "1.63"
[dev-dependencies]
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] }
anyhow = "1.0.37"
cap-async-std = { path = "cap-async-std", version = "3.4.0" }
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.0" }
cap-net-ext = { path = "cap-net-ext", version = "3.4.0" }
cap-directories = { path = "cap-directories", version = "3.4.0" }
cap-std = { path = "cap-std", version = "3.4.0" }
cap-tempfile = { path = "cap-tempfile", version = "3.4.0" }
cap-rand = { path = "cap-rand", version = "3.4.0" }
cap-async-std = { path = "cap-async-std", version = "3.4.1" }
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.1" }
cap-net-ext = { path = "cap-net-ext", version = "3.4.1" }
cap-directories = { path = "cap-directories", version = "3.4.1" }
cap-std = { path = "cap-std", version = "3.4.1" }
cap-tempfile = { path = "cap-tempfile", version = "3.4.1" }
cap-rand = { path = "cap-rand", version = "3.4.1" }
rand = "0.8.1"
tempfile = "3.1.0"
camino = "1.0.5"
Expand Down
4 changes: 2 additions & 2 deletions cap-async-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cap-async-std"
version = "3.4.0"
version = "3.4.1"
description = "Capability-based version of async-std"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -15,7 +15,7 @@ edition = "2021"
[dependencies]
arf-strings = { version = "0.7.0", optional = true }
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] }
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
io-lifetimes = { version = "2.0.0", default-features = false, features = ["async-std"] }
io-extras = { version = "0.18.3", features = ["use_async_std"] }
camino = { version = "1.0.5", optional = true }
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 = "3.4.0"
version = "3.4.1"
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 = "^3.4.0" }
cap-std = { path = "../cap-std", version = "^3.4.1" }
directories-next = "2.0.0"

[target.'cfg(not(windows))'.dependencies]
Expand Down
8 changes: 4 additions & 4 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 = "3.4.0"
version = "3.4.1"
description = "Extension traits for `Dir`, `File`, etc."
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -14,9 +14,9 @@ edition = "2021"

[dependencies]
arf-strings = { version = "0.7.0", optional = true }
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.0" }
cap-std = { path = "../cap-std", optional = true, version = "3.4.0" }
cap-primitives = { path = "../cap-primitives", version = "3.4.0" }
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.1" }
cap-std = { path = "../cap-std", optional = true, version = "3.4.1" }
cap-primitives = { path = "../cap-primitives", version = "3.4.1" }
io-lifetimes = { version = "2.0.0", default-features = false }
async-std = { version = "1.13.0", features = ["io_safety", "attributes"], optional = true }
async-trait = { version = "0.1.42", 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 = "3.4.0"
version = "3.4.1"
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 = "^3.4.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
cap-std = { path = "../cap-std", version = "^3.4.1" }
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
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 = "3.4.0"
version = "3.4.1"
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 = "3.4.0"
version = "3.4.1"
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 = "3.4.0"
version = "3.4.1"
description = "Capability-based version of the Rust standard library"
authors = [
"Dan Gohman <dev@sunfishcode.online>",
Expand All @@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=docsrs"]

[dependencies]
arf-strings = { version = "0.7.0", optional = true }
cap-primitives = { path = "../cap-primitives", version = "^3.4.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
io-extras = "0.18.3"
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 = "3.4.0"
version = "3.4.1"
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 = "^3.4.0" }
cap-std = { path = "../cap-std", version = "^3.4.1" }
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 = "3.4.0"
version = "3.4.1"
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 = "^3.4.0" }
cap-std = { path = "../cap-std", optional = true, version = "^3.4.0" }
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" }
cap-std = { path = "../cap-std", optional = true, version = "^3.4.1" }
iana-time-zone = "0.1.57"

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

0 comments on commit c461c07

Please sign in to comment.