Skip to content

Commit 771014d

Browse files
committed
Bumped v0.x crate version
1 parent ae8de84 commit 771014d

File tree

13 files changed

+43
-43
lines changed

13 files changed

+43
-43
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ wasmer-compiler-cranelift = { version = "=4.1.2", path = "lib/compiler-cranelift
2020
wasmer-compiler-singlepass = { version = "=4.1.2", path = "lib/compiler-singlepass", optional = true }
2121
wasmer-compiler-llvm = { version = "=4.1.2", path = "lib/compiler-llvm", optional = true }
2222
wasmer-emscripten = { version = "=4.1.2", path = "lib/emscripten", optional = true }
23-
wasmer-wasix = { version = "0.11.0", path = "lib/wasix", optional = true }
23+
wasmer-wasix = { version = "0.12.0", path = "lib/wasix", optional = true }
2424
wasmer-wast = { version = "=4.1.2", path = "tests/lib/wast", optional = true }
2525
wasi-test-generator = { version = "=4.1.2", path = "tests/wasi-wast", optional = true }
2626
wasmer-cache = { version = "=4.1.2", path = "lib/cache", optional = true }

lib/c-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ wasmer-compiler-singlepass = { version = "=4.1.2", path = "../compiler-singlepas
3232
wasmer-emscripten = { version = "=4.1.2", path = "../emscripten", optional = true }
3333
wasmer-middlewares = { version = "=4.1.2", path = "../middlewares", optional = true }
3434
wasmer-types = { version = "=4.1.2", path = "../types" }
35-
wasmer-wasix = { version = "0.11.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
35+
wasmer-wasix = { version = "0.12.0", path = "../wasix", features = ["host-fs", "host-vnet"], optional = true }
3636
webc = { version = "5.0", optional = true }
3737
virtual-fs = { version = "0.8.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
3838
enumset = "1.0.2"

lib/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ wasmer-compiler-singlepass = { version = "=4.1.2", path = "../compiler-singlepas
3636
wasmer-compiler-llvm = { version = "=4.1.2", path = "../compiler-llvm", optional = true }
3737
wasmer-emscripten = { version = "=4.1.2", path = "../emscripten" }
3838
wasmer-vm = { version = "=4.1.2", path = "../vm", optional = true }
39-
wasmer-wasix = { version = "0.11.0", path = "../wasix", features = [
39+
wasmer-wasix = { version = "0.12.0", path = "../wasix", features = [
4040
"logging",
4141
"webc_runner_rt_wcgi",
4242
"webc_runner_rt_emscripten",
4343
"host-fs",
4444
] }
45-
wasmer-wasix-experimental-io-devices = { version = "0.11.0", path = "../wasi-experimental-io-devices", optional = true, features = [
45+
wasmer-wasix-experimental-io-devices = { version = "0.12.0", path = "../wasi-experimental-io-devices", optional = true, features = [
4646
"link_external_libs",
4747
] }
4848
wasmer-wast = { version = "=4.1.2", path = "../../tests/lib/wast", optional = true }
@@ -52,7 +52,7 @@ wasmer-cache = { version = "=4.1.2", path = "../cache", features = [
5252
wasmer-types = { version = "=4.1.2", path = "../types", features = [
5353
"enable-serde",
5454
] }
55-
wasmer-registry = { version = "5.4.0", path = "../registry", features = [
55+
wasmer-registry = { version = "5.5.0", path = "../registry", features = [
5656
"build-package",
5757
"clap",
5858
] }

lib/registry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-registry"
3-
version = "5.4.0"
3+
version = "5.5.0"
44
description = "Crate to interact with the wasmer registry, download packages, etc."
55
authors.workspace = true
66
edition.workspace = true

lib/sys-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-sys-utils"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Wasmer utilities for a sys environment."
55
categories = ["wasm"]
66
keywords = ["wasm", "webassembly"]
@@ -22,7 +22,7 @@ tracing = "0.1.37"
2222
libc = { version = "^0.2", default-features = false }
2323

2424
[dev-dependencies]
25-
wasmer-wasix = { path = "../wasix", version = "0.11.0" }
25+
wasmer-wasix = { path = "../wasix", version = "0.12.0" }
2626
wasmer = { path = "../api", version = "=4.1.2", default-features = false, features = ["sys", "compiler", "cranelift"] }
2727
tracing-subscriber = { version = "0.3.16", features = ["fmt"] }
2828
tracing = "0.1.37"

lib/wai-bindgen-wasmer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wai-bindgen-wasmer"
33
description = "Generate WAI glue for a Rust Wasmer host"
4-
version = "0.11.0"
4+
version = "0.12.0"
55
categories = ["wasm", "os"]
66
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]
77
readme = "README.md"

lib/wasi-experimental-io-devices/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-wasix-experimental-io-devices"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "An experimental non-standard WASI/WASIX extension for graphics"
55
categories = ["wasm"]
66
keywords = ["wasm", "webassembly", "types"]
@@ -17,8 +17,8 @@ maintenance = { status = "experimental" }
1717

1818
[dependencies]
1919
wasmer = { version = "4.1.2", path = "../api", default-features=false }
20-
wasmer-wasix = { version = "0.11.0", path = "../wasix", default-features=false }
21-
wasmer-wasix-types = { path = "../wasi-types", version = "0.11.0" }
20+
wasmer-wasix = { version = "0.12.0", path = "../wasix", default-features=false }
21+
wasmer-wasix-types = { path = "../wasi-types", version = "0.12.0" }
2222
tracing = "0.1"
2323
minifb = { version = "0.24.0", optional = true }
2424
nix = "0.25.0"

lib/wasi-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-wasix-types"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "WASI and WASIX types for Wasmer WebAssembly runtime"
55
categories = ["wasm", "os"]
66
keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"]

lib/wasi-web/Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)