Skip to content

Commit

Permalink
Merge pull request #5221 from wasmerio/release-5.0.1
Browse files Browse the repository at this point in the history
Release 5.0.1
  • Loading branch information
maminrayej authored Nov 6, 2024
2 parents af3dfdf + bda1951 commit 19db01a
Show file tree
Hide file tree
Showing 31 changed files with 160 additions and 133 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,33 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## **Unreleased**

## 5.0.1 - 06/11/2024

This release adds LLVM support to MacOS ARM64 binaries and contains minor fixes and improvements.

## Added

- [#5220](https://github.com/wasmerio/wasmer/pull/5220) fix(ci): Move addition of `brew` libs to other step
- [#5218](https://github.com/wasmerio/wasmer/pull/5218) fix(ci): Add `brew` libs to `RUSTFLAGS` in aarch64
- [#5129](https://github.com/wasmerio/wasmer/pull/5129) Experimental: Add support for WASMI
- [#5205](https://github.com/wasmerio/wasmer/pull/5205) Add LLVM to docs CI

## Changed

- [#5216](https://github.com/wasmerio/wasmer/pull/5216) Bump up webc version
- [#5215](https://github.com/wasmerio/wasmer/pull/5215) Re-enable RISC-V
- [#5194](https://github.com/wasmerio/wasmer/pull/5194) build: Update nix flake devshell for LLVM 18
- [#5202](https://github.com/wasmerio/wasmer/pull/5202) chore: Remove `isle-in-source-tree` feature from `cranelift-codegen`

## Fixed

- [#5210](https://github.com/wasmerio/wasmer/pull/5210) Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations
- [#5209](https://github.com/wasmerio/wasmer/pull/5209) Revert "Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations"
- [#5207](https://github.com/wasmerio/wasmer/pull/5207) Fix(LLVM): Implement the missing relocations on aarch64, fix SIMD operations
- [#5203](https://github.com/wasmerio/wasmer/pull/5203) Fix the wasmer-swift crate build



## 5.0.0 - 29/10/2024

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
Expand Down
58 changes: 29 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { version = "=5.0.0", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.0", path = "lib/compiler", features = [
wasmer = { version = "=5.0.1", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=5.0.1", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=5.0.0", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.0", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.0", path = "lib/compiler-llvm", optional = true }
wasmer-compiler-cranelift = { version = "=5.0.1", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=5.0.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=5.0.1", path = "lib/compiler-llvm", optional = true }
wasmer-wasix = { path = "lib/wasix", optional = true }
wasmer-wast = { version = "=5.0.0", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=5.0.0", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=5.0.0", path = "lib/cache", optional = true }
wasmer-types = { version = "=5.0.0", path = "lib/types" }
wasmer-middlewares = { version = "=5.0.0", path = "lib/middlewares", optional = true }
wasmer-wast = { version = "=5.0.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=5.0.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=5.0.1", path = "lib/cache", optional = true }
wasmer-types = { version = "=5.0.1", path = "lib/types" }
wasmer-middlewares = { version = "=5.0.1", path = "lib/middlewares", optional = true }

# Third party dependencies
cfg-if = "1.0"
Expand Down Expand Up @@ -84,7 +84,7 @@ homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.81"
version = "5.0.0"
version = "5.0.1"

[workspace.dependencies]
# Repo-local crates
Expand Down Expand Up @@ -130,7 +130,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=5.0.0", path = "lib/api", features = [
wasmer = { version = "=5.0.1", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
22 changes: 11 additions & 11 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ loupe = { version = "0.1.3", optional = true, features = [
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=5.0.0" }
wasmer-compiler = { path = "../compiler", version = "=5.0.0" }
wasmer-derive = { path = "../derive", version = "=5.0.0" }
wasmer-types = { path = "../types", version = "=5.0.0" }
wasmer-vm = { path = "../vm", version = "=5.0.1" }
wasmer-compiler = { path = "../compiler", version = "=5.0.1" }
wasmer-derive = { path = "../derive", version = "=5.0.1" }
wasmer-types = { path = "../types", version = "=5.0.1" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.1", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.1", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.1", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -74,17 +74,17 @@ windows-sys = "0.59"
wat = "1.0"
tempfile = "3.6.0"
anyhow = "1.0"
macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "5.0.1", path = "./macro-wasmer-universal-test" }

# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = [
wasmer-types = { path = "../types", version = "=5.0.1", default-features = false, features = [
"std",
] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "=5.0.0" }
wasmer-derive = { path = "../derive", version = "=5.0.1" }
# - Optional dependencies for `js`.
wasmparser = { workspace = true, default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand All @@ -96,7 +96,7 @@ serde = { version = "1.0", features = ["derive"] }
wat = "1.0"
anyhow = "1.0"
wasm-bindgen-test = "0.3.0"
macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "5.0.1", path = "./macro-wasmer-universal-test" }

# Specific to `js`.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/api/macro-wasmer-universal-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro-wasmer-universal-test"
version = "5.0.0"
version = "5.0.1"
edition = "2021"
license = "MIT"
description = "Universal test macro for wasmer-test"
Expand Down
Loading

0 comments on commit 19db01a

Please sign in to comment.