Skip to content

Commit dedfcee

Browse files
authored
Prepare release for Wasmi v0.44.0 (#1446)
* bump Wasmi crate versions to v0.44.0 * add changelog for Wasmi v0.44.0 * update dependencies
1 parent 17bed8f commit dedfcee

File tree

3 files changed

+49
-31
lines changed

3 files changed

+49
-31
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ 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.44.0`] - 2025-03-29
12+
13+
### Added
14+
15+
- Add support for the Wasm `relaxed-simd` proposal. [#1443]
16+
- All `relaxed-simd` operators behave deterministically on all platforms supported by Wasmi.
17+
- Users have to enable the `simd` crate feature in order to use `relaxed-simd` capabilities.
18+
- Note that enabling the `simd` crate feature may regress Wasm execution and memory consumption
19+
performance.
20+
21+
### Changed
22+
23+
- Wasmi's CLI now prints multiple results on a new line each. [#1438]
24+
- With this change Wasmi's CLI and Wasmtime's CLI have the same behavior.
25+
26+
[#1438]: https://github.com/wasmi-labs/wasmi/pull/1438
27+
[#1443]: https://github.com/wasmi-labs/wasmi/pull/1443
28+
1129
## [`0.43.1`] - 2025-03-29
1230

1331
### Fixed

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 = "0.43.0"
21+
version = "0.44.0"
2222
rust-version = "1.83"
2323
edition = "2021"
2424
readme = "README.md"
@@ -30,15 +30,15 @@ exclude = ["tests"]
3030
[workspace.dependencies]
3131

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

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

0 commit comments

Comments
 (0)