Skip to content

Commit 50ac767

Browse files
authored
Prepare release for Wasmi v0.46.0 (#1510)
* bump Wasmi crate versions * add changelog for Wasmi v0.46.0
1 parent c728414 commit 50ac767

File tree

3 files changed

+45
-29
lines changed

3 files changed

+45
-29
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@ 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.46.0` - 2025-05-08
12+
13+
### Changed
14+
15+
- `Store<T>::new` no longer requires `T: 'static`. [#1507]
16+
- The `T: 'static` requirement was introduced in `v0.45.0` in [#1449].
17+
- Improve host function call performance. [#1506]
18+
19+
### Internal
20+
21+
- Updated dependencies. [#1509]
22+
23+
[#1506]: https://github.com/wasmi-labs/wasmi/pull/1506
24+
[#1507]: https://github.com/wasmi-labs/wasmi/pull/1507
25+
[#1509]: https://github.com/wasmi-labs/wasmi/pull/1509
26+
1127
## `0.45.0` - 2025-05-06
1228

1329
### Added

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.45.0"
21+
version = "0.46.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.45.0", path = "crates/wasmi", default-features = false }
34-
wasmi_wasi = { version = "0.45.0", path = "crates/wasi", default-features = false }
35-
wasmi_core = { version = "0.45.0", path = "crates/core", default-features = false }
36-
wasmi_ir = { version = "0.45.0", path = "crates/ir", default-features = false }
37-
wasmi_collections = { version = "0.45.0", path = "crates/collections", default-features = false }
38-
wasmi_c_api_impl = { version = "0.45.0", path = "crates/c_api" }
39-
wasmi_c_api_macros = { version = "0.45.0", path = "crates/c_api/macro" }
40-
wasmi_fuzz = { version = "0.45.0", path = "crates/fuzz" }
41-
wasmi_wast = { version = "0.45.0", path = "crates/wast" }
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" }
4242

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

0 commit comments

Comments
 (0)