Skip to content

Commit 35eb605

Browse files
authored
Preprare Wasmi v0.38.0 release (#1226)
* add changelog for v0.38.0 * bump Wasmi crate versions to v0.38.0
1 parent 7f3cf05 commit 35eb605

File tree

3 files changed

+40
-23
lines changed

3 files changed

+40
-23
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ 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.38.0`] - 2024-10-06
12+
13+
### Added
14+
15+
- Add `no-hash-maps` crate feature to Wasmi CLI and enable it by default. [#1225]
16+
17+
### Internal
18+
19+
- Rename various instructions and add `ShiftAmount` abstraction. [#1221]
20+
- Use Rust's `ControlFlow` utility. [#1223]
21+
- Use `get_memory` in `load` and `store` execution handlers. [#1224]
22+
23+
[#1221]: https://github.com/wasmi-labs/wasmi/pull/1221
24+
[#1223]: https://github.com/wasmi-labs/wasmi/pull/1223
25+
[#1224]: https://github.com/wasmi-labs/wasmi/pull/1224
26+
[#1225]: https://github.com/wasmi-labs/wasmi/pull/1225
27+
1128
## [`0.37.2`] - 2024-10-04
1229

1330
### Added

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resolver = "2"
1616
[workspace.package]
1717
authors = ["Robin Freyler <[email protected]>"]
1818
repository = "https://github.com/wasmi-labs/wasmi"
19-
version = "0.37.2"
19+
version = "0.38.0"
2020
rust-version = "1.79"
2121
edition = "2021"
2222
readme = "README.md"
@@ -26,13 +26,13 @@ categories = ["wasm", "no-std", "virtualization"]
2626
exclude = ["tests"]
2727

2828
[workspace.dependencies]
29-
wasmi = { version = "0.37.2", path = "crates/wasmi", default-features = false }
30-
wasmi_wasi = { version = "0.37.2", path = "crates/wasi", default-features = false }
31-
wasmi_core = { version = "0.37.2", path = "crates/core", default-features = false }
32-
wasmi_ir = { version = "0.37.2", path = "crates/ir", default-features = false }
33-
wasmi_collections = { version = "0.37.2", path = "crates/collections", default-features = false }
34-
wasmi_c_api_impl = { version = "0.37.2", path = "crates/c_api" }
35-
wasmi_c_api_macros = { version = "0.37.2", path = "crates/c_api/macro" }
29+
wasmi = { version = "0.38.0", path = "crates/wasmi", default-features = false }
30+
wasmi_wasi = { version = "0.38.0", path = "crates/wasi", default-features = false }
31+
wasmi_core = { version = "0.38.0", path = "crates/core", default-features = false }
32+
wasmi_ir = { version = "0.38.0", path = "crates/ir", default-features = false }
33+
wasmi_collections = { version = "0.38.0", path = "crates/collections", default-features = false }
34+
wasmi_c_api_impl = { version = "0.38.0", path = "crates/c_api" }
35+
wasmi_c_api_macros = { version = "0.38.0", path = "crates/c_api/macro" }
3636
num-traits = { version = "0.2.8", default-features = false }
3737

3838
[profile.bench]

0 commit comments

Comments
 (0)