Skip to content

Commit

Permalink
Release Wasmtime 0.38.2 (#4482)
Browse files Browse the repository at this point in the history
* Release Wasmtime 0.38.2

[automatically-tag-and-release-this-commit]

* Add release notes

Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
Co-authored-by: Alex Crichton <alex@alexcrichton.com>
  • Loading branch information
3 people committed Jul 20, 2022
1 parent 6b639dd commit 486c88b
Show file tree
Hide file tree
Showing 44 changed files with 198 additions and 184 deletions.
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.1"
version = "0.38.2"
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.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 }
wasmtime = { path = "crates/wasmtime", version = "0.38.2", default-features = false, features = ['cache', 'cranelift'] }
wasmtime-cache = { path = "crates/cache", version = "=0.38.2" }
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=0.38.2" }
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.38.2" }
wasmtime-environ = { path = "crates/environ", version = "=0.38.2" }
wasmtime-wast = { path = "crates/wast", version = "=0.38.2" }
wasmtime-wasi = { path = "crates/wasi", version = "0.38.2" }
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.38.2", optional = true }
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.38.2", 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.1" }
wasmtime = { path = "crates/wasmtime", version = "0.38.2" }
env_logger = "0.9.0"
filecheck = "0.5.0"
more-asserts = "0.2.1"
Expand Down
14 changes: 14 additions & 0 deletions RELEASES.md
@@ -1,5 +1,19 @@
--------------------------------------------------------------------------------

## 0.38.2

Released 2022-07-20.

### Fixed.

* A miscompilation when handling constant divisors on AArch64 has been fixed.
[CVE-2022-31169](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-7f6x-jwh5-m9r4)

* A use-after-free possible with accidentally missing stack maps has been fixed.
[CVE-2022-31146](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-5fhj-g3p3-pq9g)

--------------------------------------------------------------------------------

## 0.38.1

Released 2022-06-27.
Expand Down

0 comments on commit 486c88b

Please sign in to comment.