Skip to content

Commit daaaabe

Browse files
Release Wasmtime 30.0.1 (#10272)
[automatically-tag-and-release-this-commit] Co-authored-by: Wasmtime Publish <[email protected]>
1 parent 0b3cdd9 commit daaaabe

File tree

23 files changed

+437
-233
lines changed

23 files changed

+437
-233
lines changed

Diff for: Cargo.lock

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

Diff for: Cargo.toml

+47-47
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ exclude = [
165165
]
166166

167167
[workspace.package]
168-
version = "30.0.0"
168+
version = "30.0.1"
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.0" }
225-
wasmtime = { path = "crates/wasmtime", version = "30.0.0", default-features = false }
226-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=30.0.0" }
227-
wasmtime-cache = { path = "crates/cache", version = "=30.0.0" }
228-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=30.0.0" }
229-
wasmtime-cranelift = { path = "crates/cranelift", version = "=30.0.0" }
230-
wasmtime-winch = { path = "crates/winch", version = "=30.0.0" }
231-
wasmtime-environ = { path = "crates/environ", version = "=30.0.0" }
232-
wasmtime-explorer = { path = "crates/explorer", version = "=30.0.0" }
233-
wasmtime-fiber = { path = "crates/fiber", version = "=30.0.0" }
234-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=30.0.0" }
235-
wasmtime-wast = { path = "crates/wast", version = "=30.0.0" }
236-
wasmtime-wasi = { path = "crates/wasi", version = "30.0.0", default-features = false }
237-
wasmtime-wasi-io = { path = "crates/wasi-io", version = "30.0.0", default-features = false }
238-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "30.0.0", default-features = false }
239-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "30.0.0" }
240-
wasmtime-wasi-config = { path = "crates/wasi-config", version = "30.0.0" }
241-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "30.0.0" }
242-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "30.0.0" }
243-
wasmtime-component-util = { path = "crates/component-util", version = "=30.0.0" }
244-
wasmtime-component-macro = { path = "crates/component-macro", version = "=30.0.0" }
245-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=30.0.0" }
246-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=30.0.0" }
247-
wasmtime-slab = { path = "crates/slab", version = "=30.0.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" }
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.0", default-features = false }
251-
wiggle-macro = { path = "crates/wiggle/macro", version = "=30.0.0" }
252-
wiggle-generate = { path = "crates/wiggle/generate", version = "=30.0.0" }
253-
wasi-common = { path = "crates/wasi-common", version = "=30.0.0", default-features = false }
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 }
254254
wasmtime-fuzzing = { path = "crates/fuzzing" }
255-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=30.0.0" }
256-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=30.0.0" }
257-
wasmtime-math = { path = "crates/math", version = "=30.0.0" }
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" }
258258
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
259259

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

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

279-
winch-codegen = { path = "winch/codegen", version = "=30.0.0" }
279+
winch-codegen = { path = "winch/codegen", version = "=30.0.1" }
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" }

Diff for: cranelift/assembler-x64/Cargo.toml

+2-2
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.0"
4+
version = "0.117.1"
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.0" }
16+
cranelift-assembler-x64-meta = { path = "meta", version = "0.117.1" }
1717

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

Diff for: cranelift/assembler-x64/meta/Cargo.toml

+1-1
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.0"
4+
version = "0.117.1"
55
license = "Apache-2.0 WITH LLVM-exception"
66
edition.workspace = true
77
rust-version.workspace = true

Diff for: 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.117.0"
4+
version = "0.117.1"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"

Diff for: cranelift/bitset/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-bitset"
4-
version = "0.117.0"
4+
version = "0.117.1"
55
description = "Various bitset stuff for use inside Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bitset"

Diff for: cranelift/codegen/Cargo.toml

+5-5
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.0"
4+
version = "0.117.1"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -25,8 +25,8 @@ arbitrary = { version = "1.3.2", features = ["derive"] }
2525
anyhow = { workspace = true, optional = true, features = ['std'] }
2626
bumpalo = "3"
2727
capstone = { workspace = true, optional = true }
28-
cranelift-assembler-x64 = { path = "../assembler-x64", version = "0.117.0" }
29-
cranelift-codegen-shared = { path = "./shared", version = "0.117.0" }
28+
cranelift-assembler-x64 = { path = "../assembler-x64", version = "0.117.1" }
29+
cranelift-codegen-shared = { path = "./shared", version = "0.117.1" }
3030
cranelift-entity = { workspace = true }
3131
cranelift-bforest = { workspace = true }
3232
cranelift-bitset = { workspace = true }
@@ -55,8 +55,8 @@ similar = "2.1.0"
5555
env_logger = { workspace = true }
5656

5757
[build-dependencies]
58-
cranelift-codegen-meta = { path = "meta", version = "0.117.0" }
59-
cranelift-isle = { path = "../isle/isle", version = "=0.117.0" }
58+
cranelift-codegen-meta = { path = "meta", version = "0.117.1" }
59+
cranelift-isle = { path = "../isle/isle", version = "=0.117.1" }
6060

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

Diff for: cranelift/codegen/meta/Cargo.toml

+3-3
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.0"
4+
version = "0.117.1"
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.0" }
20-
cranelift-codegen-shared = { path = "../shared", version = "0.117.0" }
19+
cranelift-assembler-x64 = { path = "../../assembler-x64", version = "0.117.1" }
20+
cranelift-codegen-shared = { path = "../shared", version = "0.117.1" }
2121
pulley-interpreter = { workspace = true, optional = true }
2222

2323
[features]

Diff for: 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.117.0"
4+
version = "0.117.1"
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"

Diff for: 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.117.0"
4+
version = "0.117.1"
55
description = "White-box fuzz testing framework"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: 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.117.0"
4+
version = "0.117.1"
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"

Diff for: 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.117.0"
4+
version = "0.117.1"
55
description = "Cranelift IR builder helper"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-frontend"

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Interpret Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: cranelift/isle/isle/Cargo.toml

+1-1
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.0"
10+
version = "0.117.1"
1111

1212
[lints]
1313
workspace = true

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "A JIT library backed by Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for linking functions and data with Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for targeting the host with Cranelift"
66
documentation = "https://docs.rs/cranelift-native"

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with `object`"
66
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: 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.117.0"
4+
version = "0.117.1"
55
description = "Cranelift textual IR reader"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-reader"

Diff for: 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.117.0"
3+
version = "0.117.1"
44
authors = ["The Cranelift Project Developers"]
55
description = "Serializer/Deserializer for Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"

Diff for: 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.117.0"
4+
version = "0.117.1"
55
description = "Umbrella for commonly-used cranelift crates"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift"

Diff for: crates/c-api/include/wasmtime.h

+2-2
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.0"
209+
#define WASMTIME_VERSION "30.0.1"
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 0
221+
#define WASMTIME_VERSION_PATCH 1
222222

223223
#ifdef __cplusplus
224224
extern "C" {

0 commit comments

Comments
 (0)