Skip to content

Commit 70ceccd

Browse files
Release Wasmtime 21.0.2 (#9363)
[automatically-tag-and-release-this-commit] Co-authored-by: Wasmtime Publish <[email protected]>
1 parent c0e00c8 commit 70ceccd

File tree

22 files changed

+572
-122
lines changed

22 files changed

+572
-122
lines changed

Cargo.lock

+55-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+43-43
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ exclude = [
134134
]
135135

136136
[workspace.package]
137-
version = "21.0.1"
137+
version = "21.0.2"
138138
authors = ["The Wasmtime Project Developers"]
139139
edition = "2021"
140140
# Wasmtime's current policy is that this number can be no larger than the
@@ -156,56 +156,56 @@ all = 'allow'
156156

157157
[workspace.dependencies]
158158
arbitrary = { version = "1.3.1" }
159-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=21.0.1" }
160-
wasmtime = { path = "crates/wasmtime", version = "21.0.1", default-features = false }
161-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=21.0.1" }
162-
wasmtime-cache = { path = "crates/cache", version = "=21.0.1" }
163-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=21.0.1" }
164-
wasmtime-cranelift = { path = "crates/cranelift", version = "=21.0.1" }
165-
wasmtime-winch = { path = "crates/winch", version = "=21.0.1" }
166-
wasmtime-environ = { path = "crates/environ", version = "=21.0.1" }
167-
wasmtime-explorer = { path = "crates/explorer", version = "=21.0.1" }
168-
wasmtime-fiber = { path = "crates/fiber", version = "=21.0.1" }
169-
wasmtime-types = { path = "crates/types", version = "21.0.1" }
170-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=21.0.1" }
171-
wasmtime-wast = { path = "crates/wast", version = "=21.0.1" }
172-
wasmtime-wasi = { path = "crates/wasi", version = "21.0.1", default-features = false }
173-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=21.0.1", default-features = false }
174-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "21.0.1" }
175-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "21.0.1" }
176-
wasmtime-component-util = { path = "crates/component-util", version = "=21.0.1" }
177-
wasmtime-component-macro = { path = "crates/component-macro", version = "=21.0.1" }
178-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=21.0.1" }
179-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=21.0.1" }
180-
wasmtime-slab = { path = "crates/slab", version = "=21.0.1" }
159+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=21.0.2" }
160+
wasmtime = { path = "crates/wasmtime", version = "21.0.2", default-features = false }
161+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=21.0.2" }
162+
wasmtime-cache = { path = "crates/cache", version = "=21.0.2" }
163+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=21.0.2" }
164+
wasmtime-cranelift = { path = "crates/cranelift", version = "=21.0.2" }
165+
wasmtime-winch = { path = "crates/winch", version = "=21.0.2" }
166+
wasmtime-environ = { path = "crates/environ", version = "=21.0.2" }
167+
wasmtime-explorer = { path = "crates/explorer", version = "=21.0.2" }
168+
wasmtime-fiber = { path = "crates/fiber", version = "=21.0.2" }
169+
wasmtime-types = { path = "crates/types", version = "21.0.2" }
170+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=21.0.2" }
171+
wasmtime-wast = { path = "crates/wast", version = "=21.0.2" }
172+
wasmtime-wasi = { path = "crates/wasi", version = "21.0.2", default-features = false }
173+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=21.0.2", default-features = false }
174+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "21.0.2" }
175+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "21.0.2" }
176+
wasmtime-component-util = { path = "crates/component-util", version = "=21.0.2" }
177+
wasmtime-component-macro = { path = "crates/component-macro", version = "=21.0.2" }
178+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=21.0.2" }
179+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=21.0.2" }
180+
wasmtime-slab = { path = "crates/slab", version = "=21.0.2" }
181181
component-test-util = { path = "crates/misc/component-test-util" }
182182
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
183-
wiggle = { path = "crates/wiggle", version = "=21.0.1", default-features = false }
184-
wiggle-macro = { path = "crates/wiggle/macro", version = "=21.0.1" }
185-
wiggle-generate = { path = "crates/wiggle/generate", version = "=21.0.1" }
186-
wasi-common = { path = "crates/wasi-common", version = "=21.0.1", default-features = false }
183+
wiggle = { path = "crates/wiggle", version = "=21.0.2", default-features = false }
184+
wiggle-macro = { path = "crates/wiggle/macro", version = "=21.0.2" }
185+
wiggle-generate = { path = "crates/wiggle/generate", version = "=21.0.2" }
186+
wasi-common = { path = "crates/wasi-common", version = "=21.0.2", default-features = false }
187187
wasmtime-fuzzing = { path = "crates/fuzzing" }
188-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=21.0.1" }
189-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=21.0.1" }
188+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=21.0.2" }
189+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=21.0.2" }
190190
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
191191

192-
cranelift-wasm = { path = "cranelift/wasm", version = "0.108.1" }
193-
cranelift-codegen = { path = "cranelift/codegen", version = "0.108.1", default-features = false, features = ["std", "unwind", "trace-log"] }
194-
cranelift-frontend = { path = "cranelift/frontend", version = "0.108.1" }
195-
cranelift-entity = { path = "cranelift/entity", version = "0.108.1" }
196-
cranelift-native = { path = "cranelift/native", version = "0.108.1" }
197-
cranelift-module = { path = "cranelift/module", version = "0.108.1" }
198-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.108.1" }
199-
cranelift-reader = { path = "cranelift/reader", version = "0.108.1" }
192+
cranelift-wasm = { path = "cranelift/wasm", version = "0.108.2" }
193+
cranelift-codegen = { path = "cranelift/codegen", version = "0.108.2", default-features = false, features = ["std", "unwind", "trace-log"] }
194+
cranelift-frontend = { path = "cranelift/frontend", version = "0.108.2" }
195+
cranelift-entity = { path = "cranelift/entity", version = "0.108.2" }
196+
cranelift-native = { path = "cranelift/native", version = "0.108.2" }
197+
cranelift-module = { path = "cranelift/module", version = "0.108.2" }
198+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.108.2" }
199+
cranelift-reader = { path = "cranelift/reader", version = "0.108.2" }
200200
cranelift-filetests = { path = "cranelift/filetests" }
201-
cranelift-object = { path = "cranelift/object", version = "0.108.1" }
202-
cranelift-jit = { path = "cranelift/jit", version = "0.108.1" }
201+
cranelift-object = { path = "cranelift/object", version = "0.108.2" }
202+
cranelift-jit = { path = "cranelift/jit", version = "0.108.2" }
203203
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
204-
cranelift-bforest = { path = "cranelift/bforest", version = "0.108.1" }
205-
cranelift-control = { path = "cranelift/control", version = "0.108.1" }
206-
cranelift = { path = "cranelift/umbrella", version = "0.108.1" }
204+
cranelift-bforest = { path = "cranelift/bforest", version = "0.108.2" }
205+
cranelift-control = { path = "cranelift/control", version = "0.108.2" }
206+
cranelift = { path = "cranelift/umbrella", version = "0.108.2" }
207207

208-
winch-codegen = { path = "winch/codegen", version = "=0.19.1" }
208+
winch-codegen = { path = "winch/codegen", version = "=0.19.2" }
209209

210210
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
211211
byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-array-literals" }

cranelift/bforest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-bforest"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"

cranelift/codegen/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -19,7 +19,7 @@ workspace = true
1919
anyhow = { workspace = true, optional = true, features = ['std'] }
2020
bumpalo = "3"
2121
capstone = { workspace = true, optional = true }
22-
cranelift-codegen-shared = { path = "./shared", version = "0.108.1" }
22+
cranelift-codegen-shared = { path = "./shared", version = "0.108.2" }
2323
cranelift-entity = { workspace = true }
2424
cranelift-bforest = { workspace = true }
2525
cranelift-control = { workspace = true }
@@ -45,8 +45,8 @@ criterion = { workspace = true }
4545
similar = "2.1.0"
4646

4747
[build-dependencies]
48-
cranelift-codegen-meta = { path = "meta", version = "0.108.1" }
49-
cranelift-isle = { path = "../isle/isle", version = "=0.108.1" }
48+
cranelift-codegen-meta = { path = "meta", version = "0.108.2" }
49+
cranelift-isle = { path = "../isle/isle", version = "=0.108.2" }
5050

5151
[features]
5252
default = ["std", "unwind", "host-arch", "timing"]

cranelift/codegen/meta/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-codegen-meta"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -15,4 +15,4 @@ workspace = true
1515
rustdoc-args = [ "--document-private-items" ]
1616

1717
[dependencies]
18-
cranelift-codegen-shared = { path = "../shared", version = "0.108.1" }
18+
cranelift-codegen-shared = { path = "../shared", version = "0.108.2" }

cranelift/codegen/shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen-shared"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/control/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-control"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "White-box fuzz testing framework"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-entity"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Data structures using entity references as mapping keys"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-entity"

cranelift/frontend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-frontend"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Cranelift IR builder helper"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-frontend"

cranelift/interpreter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-interpreter"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Interpret Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/isle/isle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Apache-2.0 WITH LLVM-exception"
66
name = "cranelift-isle"
77
readme = "../README.md"
88
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle"
9-
version = "0.108.1"
9+
version = "0.108.2"
1010

1111
[lints]
1212
workspace = true

cranelift/jit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-jit"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "A JIT library backed by Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/module/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-module"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for linking functions and data with Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/native/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-native"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for targeting the host with Cranelift"
66
documentation = "https://docs.rs/cranelift-native"

cranelift/object/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-object"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with `object`"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/reader/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-reader"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Cranelift textual IR reader"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-reader"

cranelift/serde/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-serde"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Serializer/Deserializer for Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/umbrella/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift"
4-
version = "0.108.1"
4+
version = "0.108.2"
55
description = "Umbrella for commonly-used cranelift crates"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift"

cranelift/wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-wasm"
3-
version = "0.108.1"
3+
version = "0.108.2"
44
authors = ["The Cranelift Project Developers"]
55
description = "Translator from WebAssembly to Cranelift IR"
66
documentation = "https://docs.rs/cranelift-wasm"

crates/c-api/include/wasmtime.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
/**
206206
* \brief Wasmtime version string.
207207
*/
208-
#define WASMTIME_VERSION "21.0.1"
208+
#define WASMTIME_VERSION "21.0.2"
209209
/**
210210
* \brief Wasmtime major version number.
211211
*/
@@ -217,7 +217,7 @@
217217
/**
218218
* \brief Wasmtime patch version number.
219219
*/
220-
#define WASMTIME_VERSION_PATCH 1
220+
#define WASMTIME_VERSION_PATCH 2
221221

222222
#ifdef __cplusplus
223223
extern "C" {

0 commit comments

Comments
 (0)