Skip to content

Commit 398694a

Browse files
Release Wasmtime 30.0.2 (#10294)
[automatically-tag-and-release-this-commit] Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
1 parent 0891f25 commit 398694a

File tree

23 files changed

+443
-239
lines changed

23 files changed

+443
-239
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ exclude = [
165165
]
166166

167167
[workspace.package]
168-
version = "30.0.1"
168+
version = "30.0.2"
169169
authors = ["The Wasmtime Project Developers"]
170170
edition = "2021"
171171
# Wasmtime's current policy is that this number can be no larger than the
@@ -221,62 +221,62 @@ allow_attributes_without_reason = 'warn'
221221

222222
[workspace.dependencies]
223223
arbitrary = { version = "1.4.0" }
224-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=30.0.1" }
225-
wasmtime = { path = "crates/wasmtime", version = "30.0.1", default-features = false }
226-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=30.0.1" }
227-
wasmtime-cache = { path = "crates/cache", version = "=30.0.1" }
228-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=30.0.1" }
229-
wasmtime-cranelift = { path = "crates/cranelift", version = "=30.0.1" }
230-
wasmtime-winch = { path = "crates/winch", version = "=30.0.1" }
231-
wasmtime-environ = { path = "crates/environ", version = "=30.0.1" }
232-
wasmtime-explorer = { path = "crates/explorer", version = "=30.0.1" }
233-
wasmtime-fiber = { path = "crates/fiber", version = "=30.0.1" }
234-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=30.0.1" }
235-
wasmtime-wast = { path = "crates/wast", version = "=30.0.1" }
236-
wasmtime-wasi = { path = "crates/wasi", version = "30.0.1", default-features = false }
237-
wasmtime-wasi-io = { path = "crates/wasi-io", version = "30.0.1", default-features = false }
238-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "30.0.1", default-features = false }
239-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "30.0.1" }
240-
wasmtime-wasi-config = { path = "crates/wasi-config", version = "30.0.1" }
241-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "30.0.1" }
242-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "30.0.1" }
243-
wasmtime-component-util = { path = "crates/component-util", version = "=30.0.1" }
244-
wasmtime-component-macro = { path = "crates/component-macro", version = "=30.0.1" }
245-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=30.0.1" }
246-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=30.0.1" }
247-
wasmtime-slab = { path = "crates/slab", version = "=30.0.1" }
224+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=30.0.2" }
225+
wasmtime = { path = "crates/wasmtime", version = "30.0.2", default-features = false }
226+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=30.0.2" }
227+
wasmtime-cache = { path = "crates/cache", version = "=30.0.2" }
228+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=30.0.2" }
229+
wasmtime-cranelift = { path = "crates/cranelift", version = "=30.0.2" }
230+
wasmtime-winch = { path = "crates/winch", version = "=30.0.2" }
231+
wasmtime-environ = { path = "crates/environ", version = "=30.0.2" }
232+
wasmtime-explorer = { path = "crates/explorer", version = "=30.0.2" }
233+
wasmtime-fiber = { path = "crates/fiber", version = "=30.0.2" }
234+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=30.0.2" }
235+
wasmtime-wast = { path = "crates/wast", version = "=30.0.2" }
236+
wasmtime-wasi = { path = "crates/wasi", version = "30.0.2", default-features = false }
237+
wasmtime-wasi-io = { path = "crates/wasi-io", version = "30.0.2", default-features = false }
238+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "30.0.2", default-features = false }
239+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "30.0.2" }
240+
wasmtime-wasi-config = { path = "crates/wasi-config", version = "30.0.2" }
241+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "30.0.2" }
242+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "30.0.2" }
243+
wasmtime-component-util = { path = "crates/component-util", version = "=30.0.2" }
244+
wasmtime-component-macro = { path = "crates/component-macro", version = "=30.0.2" }
245+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=30.0.2" }
246+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=30.0.2" }
247+
wasmtime-slab = { path = "crates/slab", version = "=30.0.2" }
248248
component-test-util = { path = "crates/misc/component-test-util" }
249249
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
250-
wiggle = { path = "crates/wiggle", version = "=30.0.1", default-features = false }
251-
wiggle-macro = { path = "crates/wiggle/macro", version = "=30.0.1" }
252-
wiggle-generate = { path = "crates/wiggle/generate", version = "=30.0.1" }
253-
wasi-common = { path = "crates/wasi-common", version = "=30.0.1", default-features = false }
250+
wiggle = { path = "crates/wiggle", version = "=30.0.2", default-features = false }
251+
wiggle-macro = { path = "crates/wiggle/macro", version = "=30.0.2" }
252+
wiggle-generate = { path = "crates/wiggle/generate", version = "=30.0.2" }
253+
wasi-common = { path = "crates/wasi-common", version = "=30.0.2", default-features = false }
254254
wasmtime-fuzzing = { path = "crates/fuzzing" }
255-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=30.0.1" }
256-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=30.0.1" }
257-
wasmtime-math = { path = "crates/math", version = "=30.0.1" }
255+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=30.0.2" }
256+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=30.0.2" }
257+
wasmtime-math = { path = "crates/math", version = "=30.0.2" }
258258
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
259259

260-
pulley-interpreter = { path = 'pulley', version = "=30.0.1" }
260+
pulley-interpreter = { path = 'pulley', version = "=30.0.2" }
261261
pulley-interpreter-fuzz = { path = 'pulley/fuzz' }
262262

263-
cranelift-codegen = { path = "cranelift/codegen", version = "0.117.1", default-features = false, features = ["std", "unwind"] }
264-
cranelift-frontend = { path = "cranelift/frontend", version = "0.117.1" }
265-
cranelift-entity = { path = "cranelift/entity", version = "0.117.1" }
266-
cranelift-native = { path = "cranelift/native", version = "0.117.1" }
267-
cranelift-module = { path = "cranelift/module", version = "0.117.1" }
268-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.117.1" }
269-
cranelift-reader = { path = "cranelift/reader", version = "0.117.1" }
263+
cranelift-codegen = { path = "cranelift/codegen", version = "0.117.2", default-features = false, features = ["std", "unwind"] }
264+
cranelift-frontend = { path = "cranelift/frontend", version = "0.117.2" }
265+
cranelift-entity = { path = "cranelift/entity", version = "0.117.2" }
266+
cranelift-native = { path = "cranelift/native", version = "0.117.2" }
267+
cranelift-module = { path = "cranelift/module", version = "0.117.2" }
268+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.117.2" }
269+
cranelift-reader = { path = "cranelift/reader", version = "0.117.2" }
270270
cranelift-filetests = { path = "cranelift/filetests" }
271-
cranelift-object = { path = "cranelift/object", version = "0.117.1" }
272-
cranelift-jit = { path = "cranelift/jit", version = "0.117.1" }
271+
cranelift-object = { path = "cranelift/object", version = "0.117.2" }
272+
cranelift-jit = { path = "cranelift/jit", version = "0.117.2" }
273273
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
274-
cranelift-bforest = { path = "cranelift/bforest", version = "0.117.1" }
275-
cranelift-bitset = { path = "cranelift/bitset", version = "0.117.1" }
276-
cranelift-control = { path = "cranelift/control", version = "0.117.1" }
277-
cranelift = { path = "cranelift/umbrella", version = "0.117.1" }
274+
cranelift-bforest = { path = "cranelift/bforest", version = "0.117.2" }
275+
cranelift-bitset = { path = "cranelift/bitset", version = "0.117.2" }
276+
cranelift-control = { path = "cranelift/control", version = "0.117.2" }
277+
cranelift = { path = "cranelift/umbrella", version = "0.117.2" }
278278

279-
winch-codegen = { path = "winch/codegen", version = "=30.0.1" }
279+
winch-codegen = { path = "winch/codegen", version = "=30.0.2" }
280280

281281
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
282282
byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-array-literals" }

cranelift/assembler-x64/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-assembler-x64"
33
description = "A Cranelift-specific x64 assembler"
4-
version = "0.117.1"
4+
version = "0.117.2"
55
license = "Apache-2.0 WITH LLVM-exception"
66
edition.workspace = true
77
rust-version.workspace = true
@@ -13,7 +13,7 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
1313
arbtest = "0.3.1"
1414

1515
[build-dependencies]
16-
cranelift-assembler-x64-meta = { path = "meta", version = "0.117.1" }
16+
cranelift-assembler-x64-meta = { path = "meta", version = "0.117.2" }
1717

1818
[lints.clippy]
1919
all = "deny"

cranelift/assembler-x64/meta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-assembler-x64-meta"
33
description = "Generate a Cranelift-specific assembler for x64 instructions"
4-
version = "0.117.1"
4+
version = "0.117.2"
55
license = "Apache-2.0 WITH LLVM-exception"
66
edition.workspace = true
77
rust-version.workspace = true

cranelift/bforest/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.2"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"

cranelift/bitset/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-bitset"
4-
version = "0.117.1"
4+
version = "0.117.2"
55
description = "Various bitset stuff for use inside Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bitset"

cranelift/codegen/Cargo.toml

Lines changed: 5 additions & 5 deletions
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.117.1"
4+
version = "0.117.2"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -24,8 +24,8 @@ features = ["all-arch"]
2424
anyhow = { workspace = true, optional = true, features = ['std'] }
2525
bumpalo = "3"
2626
capstone = { workspace = true, optional = true }
27-
cranelift-assembler-x64 = { path = "../assembler-x64", version = "0.117.1" }
28-
cranelift-codegen-shared = { path = "./shared", version = "0.117.1" }
27+
cranelift-assembler-x64 = { path = "../assembler-x64", version = "0.117.2" }
28+
cranelift-codegen-shared = { path = "./shared", version = "0.117.2" }
2929
cranelift-entity = { workspace = true }
3030
cranelift-bforest = { workspace = true }
3131
cranelift-bitset = { workspace = true }
@@ -54,8 +54,8 @@ similar = "2.1.0"
5454
env_logger = { workspace = true }
5555

5656
[build-dependencies]
57-
cranelift-codegen-meta = { path = "meta", version = "0.117.1" }
58-
cranelift-isle = { path = "../isle/isle", version = "=0.117.1" }
57+
cranelift-codegen-meta = { path = "meta", version = "0.117.2" }
58+
cranelift-isle = { path = "../isle/isle", version = "=0.117.2" }
5959

6060
[features]
6161
default = ["std", "unwind", "host-arch", "timing"]

cranelift/codegen/meta/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.117.1"
4+
version = "0.117.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"
@@ -16,8 +16,8 @@ workspace = true
1616
rustdoc-args = ["--document-private-items"]
1717

1818
[dependencies]
19-
cranelift-assembler-x64 = { path = "../../assembler-x64", version = "0.117.1" }
20-
cranelift-codegen-shared = { path = "../shared", version = "0.117.1" }
19+
cranelift-assembler-x64 = { path = "../../assembler-x64", version = "0.117.2" }
20+
cranelift-codegen-shared = { path = "../shared", version = "0.117.2" }
2121
pulley-interpreter = { workspace = true, optional = true }
2222

2323
[features]

cranelift/codegen/shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.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

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

cranelift/isle/isle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0 WITH LLVM-exception"
77
name = "cranelift-isle"
88
readme = "../README.md"
99
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle"
10-
version = "0.117.1"
10+
version = "0.117.2"
1111

1212
[lints]
1313
workspace = true

cranelift/jit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-jit"
3-
version = "0.117.1"
3+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-module"
3-
version = "0.117.1"
3+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-native"
3-
version = "0.117.1"
3+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-object"
3-
version = "0.117.1"
3+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-serde"
3-
version = "0.117.1"
3+
version = "0.117.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

Lines changed: 1 addition & 1 deletion
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.117.1"
4+
version = "0.117.2"
55
description = "Umbrella for commonly-used cranelift crates"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift"

crates/c-api/include/wasmtime.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
/**
207207
* \brief Wasmtime version string.
208208
*/
209-
#define WASMTIME_VERSION "30.0.1"
209+
#define WASMTIME_VERSION "30.0.2"
210210
/**
211211
* \brief Wasmtime major version number.
212212
*/
@@ -218,7 +218,7 @@
218218
/**
219219
* \brief Wasmtime patch version number.
220220
*/
221-
#define WASMTIME_VERSION_PATCH 1
221+
#define WASMTIME_VERSION_PATCH 2
222222

223223
#ifdef __cplusplus
224224
extern "C" {

0 commit comments

Comments
 (0)