Skip to content

Commit 81140c2

Browse files
authored
Prepare Wasmi v2.0.0-beta.6 release (#1974)
* bump Wasmi crate versions * write changelog for Wasmi v2.0.0-beta.6 * update changelog title
1 parent eddc193 commit 81140c2

3 files changed

Lines changed: 45 additions & 32 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Additionally we have an `Internal` section for changes that are of interest to d
88

99
Dates in this file are formattes as `YYYY-MM-DD`.
1010

11-
## Unreleased
11+
## `2.0.0-beta.6` - 2026-07-08
1212

1313
### Added
1414

@@ -20,7 +20,20 @@ Dates in this file are formattes as `YYYY-MM-DD`.
2020
- Enabling the `portable-dispatch` feature still takes precedence over `auto-dispatch`.
2121
- Feature added to the `wasmi`, `wasmi_cli`, `wasmi_c_api` and `wasmi_c_api_impl` crates.
2222

23+
### Fixed
24+
25+
- Fixed a bug that incorrectly pushed multiple results in unfused SIMD `load` operator translation. [#1969]
26+
- Fixed a bug in `fabs` + `fneg` fused translation. [#1970]
27+
- Fixed a bug that some SIMD `load` operators did not properly preserve a previous accumulator. [#1971]
28+
- Fixed a bug in `multi-value` Wasm `br_table` translation. [#1972]
29+
- Fixed reachability of a `debug_assert` in `fuse_cmp_branch`. [#1973]
30+
2331
[#1968]: https://github.com/wasmi-labs/wasmi/pull/1968
32+
[#1969]: https://github.com/wasmi-labs/wasmi/pull/1969
33+
[#1970]: https://github.com/wasmi-labs/wasmi/pull/1970
34+
[#1971]: https://github.com/wasmi-labs/wasmi/pull/1971
35+
[#1972]: https://github.com/wasmi-labs/wasmi/pull/1972
36+
[#1973]: https://github.com/wasmi-labs/wasmi/pull/1973
2437

2538
## `2.0.0-beta.5` - 2026-07-06
2639

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resolver = "2"
1818
[workspace.package]
1919
authors = ["Robin Freyler <robin.freyler@gmail.com>"]
2020
repository = "https://github.com/wasmi-labs/wasmi"
21-
version = "2.0.0-beta.5"
21+
version = "2.0.0-beta.6"
2222
rust-version = "1.86"
2323
edition = "2024"
2424
readme = "README.md"
@@ -30,15 +30,15 @@ exclude = ["tests"]
3030
[workspace.dependencies]
3131

3232
# Wasmi crates
33-
wasmi = { version = "2.0.0-beta.5", path = "crates/wasmi", default-features = false }
34-
wasmi_wasi = { version = "2.0.0-beta.5", path = "crates/wasi", default-features = false }
35-
wasmi_core = { version = "2.0.0-beta.5", path = "crates/core", default-features = false }
36-
wasmi_ir = { version = "2.0.0-beta.5", path = "crates/ir", default-features = false }
37-
wasmi_collections = { version = "2.0.0-beta.5", path = "crates/collections", default-features = false }
38-
wasmi_wast = { version = "2.0.0-beta.5", path = "crates/wast", default-features = false }
39-
wasmi_c_api_impl = { version = "2.0.0-beta.5", path = "crates/c_api", default-features = false }
40-
wasmi_c_api_macros = { version = "2.0.0-beta.5", path = "crates/c_api/macro" }
41-
wasmi_fuzz = { version = "2.0.0-beta.5", path = "crates/fuzz" }
33+
wasmi = { version = "2.0.0-beta.6", path = "crates/wasmi", default-features = false }
34+
wasmi_wasi = { version = "2.0.0-beta.6", path = "crates/wasi", default-features = false }
35+
wasmi_core = { version = "2.0.0-beta.6", path = "crates/core", default-features = false }
36+
wasmi_ir = { version = "2.0.0-beta.6", path = "crates/ir", default-features = false }
37+
wasmi_collections = { version = "2.0.0-beta.6", path = "crates/collections", default-features = false }
38+
wasmi_wast = { version = "2.0.0-beta.6", path = "crates/wast", default-features = false }
39+
wasmi_c_api_impl = { version = "2.0.0-beta.6", path = "crates/c_api", default-features = false }
40+
wasmi_c_api_macros = { version = "2.0.0-beta.6", path = "crates/c_api/macro" }
41+
wasmi_fuzz = { version = "2.0.0-beta.6", path = "crates/fuzz" }
4242

4343
# wasm-tools dependencies
4444
wat = { version = "1.228.0", default-features = false }

0 commit comments

Comments
 (0)