Skip to content

Commit

Permalink
Preprare Wasmi v0.38.0 release (#1226)
Browse files Browse the repository at this point in the history
* add changelog for v0.38.0

* bump Wasmi crate versions to v0.38.0
  • Loading branch information
Robbepop authored Oct 6, 2024
1 parent 7f3cf05 commit 35eb605
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 23 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ Additionally we have an `Internal` section for changes that are of interest to d

Dates in this file are formattes as `YYYY-MM-DD`.

## [`0.38.0`] - 2024-10-06

### Added

- Add `no-hash-maps` crate feature to Wasmi CLI and enable it by default. [#1225]

### Internal

- Rename various instructions and add `ShiftAmount` abstraction. [#1221]
- Use Rust's `ControlFlow` utility. [#1223]
- Use `get_memory` in `load` and `store` execution handlers. [#1224]

[#1221]: https://github.com/wasmi-labs/wasmi/pull/1221
[#1223]: https://github.com/wasmi-labs/wasmi/pull/1223
[#1224]: https://github.com/wasmi-labs/wasmi/pull/1224
[#1225]: https://github.com/wasmi-labs/wasmi/pull/1225

## [`0.37.2`] - 2024-10-04

### Added
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resolver = "2"
[workspace.package]
authors = ["Robin Freyler <[email protected]>"]
repository = "https://github.com/wasmi-labs/wasmi"
version = "0.37.2"
version = "0.38.0"
rust-version = "1.79"
edition = "2021"
readme = "README.md"
Expand All @@ -26,13 +26,13 @@ categories = ["wasm", "no-std", "virtualization"]
exclude = ["tests"]

[workspace.dependencies]
wasmi = { version = "0.37.2", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.37.2", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.37.2", path = "crates/core", default-features = false }
wasmi_ir = { version = "0.37.2", path = "crates/ir", default-features = false }
wasmi_collections = { version = "0.37.2", path = "crates/collections", default-features = false }
wasmi_c_api_impl = { version = "0.37.2", path = "crates/c_api" }
wasmi_c_api_macros = { version = "0.37.2", path = "crates/c_api/macro" }
wasmi = { version = "0.38.0", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.38.0", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.38.0", path = "crates/core", default-features = false }
wasmi_ir = { version = "0.38.0", path = "crates/ir", default-features = false }
wasmi_collections = { version = "0.38.0", path = "crates/collections", default-features = false }
wasmi_c_api_impl = { version = "0.38.0", path = "crates/c_api" }
wasmi_c_api_macros = { version = "0.38.0", path = "crates/c_api/macro" }
num-traits = { version = "0.2.8", default-features = false }

[profile.bench]
Expand Down

0 comments on commit 35eb605

Please sign in to comment.