Skip to content

Commit ff0c2be

Browse files
committed
Merge remote-tracking branch 'origin/release-5.1.0' into 5198-cli-support-wasm_c_api-backends-together-with-native-ones
2 parents 8785594 + 5790d22 commit ff0c2be

File tree

30 files changed

+118
-119
lines changed

30 files changed

+118
-119
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
1212
## 5.0.2 - 22/11/2024
1313

1414
This release mostly consists of bug fixes and clean ups.
15+
## 5.1.0 - 22/11/2024
1516

1617
## Added
1718

Cargo.lock

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

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.2", path = "lib/api", default-features = false }
16-
wasmer-compiler = { version = "=5.0.2", 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.2", path = "lib/compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "=5.0.2", path = "lib/compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "=5.0.2", 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.2", path = "tests/lib/wast", optional = true }
24-
wasi-test-generator = { version = "=5.0.2", path = "tests/wasi-wast", optional = true }
25-
wasmer-cache = { version = "=5.0.2", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "=5.0.2", path = "lib/types" }
27-
wasmer-middlewares = { version = "=5.0.2", 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.2"
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.2", 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 & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ derive_more = { version = "1.0.0", features = ["from", "debug"] }
5656
# Dependencies and Development Dependencies for `sys`.
5757
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
5858
# - Mandatory dependencies for `sys`.
59-
wasmer-vm = { path = "../vm", version = "=5.0.2" }
60-
wasmer-compiler = { path = "../compiler", version = "=5.0.2" }
61-
wasmer-derive = { path = "../derive", version = "=5.0.2" }
62-
wasmer-types = { path = "../types", version = "=5.0.2" }
59+
wasmer-vm = { path = "../vm", version = "=5.1.0" }
60+
wasmer-compiler = { path = "../compiler", version = "=5.1.0" }
61+
wasmer-derive = { path = "../derive", version = "=5.1.0" }
62+
wasmer-types = { path = "../types", version = "=5.1.0" }
6363
target-lexicon = { version = "0.12.2", default-features = false }
6464
# - Optional dependencies for `sys`.
65-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.2", optional = true }
66-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.2", optional = true }
67-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.2", optional = true }
65+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.1.0", optional = true }
66+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.1.0", optional = true }
67+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.1.0", optional = true }
6868

6969
wasm-bindgen = { version = "0.2.74", optional = true }
7070
js-sys = { version = "0.3.51", optional = true }
@@ -79,17 +79,17 @@ windows-sys = "0.59"
7979
wat = "1.0"
8080
tempfile = "3.6.0"
8181
anyhow = "1.0"
82-
macro-wasmer-universal-test = { version = "5.0.2", path = "./macro-wasmer-universal-test" }
82+
macro-wasmer-universal-test = { version = "5.1.0", path = "./macro-wasmer-universal-test" }
8383

8484
# Dependencies and Develoment Dependencies for `js`.
8585
[target.'cfg(target_arch = "wasm32")'.dependencies]
8686
# - Mandatory dependencies for `js`.
87-
wasmer-types = { path = "../types", version = "=5.0.2", default-features = false, features = [
87+
wasmer-types = { path = "../types", version = "=5.1.0", default-features = false, features = [
8888
"std",
8989
] }
9090
wasm-bindgen = "0.2.74"
9191
js-sys = "0.3.51"
92-
wasmer-derive = { path = "../derive", version = "=5.0.2" }
92+
wasmer-derive = { path = "../derive", version = "=5.1.0" }
9393
# - Optional dependencies for `js`.
9494
wasmparser = { workspace = true, default-features = false, optional = true }
9595
hashbrown = { version = "0.11", optional = true }
@@ -102,8 +102,7 @@ target-lexicon = { workspace = true }
102102
wat = "1.0"
103103
anyhow = "1.0"
104104
wasm-bindgen-test = "0.3.0"
105-
macro-wasmer-universal-test = { version = "5.0.2", path = "./macro-wasmer-universal-test" }
106-
105+
macro-wasmer-universal-test = { version = "5.1.0", path = "./macro-wasmer-universal-test" }
107106
# Specific to `js`.
108107
#
109108
# `wasm-opt` is on by default in for the release profile, but it can be

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.2"
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.2", path = "../api", default-features = false, package = "wasmer" }
28-
wasmer-compiler = { version = "=5.0.2", path = "../compiler", optional = true }
29-
wasmer-compiler-cranelift = { version = "=5.0.2", path = "../compiler-cranelift", optional = true }
30-
wasmer-compiler-llvm = { version = "=5.0.2", path = "../compiler-llvm", optional = true }
31-
wasmer-compiler-singlepass = { version = "=5.0.2", path = "../compiler-singlepass", optional = true }
32-
wasmer-middlewares = { version = "=5.0.2", path = "../middlewares", optional = true }
33-
wasmer-types = { version = "=5.0.2", 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.32.0", features = ["host-fs", "host-vnet"], optional = true }
3535
webc = { workspace = true, optional = true }
3636
virtual-fs = { version = "0.20.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-capi-examples-runner"
3-
version = "5.0.2"
3+
version = "5.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-capi-examples-runner"
@@ -9,4 +9,4 @@ description = "wasmer-capi-examples-runner"
99
cc = "1.0"
1010
target-lexicon = "0.11"
1111
regex = "1.6"
12-
walkdir = "2.3.2"
12+
walkdir = "2.3.2"
Lines changed: 2 additions & 2 deletions
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.2"
3+
version = "5.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-c-api-test-runner"
@@ -9,4 +9,4 @@ description = "wasmer-c-api-test-runner"
99
cc = "1.0"
1010
target-lexicon = "0.11"
1111
regex = "1.6"
12-
walkdir = "2.3.2"
12+
walkdir = "2.3.2"

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.2", 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.2", default-features = false, features = ["sys", "cranelift"] }
30-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.2" }
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"]

0 commit comments

Comments
 (0)