Skip to content

Commit bec7883

Browse files
authored
Prepare release for Wasmi v0.42 (#1388)
* bump Wasmi crate versions to v0.42 * add release notes for v0.42
1 parent 67ee4bd commit bec7883

File tree

3 files changed

+49
-29
lines changed

3 files changed

+49
-29
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ 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+
## [`0.42.0`] - 2025-03-11
12+
13+
### Added
14+
15+
- Added support for the Wasm `wide-arithmetic` proposal. [#1369]
16+
- The `wide-arithmetic` proposal is disabled by default in `wasmi`
17+
library and enabled by default in the Wasmi CLI.
18+
19+
### Changed
20+
21+
- Optimized memory accesses with a constant `ptr` value. [#1381]
22+
23+
### Internal
24+
25+
- Update `wasm-tools` dependencies from v226 to v227. [#1380]
26+
27+
[#1369]: https://github.com/wasmi-labs/wasmi/pull/1369
28+
[#1380]: https://github.com/wasmi-labs/wasmi/pull/1380
29+
[#1381]: https://github.com/wasmi-labs/wasmi/pull/1381
30+
1131
## [`0.41.1`] - 2025-03-11
1232

1333
### Fixed

Cargo.lock

Lines changed: 19 additions & 19 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 <[email protected]>"]
2020
repository = "https://github.com/wasmi-labs/wasmi"
21-
version = "0.41.0"
21+
version = "0.42.0"
2222
rust-version = "1.82"
2323
edition = "2021"
2424
readme = "README.md"
@@ -30,15 +30,15 @@ exclude = ["tests"]
3030
[workspace.dependencies]
3131

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

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

0 commit comments

Comments
 (0)