Skip to content

Commit

Permalink
Prepare release for Wasmi v0.37.2 (#1219)
Browse files Browse the repository at this point in the history
* add changelog for v0.36.4

* fix link for v0.36.4 changelog

* add changelog for v0.37.2

* bump Wasmi crate versions to v0.37.2
  • Loading branch information
Robbepop authored Oct 4, 2024
1 parent ad46b8b commit d22362a
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 23 deletions.
25 changes: 25 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.37.2`] - 2024-10-04

### Added

- Added a new `extra-checks` crate feature to the `wasmi` crate. [#1217]

- This improves unreachability checks in when `debug-assertions` or `extra-checks` are enabled.
- If `extra-checks` are disabled, some technically unnecessary runtime checks are no longer performed.
- Use `extra-checks` if your focus is on safety, disable if your focus is on performance.

### Fixed

- Fixed a bug in local preservation when translating Wasm `loop` control flow. [#1218]

[#1217]: https://github.com/wasmi-labs/wasmi/pull/1217
[#1218]: https://github.com/wasmi-labs/wasmi/pull/1218

## [`0.37.1`] - 2024-10-01

### Fixed
Expand Down Expand Up @@ -63,6 +80,14 @@ Dates in this file are formattes as `YYYY-MM-DD`.

[`wasmi_ir` crate]: https://crates.io/crates/wasmi_ir

## [`0.36.4`] - 2024-10-03

### Fixed

- Fixed a bug in local preservation when translating Wasm `loop` control flow. [#1218]

[#1218]: https://github.com/wasmi-labs/wasmi/pull/1218

## [`0.36.3`] - 2024-10-01

### Fixed
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.1"
version = "0.37.2"
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.1", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.37.1", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.37.1", path = "crates/core", default-features = false }
wasmi_ir = { version = "0.37.1", path = "crates/ir", default-features = false }
wasmi_collections = { version = "0.37.1", path = "crates/collections", default-features = false }
wasmi_c_api_impl = { version = "0.37.1", path = "crates/c_api" }
wasmi_c_api_macros = { version = "0.37.1", path = "crates/c_api/macro" }
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" }
num-traits = { version = "0.2.8", default-features = false }

[profile.bench]
Expand Down

0 comments on commit d22362a

Please sign in to comment.