Skip to content

Commit 1f55411

Browse files
authored
Merge pull request #5557 from wasmerio/release-6.0.1
Release 6.0.1
2 parents 8952197 + 521c2ab commit 1f55411

File tree

36 files changed

+189
-164
lines changed

36 files changed

+189
-164
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,31 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
88

99
## **Unreleased**
1010

11+
## 6.0.1 - 09/05/2025
12+
This patch release fixes an error in cached memory operations in LLVM, adds CLI
13+
commands to list databases tied to an app, and provides miscellaneous QoL
14+
improvements to LLVM and updates. It also fixes the build of Wasmer for
15+
linux-aarch64.
16+
17+
## Added
18+
19+
- [#5546](https://github.com/wasmerio/wasmer/pull/5546) feat(llvm): Add `asm_memory_buffer` to `LLVMCallbacks`
20+
- [#5548](https://github.com/wasmerio/wasmer/pull/5548) feat(llvm): Add the `debug_str` intrinsic function
21+
- [#5538](https://github.com/wasmerio/wasmer/pull/5538) feat(cli): Add "app database list" command
22+
23+
## Changed
24+
25+
- [#5553](https://github.com/wasmerio/wasmer/pull/5553) feat(singlepass): Update dynasm to 3.2.0
26+
27+
## Fixed
28+
29+
- [#5556](https://github.com/wasmerio/wasmer/pull/5556) ci: fix build of Wasmer on linux-aarch64
30+
- [#5555](https://github.com/wasmerio/wasmer/pull/5555) Fix docs build
31+
- [#5554](https://github.com/wasmerio/wasmer/pull/5554) fix(api): Misc fixes to compile with v8 when targeting aarch64-linux-android
32+
- [#5549](https://github.com/wasmerio/wasmer/pull/5549) fix(llvm): Correctly cache pointers to intrinsic memory operations
33+
34+
35+
1136
## 6.0.0 - 24/04/2025
1237

1338
This stable release adds support for the exception handling proposal on Linux

Cargo.lock

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

Cargo.toml

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

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

8888
[workspace.dependencies]
8989
# Repo-local crates
90-
wasmer-package = { version = "0.600.0", path = "lib/package" }
90+
wasmer-package = { version = "0.600.1", path = "lib/package" }
9191
wasmer-config = { path = "./lib/config" }
9292
wasmer-wasix = { path = "./lib/wasix" }
9393

@@ -135,7 +135,7 @@ glob = "0.3"
135135
rustc_version = "0.4"
136136

137137
[dev-dependencies]
138-
wasmer = { version = "=6.0.0", path = "lib/api", features = [
138+
wasmer = { version = "=6.0.1", path = "lib/api", features = [
139139
"compiler",
140140
"singlepass",
141141
"sys",

0 commit comments

Comments
 (0)