From 116e716b1aaff52318f37139230715e7f495a8cf Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Mon, 1 Jul 2024 10:43:13 +0200 Subject: [PATCH] Prepare Wasmi `v0.33.1` release (#1095) * write changelog for v0.33.1 * bump Wasmi crate versions --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 10 +++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15349fe53e..10a04383f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 105a3bf2e0..4b334385ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ resolver = "2" [workspace.package] authors = ["Robin Freyler "] repository = "https://github.com/wasmi-labs/wasmi" -version = "0.33.0" +version = "0.33.1" rust-version = "1.77" edition = "2021" readme = "README.md" @@ -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]