Skip to content

Commit 572b76c

Browse files
authored
Prepare release for Wasmi v0.47 (#1529)
* bump Wasmi crate versions to v0.47.0 * add changelog for Wasmi v0.47.0
1 parent e6ea6e6 commit 572b76c

File tree

3 files changed

+47
-29
lines changed

3 files changed

+47
-29
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.47.0` - 2025-05-30
12+
13+
### Changed
14+
15+
- Remove the `downcast-rs` dependency from Wasmi crates. [#1517]
16+
- Bump the minimum supported Rust version (MSRV) to Rust 1.86. [#1518]
17+
- This change was necessitated by the removal of `downcast-rs`.
18+
19+
### Internal
20+
21+
- Lower `select` instructions more aggressively. [#1526]
22+
- This significantly reduced the number of different `select` instruction
23+
variants and thus might have positive affects on Wasmi's execution performance.
24+
25+
[#1517]: https://github.com/wasmi-labs/wasmi/pull/1517
26+
[#1518]: https://github.com/wasmi-labs/wasmi/pull/1518
27+
[#1526]: https://github.com/wasmi-labs/wasmi/pull/1526
28+
1129
## `0.46.0` - 2025-05-08
1230

1331
### Changed

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 <robin.freyler@gmail.com>"]
2020
repository = "https://github.com/wasmi-labs/wasmi"
21-
version = "0.46.0"
21+
version = "0.47.0"
2222
rust-version = "1.86"
2323
edition = "2021"
2424
readme = "README.md"
@@ -30,15 +30,15 @@ exclude = ["tests"]
3030
[workspace.dependencies]
3131

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

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

0 commit comments

Comments
 (0)