Skip to content

Commit 5215c78

Browse files
wasmtime-publishPeter Huenealexcrichton
authored
Release Wasmtime 0.33.1 (#3813)
* Bump Wasmtime to 0.33.1 [automatically-tag-and-release-this-commit] * Update RELEASES for 0.33.1. * Try to fix CI for Rust 1.58 (#3689) PATH lookup for WIndows command execution was tweaked slightly to not search the cwd, so let's see if this fixes things... Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com> Co-authored-by: Peter Huene <phuene@fastly.com> Co-authored-by: Alex Crichton <alex@alexcrichton.com>
1 parent 7c678a6 commit 5215c78

43 files changed

Lines changed: 186 additions & 176 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-cli"
3-
version = "0.33.0"
3+
version = "0.33.1"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Command-line interface for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -21,14 +21,14 @@ path = "src/bin/wasmtime.rs"
2121
doc = false
2222

2323
[dependencies]
24-
wasmtime = { path = "crates/wasmtime", version = "0.33.0", default-features = false, features = ['cache', 'cranelift'] }
25-
wasmtime-cache = { path = "crates/cache", version = "=0.33.0" }
26-
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.33.0" }
27-
wasmtime-environ = { path = "crates/environ", version = "=0.33.0" }
28-
wasmtime-wast = { path = "crates/wast", version = "=0.33.0" }
29-
wasmtime-wasi = { path = "crates/wasi", version = "0.33.0" }
30-
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.33.0", optional = true }
31-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.33.0", optional = true }
24+
wasmtime = { path = "crates/wasmtime", version = "0.33.1", default-features = false, features = ['cache', 'cranelift'] }
25+
wasmtime-cache = { path = "crates/cache", version = "=0.33.1" }
26+
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.33.1" }
27+
wasmtime-environ = { path = "crates/environ", version = "=0.33.1" }
28+
wasmtime-wast = { path = "crates/wast", version = "=0.33.1" }
29+
wasmtime-wasi = { path = "crates/wasi", version = "0.33.1" }
30+
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.33.1", optional = true }
31+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.33.1", optional = true }
3232
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3333
anyhow = "1.0.19"
3434
target-lexicon = { version = "0.12.0", default-features = false }

RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
--------------------------------------------------------------------------------
44

5+
## 0.33.1
6+
7+
Released 2022-02-16.
8+
9+
### Security Fixes
10+
11+
* [CVE-2022-23636](https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-88xq-w8cq-xfg7):
12+
Fixed an invalid drop of a partially-initialized instance in the pooling instance
13+
allocator.
14+
515
## 0.33.0
616

717
Released 2022-01-05.

cranelift/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ path = "src/clif-util.rs"
1515

1616
[dependencies]
1717
cfg-if = "1.0"
18-
cranelift-codegen = { path = "codegen", version = "0.80.0" }
19-
cranelift-entity = { path = "entity", version = "0.80.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.80.0" }
21-
cranelift-reader = { path = "reader", version = "0.80.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.80.0" }
23-
cranelift-wasm = { path = "wasm", version = "0.80.0", optional = true }
24-
cranelift-native = { path = "native", version = "0.80.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.80.1" }
19+
cranelift-entity = { path = "entity", version = "0.80.1" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.80.1" }
21+
cranelift-reader = { path = "reader", version = "0.80.1" }
22+
cranelift-frontend = { path = "frontend", version = "0.80.1" }
23+
cranelift-wasm = { path = "wasm", version = "0.80.1", optional = true }
24+
cranelift-native = { path = "native", version = "0.80.1" }
2525
cranelift-filetests = { path = "filetests", version = "0.73.0" }
26-
cranelift-module = { path = "module", version = "0.80.0" }
27-
cranelift-object = { path = "object", version = "0.80.0" }
28-
cranelift-jit = { path = "jit", version = "0.80.0" }
29-
cranelift-preopt = { path = "preopt", version = "0.80.0" }
30-
cranelift = { path = "umbrella", version = "0.80.0" }
26+
cranelift-module = { path = "module", version = "0.80.1" }
27+
cranelift-object = { path = "object", version = "0.80.1" }
28+
cranelift-jit = { path = "jit", version = "0.80.1" }
29+
cranelift-preopt = { path = "preopt", version = "0.80.1" }
30+
cranelift = { path = "umbrella", version = "0.80.1" }
3131
filecheck = "0.5.0"
3232
log = "0.4.8"
3333
termcolor = "1.1.2"

0 commit comments

Comments
 (0)