Skip to content

Commit

Permalink
Prepare Wasmi v0.33.1 release (#1095)
Browse files Browse the repository at this point in the history
* write changelog for v0.33.1

* bump Wasmi crate versions
  • Loading branch information
Robbepop authored Jul 1, 2024
1 parent 0df1722 commit 116e716
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ 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.33.1`] - 2024-07-01

### Added

- Added `Error` trait impls for all Wasmi error types impleemnting `Display`. (https://github.com/wasmi-labs/wasmi/pull/1089)
- Contributed by [kajacx](https://github.com/kajacx).

### Fixed

- Fixed compilation for Rust versions <1.78. (https://github.com/wasmi-labs/wasmi/pull/1093)
- Fixed nightly `clippy` warning about `map_err`. (https://github.com/wasmi-labs/wasmi/pull/1094)

## [`0.33.0`] - 2024-06-24

### Added
Expand Down
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.0"
version = "0.33.1"
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.0", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.33.0", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.33.0", path = "crates/core", default-features = false }
wasmi_collections = { version = "0.33.0", path = "crates/collections", default-features = false }
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 }
num-traits = { version = "0.2.8", default-features = false }

[profile.bench]
Expand Down

0 comments on commit 116e716

Please sign in to comment.