Skip to content

Commit 309002b

Browse files
wasmtime-publishcfallinalexcrichton
authored
Release Wasmtime 0.32.1 (#3643)
* Bump Wasmtime to 0.32.1 [automatically-tag-and-release-this-commit] * Update release date for 0.32.1. * Run the "push tag" CI on all release branches (#3644) This updates our `push-tag.yml` workflow to check all commits to `release-*` branches in addition to the `main` branch for cmomits which should be tagged. Co-authored-by: Wasmtime Publish <[email protected]> Co-authored-by: Chris Fallin <[email protected]> Co-authored-by: Alex Crichton <[email protected]>
1 parent 586df47 commit 309002b

File tree

43 files changed

+177
-177
lines changed

Some content is hidden

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

43 files changed

+177
-177
lines changed

.github/workflows/push-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
name: "Push tagged release"
1111
on:
1212
push:
13-
branches: [main]
13+
branches: ['main', 'release-*']
1414

1515
jobs:
1616
push_tag:

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.32.0"
3+
version = "0.32.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.32.0", default-features = false, features = ['cache', 'cranelift'] }
25-
wasmtime-cache = { path = "crates/cache", version = "=0.32.0" }
26-
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.32.0" }
27-
wasmtime-environ = { path = "crates/environ", version = "=0.32.0" }
28-
wasmtime-wast = { path = "crates/wast", version = "=0.32.0" }
29-
wasmtime-wasi = { path = "crates/wasi", version = "0.32.0" }
30-
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.32.0", optional = true }
31-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.32.0", optional = true }
24+
wasmtime = { path = "crates/wasmtime", version = "0.32.1", default-features = false, features = ['cache', 'cranelift'] }
25+
wasmtime-cache = { path = "crates/cache", version = "=0.32.1" }
26+
wasmtime-cranelift = { path = "crates/cranelift", version = "=0.32.1" }
27+
wasmtime-environ = { path = "crates/environ", version = "=0.32.1" }
28+
wasmtime-wast = { path = "crates/wast", version = "=0.32.1" }
29+
wasmtime-wasi = { path = "crates/wasi", version = "0.32.1" }
30+
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.32.1", optional = true }
31+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.32.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## 0.32.1
66

7-
Released 2021-12-17.
7+
Released 2022-01-04.
88

99
### Fixed
1010

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.79.0" }
19-
cranelift-entity = { path = "entity", version = "0.79.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.79.0" }
21-
cranelift-reader = { path = "reader", version = "0.79.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.79.0" }
23-
cranelift-wasm = { path = "wasm", version = "0.79.0", optional = true }
24-
cranelift-native = { path = "native", version = "0.79.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.79.1" }
19+
cranelift-entity = { path = "entity", version = "0.79.1" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.79.1" }
21+
cranelift-reader = { path = "reader", version = "0.79.1" }
22+
cranelift-frontend = { path = "frontend", version = "0.79.1" }
23+
cranelift-wasm = { path = "wasm", version = "0.79.1", optional = true }
24+
cranelift-native = { path = "native", version = "0.79.1" }
2525
cranelift-filetests = { path = "filetests", version = "0.73.0" }
26-
cranelift-module = { path = "module", version = "0.79.0" }
27-
cranelift-object = { path = "object", version = "0.79.0" }
28-
cranelift-jit = { path = "jit", version = "0.79.0" }
29-
cranelift-preopt = { path = "preopt", version = "0.79.0" }
30-
cranelift = { path = "umbrella", version = "0.79.0" }
26+
cranelift-module = { path = "module", version = "0.79.1" }
27+
cranelift-object = { path = "object", version = "0.79.1" }
28+
cranelift-jit = { path = "jit", version = "0.79.1" }
29+
cranelift-preopt = { path = "preopt", version = "0.79.1" }
30+
cranelift = { path = "umbrella", version = "0.79.1" }
3131
filecheck = "0.5.0"
3232
log = "0.4.8"
3333
termcolor = "1.1.2"

0 commit comments

Comments
 (0)