Skip to content

Commit

Permalink
Prepare for wasmi release v0.23.0 (#621)
Browse files Browse the repository at this point in the history
* update changelog

* bump versions
  • Loading branch information
Robbepop authored Jan 19, 2023
1 parent 591c767 commit 2972a15
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ Additionally we have an `Internal` section for changes that are of interest to d

Dates in this file are formattes as `YYYY-MM-DD`.

## [`x.y.z`] - UNRELEASED
## [`0.23.0`] - 2023-01-19

> **Note:** This is the Wasmtime API Compatibility update.
### Added

Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmi_core"
version = "0.7.0"
version = "0.8.0"
documentation = "https://docs.rs/wasmi_core"
description = "Core primitives for the wasmi WebAssembly interpreter"
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
wasi-common = "2.0"
wasi-cap-std-sync = "2.0"
wiggle = { version = "2.0", default-features = false, features = ["wiggle_metadata"] }
wasmi = { version = "0.22.0", path = "../wasmi" }
wasmi = { version = "0.23.0", path = "../wasmi" }

[dev-dependencies]
wat = "1.0.50"
4 changes: 2 additions & 2 deletions crates/wasmi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmi"
version = "0.22.0"
version = "0.23.0"
documentation = "https://docs.rs/wasmi/"
description = "WebAssembly interpreter"
exclude = ["tests/*", "benches/*"]
Expand All @@ -14,7 +14,7 @@ categories.workspace = true

[dependencies]
wasmparser = { version = "0.91", package = "wasmparser-nostd", default-features = false }
wasmi_core = { version = "0.7", path = "../core", default-features = false }
wasmi_core = { version = "0.8", path = "../core", default-features = false }
wasmi_arena = { version = "0.3", path = "../arena", default-features = false }
spin = { version = "0.9", default-features = false, features = [
"mutex",
Expand Down

0 comments on commit 2972a15

Please sign in to comment.