Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Wasmtime 0.38.1 #4339

Merged
merged 2 commits into from Jun 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
76 changes: 38 additions & 38 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-cli"
version = "0.38.0"
version = "0.38.1"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -21,15 +21,15 @@ path = "src/bin/wasmtime.rs"
doc = false

[dependencies]
wasmtime = { path = "crates/wasmtime", version = "0.38.0", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.38.0" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.38.0" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.38.0" }
wasmtime-environ = { path = "crates/environ", version = "=0.38.0" }
wasmtime-wast = { path = "crates/wast", version = "=0.38.0" }
wasmtime-wasi = { path = "crates/wasi", version = "0.38.0" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.38.0", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.38.0", optional = true }
wasmtime = { path = "crates/wasmtime", version = "0.38.1", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.38.1" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.38.1" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.38.1" }
wasmtime-environ = { path = "crates/environ", version = "=0.38.1" }
wasmtime-wast = { path = "crates/wast", version = "=0.38.1" }
wasmtime-wasi = { path = "crates/wasi", version = "0.38.1" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.38.1", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.38.1", optional = true }
clap = { version = "3.1.12", features = ["color", "suggestions", "derive"] }
anyhow = "1.0.19"
target-lexicon = { version = "0.12.0", default-features = false }
Expand All @@ -43,7 +43,7 @@ rustix = "0.33.7"

[dev-dependencies]
# depend again on wasmtime to activate its default features for tests
wasmtime = { path = "crates/wasmtime", version = "0.38.0" }
wasmtime = { path = "crates/wasmtime", version = "0.38.1" }
env_logger = "0.9.0"
filecheck = "0.5.0"
more-asserts = "0.2.1"
Expand Down
6 changes: 6 additions & 0 deletions RELEASES.md
Expand Up @@ -12,6 +12,12 @@ Released 2022-06-27.
impact should be possible for users of Cranelift via the Wasm frontend,
including Wasmtime.
[regalloc2#60](https://github.com/bytecodealliance/regalloc2/pull/60)
[#4333](https://github.com/bytecodealliance/wasmtime/pull/4333)

* Lowering bugs for the `i8x16.swizzle` and `select`-with-`v128`-inputs
instructions were fixed for the x86\_64 code generator. Note that aarch64 and
s390x are unaffected.
[#4334](https://github.com/bytecodealliance/wasmtime/pull/4334)

* A bug in the 8-bit lowering of integer division on x86-64 was fixed in
Cranelift that could cause a register allocator panic due to an undefined
Expand Down