Skip to content

Commit

Permalink
Prepare release for Wasmi v0.34.0 (#1119)
Browse files Browse the repository at this point in the history
* update changelog for v0.34.0

* bump Wasmi crate versions
  • Loading branch information
Robbepop authored Jul 8, 2024
1 parent 68fa3b6 commit 3016673
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 14 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,42 @@ 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.34.0`] - 2024-07-08

### Added

- Allows Wasmi CLI to be installed with locked dependencies. ([#1096])
- This can be done as follows: `cargo install --locked wasmi_cli`

### Fixed

- Allow Wasm module instantiation in host functions called from Wasmi's executor. ([#1116])

### Changed

- Limit number of parameter and result types in `FuncType` to 1000, each. ([#1116])

### Dev. Note

- Significantly improved and Wasmi's CI and made it a lot faster.
- Multi PR effort: [#1098], [#1100], [#1104]
- Refactored and cleaned-up call based and Rust sourced Wasmi benchmarks.
- Call-based Benchmarks: [#1102], [#1113]
- Rust-sourced Benchmarks: [#1107], [#1108], [#1109], [#1111], [#1115]

[#1096]: https://github.com/wasmi-labs/wasmi/pull/1096
[#1098]: https://github.com/wasmi-labs/wasmi/pull/1098
[#1100]: https://github.com/wasmi-labs/wasmi/pull/1100
[#1102]: https://github.com/wasmi-labs/wasmi/pull/1102
[#1104]: https://github.com/wasmi-labs/wasmi/pull/1104
[#1107]: https://github.com/wasmi-labs/wasmi/pull/1107
[#1108]: https://github.com/wasmi-labs/wasmi/pull/1108
[#1109]: https://github.com/wasmi-labs/wasmi/pull/1109
[#1111]: https://github.com/wasmi-labs/wasmi/pull/1111
[#1113]: https://github.com/wasmi-labs/wasmi/pull/1113
[#1115]: https://github.com/wasmi-labs/wasmi/pull/1115
[#1116]: https://github.com/wasmi-labs/wasmi/pull/1116

## [`0.33.1`] - 2024-07-01

### Added
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

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

[workspace.dependencies]
wasmi = { version = "0.33.1", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.33.1", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.33.1", path = "crates/core", default-features = false }
wasmi_collections = { version = "0.33.1", path = "crates/collections", default-features = false }
wasmi = { version = "0.34.0", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.34.0", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.34.0", path = "crates/core", default-features = false }
wasmi_collections = { version = "0.34.0", path = "crates/collections", default-features = false }
num-traits = { version = "0.2.8", default-features = false }

[profile.bench]
Expand Down

0 comments on commit 3016673

Please sign in to comment.