Skip to content

Commit

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

* fix changelog for v0.39.0

* bump Wasmi crate versions
  • Loading branch information
Robbepop authored Nov 6, 2024
1 parent 0500fda commit 68205d4
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 30 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ 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.39.1`] - 2024-11-06

### Fixed

- Fixed a bug when translating double negations in expression contexts. [#1293]

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

## [`0.39.0`] - 2024-11-04

### Added
Expand All @@ -25,12 +33,12 @@ Dates in this file are formattes as `YYYY-MM-DD`.

### Fixed

- Removed the `no-hash-maps` crate feature. [#1265]
- Fixed a bug in translation of fused `cmp+branch` instructions with huge offsets.
- This was fixed as a side product in [#1243].

### Removed

- Removed the `no-hash-maps` crate feature. [#1265]
- Removed some minor `wasmi` crate dependencies. [#1266] [#1267]
- This should improve compile times of the `wasmi` crate slightly.

Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resolver = "2"
[workspace.package]
authors = ["Robin Freyler <robin.freyler@gmail.com>"]
repository = "https://github.com/wasmi-labs/wasmi"
version = "0.39.0"
version = "0.39.1"
rust-version = "1.79"
edition = "2021"
readme = "README.md"
Expand All @@ -28,15 +28,15 @@ categories = ["wasm", "no-std", "virtualization"]
exclude = ["tests"]

[workspace.dependencies]
wasmi = { version = "0.39.0", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.39.0", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.39.0", path = "crates/core", default-features = false }
wasmi_ir = { version = "0.39.0", path = "crates/ir", default-features = false }
wasmi_collections = { version = "0.39.0", path = "crates/collections", default-features = false }
wasmi_c_api_impl = { version = "0.39.0", path = "crates/c_api" }
wasmi_c_api_macros = { version = "0.39.0", path = "crates/c_api/macro" }
wasmi_fuzz = { version = "0.39.0", path = "crates/fuzz" }
wasmi_wast = { version = "0.39.0", path = "crates/wast" }
wasmi = { version = "0.39.1", path = "crates/wasmi", default-features = false }
wasmi_wasi = { version = "0.39.1", path = "crates/wasi", default-features = false }
wasmi_core = { version = "0.39.1", path = "crates/core", default-features = false }
wasmi_ir = { version = "0.39.1", path = "crates/ir", default-features = false }
wasmi_collections = { version = "0.39.1", path = "crates/collections", default-features = false }
wasmi_c_api_impl = { version = "0.39.1", path = "crates/c_api" }
wasmi_c_api_macros = { version = "0.39.1", path = "crates/c_api/macro" }
wasmi_fuzz = { version = "0.39.1", path = "crates/fuzz" }
wasmi_wast = { version = "0.39.1", path = "crates/wast" }

[profile.bench]
lto = "fat"
Expand Down

0 comments on commit 68205d4

Please sign in to comment.