Skip to content

Commit 5790d22

Browse files
committed
Release 5.1.0
1 parent 3903d4f commit 5790d22

File tree

28 files changed

+87
-87
lines changed

28 files changed

+87
-87
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ rust-version.workspace = true
1212
version.workspace = true
1313

1414
[dependencies]
15-
wasmer = { version = "=5.0.1", path = "lib/api", default-features = false }
16-
wasmer-compiler = { version = "=5.0.1", path = "lib/compiler", features = [
15+
wasmer = { version = "=5.1.0", path = "lib/api", default-features = false }
16+
wasmer-compiler = { version = "=5.1.0", path = "lib/compiler", features = [
1717
"compiler",
1818
], optional = true }
19-
wasmer-compiler-cranelift = { version = "=5.0.1", path = "lib/compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "=5.0.1", path = "lib/compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "=5.0.1", path = "lib/compiler-llvm", optional = true }
19+
wasmer-compiler-cranelift = { version = "=5.1.0", path = "lib/compiler-cranelift", optional = true }
20+
wasmer-compiler-singlepass = { version = "=5.1.0", path = "lib/compiler-singlepass", optional = true }
21+
wasmer-compiler-llvm = { version = "=5.1.0", path = "lib/compiler-llvm", optional = true }
2222
wasmer-wasix = { path = "lib/wasix", optional = true }
23-
wasmer-wast = { version = "=5.0.1", path = "tests/lib/wast", optional = true }
24-
wasi-test-generator = { version = "=5.0.1", path = "tests/wasi-wast", optional = true }
25-
wasmer-cache = { version = "=5.0.1", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "=5.0.1", path = "lib/types" }
27-
wasmer-middlewares = { version = "=5.0.1", path = "lib/middlewares", optional = true }
23+
wasmer-wast = { version = "=5.1.0", path = "tests/lib/wast", optional = true }
24+
wasi-test-generator = { version = "=5.1.0", path = "tests/wasi-wast", optional = true }
25+
wasmer-cache = { version = "=5.1.0", path = "lib/cache", optional = true }
26+
wasmer-types = { version = "=5.1.0", path = "lib/types" }
27+
wasmer-middlewares = { version = "=5.1.0", path = "lib/middlewares", optional = true }
2828

2929
# Third party dependencies
3030
cfg-if = "1.0"
@@ -83,7 +83,7 @@ homepage = "https://wasmer.io/"
8383
license = "MIT"
8484
repository = "https://github.com/wasmerio/wasmer"
8585
rust-version = "1.81"
86-
version = "5.0.1"
86+
version = "5.1.0"
8787

8888
[workspace.dependencies]
8989
# Repo-local crates
@@ -132,7 +132,7 @@ glob = "0.3"
132132
rustc_version = "0.4"
133133

134134
[dev-dependencies]
135-
wasmer = { version = "=5.0.1", path = "lib/api", features = [
135+
wasmer = { version = "=5.1.0", path = "lib/api", features = [
136136
"compiler",
137137
"singlepass",
138138
"sys",

lib/api/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ loupe = { version = "0.1.3", optional = true, features = [
5050
# Dependencies and Development Dependencies for `sys`.
5151
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
5252
# - Mandatory dependencies for `sys`.
53-
wasmer-vm = { path = "../vm", version = "=5.0.1" }
54-
wasmer-compiler = { path = "../compiler", version = "=5.0.1" }
55-
wasmer-derive = { path = "../derive", version = "=5.0.1" }
56-
wasmer-types = { path = "../types", version = "=5.0.1" }
53+
wasmer-vm = { path = "../vm", version = "=5.1.0" }
54+
wasmer-compiler = { path = "../compiler", version = "=5.1.0" }
55+
wasmer-derive = { path = "../derive", version = "=5.1.0" }
56+
wasmer-types = { path = "../types", version = "=5.1.0" }
5757
target-lexicon = { version = "0.12.2", default-features = false }
5858
# - Optional dependencies for `sys`.
59-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.1", optional = true }
60-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.1", optional = true }
61-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.1", optional = true }
59+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.1.0", optional = true }
60+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.1.0", optional = true }
61+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.1.0", optional = true }
6262

6363
wasm-bindgen = { version = "0.2.74", optional = true }
6464
js-sys = { version = "0.3.51", optional = true }
@@ -73,17 +73,17 @@ windows-sys = "0.59"
7373
wat = "1.0"
7474
tempfile = "3.6.0"
7575
anyhow = "1.0"
76-
macro-wasmer-universal-test = { version = "5.0.1", path = "./macro-wasmer-universal-test" }
76+
macro-wasmer-universal-test = { version = "5.1.0", path = "./macro-wasmer-universal-test" }
7777

7878
# Dependencies and Develoment Dependencies for `js`.
7979
[target.'cfg(target_arch = "wasm32")'.dependencies]
8080
# - Mandatory dependencies for `js`.
81-
wasmer-types = { path = "../types", version = "=5.0.1", default-features = false, features = [
81+
wasmer-types = { path = "../types", version = "=5.1.0", default-features = false, features = [
8282
"std",
8383
] }
8484
wasm-bindgen = "0.2.74"
8585
js-sys = "0.3.51"
86-
wasmer-derive = { path = "../derive", version = "=5.0.1" }
86+
wasmer-derive = { path = "../derive", version = "=5.1.0" }
8787
# - Optional dependencies for `js`.
8888
wasmparser = { workspace = true, default-features = false, optional = true }
8989
hashbrown = { version = "0.11", optional = true }
@@ -96,7 +96,7 @@ target-lexicon = { workspace = true }
9696
wat = "1.0"
9797
anyhow = "1.0"
9898
wasm-bindgen-test = "0.3.0"
99-
macro-wasmer-universal-test = { version = "5.0.1", path = "./macro-wasmer-universal-test" }
99+
macro-wasmer-universal-test = { version = "5.1.0", path = "./macro-wasmer-universal-test" }
100100

101101
# Specific to `js`.
102102
#

lib/api/macro-wasmer-universal-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro-wasmer-universal-test"
3-
version = "5.0.1"
3+
version = "5.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Universal test macro for wasmer-test"

lib/c-api/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"]
2424
[dependencies]
2525
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
2626
# library name (see `[lib]`).
27-
wasmer-api = { version = "=5.0.1", path = "../api", default-features = false, package = "wasmer" }
28-
wasmer-compiler = { version = "=5.0.1", path = "../compiler", optional = true }
29-
wasmer-compiler-cranelift = { version = "=5.0.1", path = "../compiler-cranelift", optional = true }
30-
wasmer-compiler-llvm = { version = "=5.0.1", path = "../compiler-llvm", optional = true }
31-
wasmer-compiler-singlepass = { version = "=5.0.1", path = "../compiler-singlepass", optional = true }
32-
wasmer-middlewares = { version = "=5.0.1", path = "../middlewares", optional = true }
33-
wasmer-types = { version = "=5.0.1", path = "../types" }
27+
wasmer-api = { version = "=5.1.0", path = "../api", default-features = false, package = "wasmer" }
28+
wasmer-compiler = { version = "=5.1.0", path = "../compiler", optional = true }
29+
wasmer-compiler-cranelift = { version = "=5.1.0", path = "../compiler-cranelift", optional = true }
30+
wasmer-compiler-llvm = { version = "=5.1.0", path = "../compiler-llvm", optional = true }
31+
wasmer-compiler-singlepass = { version = "=5.1.0", path = "../compiler-singlepass", optional = true }
32+
wasmer-middlewares = { version = "=5.1.0", path = "../middlewares", optional = true }
33+
wasmer-types = { version = "=5.1.0", path = "../types" }
3434
wasmer-wasix = { path = "../wasix", version="=0.31.0", features = ["host-fs", "host-vnet"], optional = true }
3535
webc = { workspace = true, optional = true }
3636
virtual-fs = { version = "0.19.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }

lib/c-api/examples/wasmer-capi-examples-runner/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-capi-examples-runner"
3-
version = "5.0.1"
3+
version = "5.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-capi-examples-runner"

lib/c-api/tests/wasmer-c-api-test-runner/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-c-api-test-runner"
3-
version = "5.0.1"
3+
version = "5.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-c-api-test-runner"

lib/cache/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313
version.workspace = true
1414

1515
[dependencies]
16-
wasmer = { path = "../api", version = "=5.0.1", default-features = false }
16+
wasmer = { path = "../api", version = "=5.1.0", default-features = false }
1717
hex = "0.4"
1818
thiserror = "1"
1919
blake3 = "1.0"
@@ -26,8 +26,8 @@ clap_derive = { version = "=4.4.7" }
2626
clap_lex = { version = "=0.6.0" }
2727
tempfile = "3.6.0"
2828
rand = "0.8.3"
29-
wasmer = { path = "../api", version = "=5.0.1", default-features = false, features = ["sys", "cranelift"] }
30-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.1" }
29+
wasmer = { path = "../api", version = "=5.1.0", default-features = false, features = ["sys", "cranelift"] }
30+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.1.0" }
3131

3232
[features]
3333
default = ["filesystem"]

lib/cli-compiler/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ path = "src/bin/wasmer_compiler.rs"
2020
doc = false
2121

2222
[dependencies]
23-
wasmer-compiler = { version = "=5.0.1", path = "../compiler", features = [
23+
wasmer-compiler = { version = "=5.1.0", path = "../compiler", features = [
2424
"compiler",
2525
] }
26-
wasmer-types = { version = "=5.0.1", path = "../types" }
26+
wasmer-types = { version = "=5.1.0", path = "../types" }
2727
is-terminal = "0.4.7"
2828
colored = "2.0"
2929
anyhow = "1.0"
@@ -38,15 +38,15 @@ log = { version = "0.4", optional = true }
3838
target-lexicon = { version = "0.12", features = ["std"] }
3939

4040
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
41-
wasmer-compiler-singlepass = { version = "=5.0.1", path = "../compiler-singlepass", optional = true }
42-
wasmer-compiler-cranelift = { version = "=5.0.1", path = "../compiler-cranelift", optional = true }
41+
wasmer-compiler-singlepass = { version = "=5.1.0", path = "../compiler-singlepass", optional = true }
42+
wasmer-compiler-cranelift = { version = "=5.1.0", path = "../compiler-cranelift", optional = true }
4343
clap = { version = "4.4.0", features = ["derive", "env"] }
4444

4545
[target.'cfg(target_arch = "wasm32")'.dependencies]
46-
wasmer-compiler-singlepass = { version = "=5.0.1", path = "../compiler-singlepass", optional = true, default-features = false, features = [
46+
wasmer-compiler-singlepass = { version = "=5.1.0", path = "../compiler-singlepass", optional = true, default-features = false, features = [
4747
"wasm",
4848
] }
49-
wasmer-compiler-cranelift = { version = "=5.0.1", path = "../compiler-cranelift", optional = true, default-features = false, features = [
49+
wasmer-compiler-cranelift = { version = "=5.1.0", path = "../compiler-cranelift", optional = true, default-features = false, features = [
5050
"wasm",
5151
] }
5252
# NOTE: Must use different features for clap because the "color" feature does not

lib/cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,16 @@ enable-serde = [
110110
[dependencies]
111111
# Repo-local dependencies.
112112

113-
wasmer = { version = "=5.0.1", path = "../api", default-features = false }
114-
wasmer-compiler = { version = "=5.0.1", path = "../compiler", features = [
113+
wasmer = { version = "=5.1.0", path = "../api", default-features = false }
114+
wasmer-compiler = { version = "=5.1.0", path = "../compiler", features = [
115115
"compiler",
116116
], optional = true }
117-
wasmer-compiler-cranelift = { version = "=5.0.1", path = "../compiler-cranelift", optional = true }
118-
wasmer-compiler-singlepass = { version = "=5.0.1", path = "../compiler-singlepass", optional = true }
119-
wasmer-compiler-llvm = { version = "=5.0.1", path = "../compiler-llvm", optional = true }
117+
wasmer-compiler-cranelift = { version = "=5.1.0", path = "../compiler-cranelift", optional = true }
118+
wasmer-compiler-singlepass = { version = "=5.1.0", path = "../compiler-singlepass", optional = true }
119+
wasmer-compiler-llvm = { version = "=5.1.0", path = "../compiler-llvm", optional = true }
120120
wasmer-package.workspace = true
121121

122-
wasmer-vm = { version = "=5.0.1", path = "../vm", optional = true }
122+
wasmer-vm = { version = "=5.1.0", path = "../vm", optional = true }
123123
wasmer-wasix = { path = "../wasix", version = "=0.31.0", features = [
124124
"logging",
125125
"webc_runner_rt_wcgi",
@@ -128,8 +128,8 @@ wasmer-wasix = { path = "../wasix", version = "=0.31.0", features = [
128128
"host-fs",
129129
"ctrlc",
130130
] }
131-
wasmer-wast = { version = "=5.0.1", path = "../../tests/lib/wast", optional = true }
132-
wasmer-types = { version = "=5.0.1", path = "../types", features = [
131+
wasmer-wast = { version = "=5.1.0", path = "../../tests/lib/wast", optional = true }
132+
wasmer-types = { version = "=5.1.0", path = "../types", features = [
133133
"enable-serde",
134134
] }
135135
virtual-fs = { version = "0.19.0", path = "../virtual-fs", default-features = false, features = [

lib/compiler-cranelift/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ rust-version.workspace = true
1414
version.workspace = true
1515

1616
[dependencies]
17-
wasmer-compiler = { path = "../compiler", version = "=5.0.1", features = [
17+
wasmer-compiler = { path = "../compiler", version = "=5.1.0", features = [
1818
"translator",
1919
"compiler",
2020
], default-features = false }
21-
wasmer-types = { path = "../types", version = "=5.0.1", default-features = false, features = [
21+
wasmer-types = { path = "../types", version = "=5.1.0", default-features = false, features = [
2222
"std",
2323
] }
2424
cranelift-entity = { version = "=0.110.2", default-features = false }

0 commit comments

Comments
 (0)