Skip to content

Commit 19db01a

Browse files
authored
Merge pull request #5221 from wasmerio/release-5.0.1
Release 5.0.1
2 parents af3dfdf + bda1951 commit 19db01a

File tree

31 files changed

+160
-133
lines changed

31 files changed

+160
-133
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,33 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
99

1010
## **Unreleased**
1111

12+
## 5.0.1 - 06/11/2024
13+
14+
This release adds LLVM support to MacOS ARM64 binaries and contains minor fixes and improvements.
15+
16+
## Added
17+
18+
- [#5220](https://github.com/wasmerio/wasmer/pull/5220) fix(ci): Move addition of `brew` libs to other step
19+
- [#5218](https://github.com/wasmerio/wasmer/pull/5218) fix(ci): Add `brew` libs to `RUSTFLAGS` in aarch64
20+
- [#5129](https://github.com/wasmerio/wasmer/pull/5129) Experimental: Add support for WASMI
21+
- [#5205](https://github.com/wasmerio/wasmer/pull/5205) Add LLVM to docs CI
22+
23+
## Changed
24+
25+
- [#5216](https://github.com/wasmerio/wasmer/pull/5216) Bump up webc version
26+
- [#5215](https://github.com/wasmerio/wasmer/pull/5215) Re-enable RISC-V
27+
- [#5194](https://github.com/wasmerio/wasmer/pull/5194) build: Update nix flake devshell for LLVM 18
28+
- [#5202](https://github.com/wasmerio/wasmer/pull/5202) chore: Remove `isle-in-source-tree` feature from `cranelift-codegen`
29+
30+
## Fixed
31+
32+
- [#5210](https://github.com/wasmerio/wasmer/pull/5210) Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations
33+
- [#5209](https://github.com/wasmerio/wasmer/pull/5209) Revert "Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations"
34+
- [#5207](https://github.com/wasmerio/wasmer/pull/5207) Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations
35+
- [#5203](https://github.com/wasmerio/wasmer/pull/5203) Fix the wasmer-swift crate build
36+
37+
38+
1239
## 5.0.0 - 29/10/2024
1340

1441
The main star of this release is the experimental support for three new backends: v8, wamr and wasmi. Also, many dependencies, namely LLVM, Cranelift, and rkyv are updated

Cargo.lock

+29-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+12-12
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.0", path = "lib/api", default-features = false }
16-
wasmer-compiler = { version = "=5.0.0", path = "lib/compiler", features = [
15+
wasmer = { version = "=5.0.1", path = "lib/api", default-features = false }
16+
wasmer-compiler = { version = "=5.0.1", path = "lib/compiler", features = [
1717
"compiler",
1818
], optional = true }
19-
wasmer-compiler-cranelift = { version = "=5.0.0", path = "lib/compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "=5.0.0", path = "lib/compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "=5.0.0", path = "lib/compiler-llvm", 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 }
2222
wasmer-wasix = { path = "lib/wasix", optional = true }
23-
wasmer-wast = { version = "=5.0.0", path = "tests/lib/wast", optional = true }
24-
wasi-test-generator = { version = "=5.0.0", path = "tests/wasi-wast", optional = true }
25-
wasmer-cache = { version = "=5.0.0", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "=5.0.0", path = "lib/types" }
27-
wasmer-middlewares = { version = "=5.0.0", path = "lib/middlewares", 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 }
2828

2929
# Third party dependencies
3030
cfg-if = "1.0"
@@ -84,7 +84,7 @@ homepage = "https://wasmer.io/"
8484
license = "MIT"
8585
repository = "https://github.com/wasmerio/wasmer"
8686
rust-version = "1.81"
87-
version = "5.0.0"
87+
version = "5.0.1"
8888

8989
[workspace.dependencies]
9090
# Repo-local crates
@@ -130,7 +130,7 @@ glob = "0.3"
130130
rustc_version = "0.4"
131131

132132
[dev-dependencies]
133-
wasmer = { version = "=5.0.0", path = "lib/api", features = [
133+
wasmer = { version = "=5.0.1", path = "lib/api", features = [
134134
"compiler",
135135
"singlepass",
136136
"sys",

lib/api/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ loupe = { version = "0.1.3", optional = true, features = [
5151
# Dependencies and Development Dependencies for `sys`.
5252
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
5353
# - Mandatory dependencies for `sys`.
54-
wasmer-vm = { path = "../vm", version = "=5.0.0" }
55-
wasmer-compiler = { path = "../compiler", version = "=5.0.0" }
56-
wasmer-derive = { path = "../derive", version = "=5.0.0" }
57-
wasmer-types = { path = "../types", version = "=5.0.0" }
54+
wasmer-vm = { path = "../vm", version = "=5.0.1" }
55+
wasmer-compiler = { path = "../compiler", version = "=5.0.1" }
56+
wasmer-derive = { path = "../derive", version = "=5.0.1" }
57+
wasmer-types = { path = "../types", version = "=5.0.1" }
5858
target-lexicon = { version = "0.12.2", default-features = false }
5959
# - Optional dependencies for `sys`.
60-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0", optional = true }
61-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0", optional = true }
62-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0", optional = true }
60+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.1", optional = true }
61+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.1", optional = true }
62+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.1", optional = true }
6363

6464
wasm-bindgen = { version = "0.2.74", optional = true }
6565
js-sys = { version = "0.3.51", optional = true }
@@ -74,17 +74,17 @@ windows-sys = "0.59"
7474
wat = "1.0"
7575
tempfile = "3.6.0"
7676
anyhow = "1.0"
77-
macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" }
77+
macro-wasmer-universal-test = { version = "5.0.1", path = "./macro-wasmer-universal-test" }
7878

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

101101
# Specific to `js`.
102102
#

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

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

0 commit comments

Comments
 (0)