From 6684aa1b3aa61add54956f2a70e976cdbcee87a2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 16 Mar 2023 06:59:58 -0700 Subject: [PATCH] chore: Release --- Cargo.toml | 12 ++++++------ cap-directories/Cargo.toml | 4 ++-- cap-fs-ext/Cargo.toml | 6 +++--- cap-primitives/Cargo.toml | 2 +- cap-rand/Cargo.toml | 2 +- cap-std/Cargo.toml | 4 ++-- cap-tempfile/Cargo.toml | 4 ++-- cap-time-ext/Cargo.toml | 6 +++--- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 02214d8e..4061a83b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-std-workspace" -version = "1.0.5" +version = "1.0.6" description = "Capability-based version of the Rust standard library" authors = [ "Dan Gohman ", @@ -20,11 +20,11 @@ rust-version = "1.56" #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 = "^1.0.5" } -cap-directories = { path = "cap-directories", version = "^1.0.5" } -cap-std = { path = "cap-std", version = "^1.0.5" } -cap-tempfile = { path = "cap-tempfile", version = "^1.0.5" } -cap-rand = { path = "cap-rand", version = "^1.0.5" } +cap-fs-ext = { path = "cap-fs-ext", version = "^1.0.6" } +cap-directories = { path = "cap-directories", version = "^1.0.6" } +cap-std = { path = "cap-std", version = "^1.0.6" } +cap-tempfile = { path = "cap-tempfile", version = "^1.0.6" } +cap-rand = { path = "cap-rand", version = "^1.0.6" } rand = "0.8.1" tempfile = "3.1.0" camino = "1.0.5" diff --git a/cap-directories/Cargo.toml b/cap-directories/Cargo.toml index 6878cde5..640c63cb 100644 --- a/cap-directories/Cargo.toml +++ b/cap-directories/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-directories" -version = "1.0.5" +version = "1.0.6" description = "Capability-based standard directories for config, cache and other data" authors = [ "Dan Gohman ", @@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std" edition = "2018" [dependencies] -cap-std = { path = "../cap-std", version = "^1.0.5" } +cap-std = { path = "../cap-std", version = "^1.0.6" } directories-next = "2.0.0" [target.'cfg(not(windows))'.dependencies] diff --git a/cap-fs-ext/Cargo.toml b/cap-fs-ext/Cargo.toml index 9a8ec4f1..4eac2ef8 100644 --- a/cap-fs-ext/Cargo.toml +++ b/cap-fs-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-fs-ext" -version = "1.0.5" +version = "1.0.6" description = "Extension traits for `Dir`, `File`, etc." authors = [ "Dan Gohman ", @@ -15,8 +15,8 @@ edition = "2018" [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 = "^1.0.5" } -cap-primitives = { path = "../cap-primitives", version = "^1.0.5" } +cap-std = { path = "../cap-std", optional = true, version = "^1.0.6" } +cap-primitives = { path = "../cap-primitives", version = "^1.0.6" } io-lifetimes = { version = "1.0.0", default-features = false } # Enable "unstable" for `spawn_blocking`. #async-std = { version = "1.10.0", features = ["attributes", "unstable"], optional = true } diff --git a/cap-primitives/Cargo.toml b/cap-primitives/Cargo.toml index dcf69af9..8d15ac90 100644 --- a/cap-primitives/Cargo.toml +++ b/cap-primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-primitives" -version = "1.0.5" +version = "1.0.6" description = "Capability-based primitives" authors = [ "Dan Gohman ", diff --git a/cap-rand/Cargo.toml b/cap-rand/Cargo.toml index 548e4d55..26ed093b 100644 --- a/cap-rand/Cargo.toml +++ b/cap-rand/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-rand" -version = "1.0.5" +version = "1.0.6" description = "Capability-based random number generators" authors = [ "Dan Gohman ", diff --git a/cap-std/Cargo.toml b/cap-std/Cargo.toml index d20ba5c8..947f1fc7 100644 --- a/cap-std/Cargo.toml +++ b/cap-std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-std" -version = "1.0.5" +version = "1.0.6" description = "Capability-based version of the Rust standard library" authors = [ "Dan Gohman ", @@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=doc_cfg"] [dependencies] arf-strings = { version = "0.7.0", optional = true } -cap-primitives = { path = "../cap-primitives", version = "^1.0.5" } +cap-primitives = { path = "../cap-primitives", version = "^1.0.6" } ipnet = "2.3.0" io-extras = "0.17.0" io-lifetimes = { version = "1.0.0", default-features = false } diff --git a/cap-tempfile/Cargo.toml b/cap-tempfile/Cargo.toml index 80d162aa..77ece99d 100644 --- a/cap-tempfile/Cargo.toml +++ b/cap-tempfile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-tempfile" -version = "1.0.5" +version = "1.0.6" description = "Capability-based temporary directories" authors = [ "Dan Gohman ", @@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std" edition = "2018" [dependencies] -cap-std = { path = "../cap-std", version = "^1.0.5" } +cap-std = { path = "../cap-std", version = "^1.0.6" } uuid = { version = "1.0.0", features = ["v4"] } camino = { version = "1.0.5", optional = true } diff --git a/cap-time-ext/Cargo.toml b/cap-time-ext/Cargo.toml index 5e52302e..8e94ec54 100644 --- a/cap-time-ext/Cargo.toml +++ b/cap-time-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cap-time-ext" -version = "1.0.5" +version = "1.0.6" description = "Extension traits for `SystemClock` and `MonotonicClock`" authors = [ "Dan Gohman ", @@ -13,8 +13,8 @@ repository = "https://github.com/bytecodealliance/cap-std" edition = "2018" [dependencies] -cap-primitives = { path = "../cap-primitives", version = "^1.0.5" } -cap-std = { path = "../cap-std", optional = true, version = "^1.0.5" } +cap-primitives = { path = "../cap-primitives", version = "^1.0.6" } +cap-std = { path = "../cap-std", optional = true, version = "^1.0.6" } [target.'cfg(not(windows))'.dependencies] rustix = { version = "0.36.0", features = ["time"] }