Skip to content

Commit d477d45

Browse files
Bump Wasmtime to 30.0.0 (bytecodealliance#9921)
Co-authored-by: Wasmtime Publish <wasmtime-publish@users.noreply.github.com>
1 parent e8dee7e commit d477d45

File tree

22 files changed

+412
-223
lines changed

22 files changed

+412
-223
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ exclude = [
163163
]
164164

165165
[workspace.package]
166-
version = "29.0.0"
166+
version = "30.0.0"
167167
authors = ["The Wasmtime Project Developers"]
168168
edition = "2021"
169169
# Wasmtime's current policy is that this number can be no larger than the
@@ -204,61 +204,61 @@ allow_attributes_without_reason = 'warn'
204204

205205
[workspace.dependencies]
206206
arbitrary = { version = "1.4.0" }
207-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=29.0.0" }
208-
wasmtime = { path = "crates/wasmtime", version = "29.0.0", default-features = false }
209-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=29.0.0" }
210-
wasmtime-cache = { path = "crates/cache", version = "=29.0.0" }
211-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=29.0.0" }
212-
wasmtime-cranelift = { path = "crates/cranelift", version = "=29.0.0" }
213-
wasmtime-winch = { path = "crates/winch", version = "=29.0.0" }
214-
wasmtime-environ = { path = "crates/environ", version = "=29.0.0" }
215-
wasmtime-explorer = { path = "crates/explorer", version = "=29.0.0" }
216-
wasmtime-fiber = { path = "crates/fiber", version = "=29.0.0" }
217-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=29.0.0" }
218-
wasmtime-wast = { path = "crates/wast", version = "=29.0.0" }
219-
wasmtime-wasi = { path = "crates/wasi", version = "29.0.0", default-features = false }
220-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=29.0.0", default-features = false }
221-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "29.0.0" }
222-
wasmtime-wasi-config = { path = "crates/wasi-config", version = "29.0.0" }
223-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "29.0.0" }
224-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "29.0.0" }
225-
wasmtime-component-util = { path = "crates/component-util", version = "=29.0.0" }
226-
wasmtime-component-macro = { path = "crates/component-macro", version = "=29.0.0" }
227-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=29.0.0" }
228-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=29.0.0" }
229-
wasmtime-slab = { path = "crates/slab", version = "=29.0.0" }
207+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=30.0.0" }
208+
wasmtime = { path = "crates/wasmtime", version = "30.0.0", default-features = false }
209+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=30.0.0" }
210+
wasmtime-cache = { path = "crates/cache", version = "=30.0.0" }
211+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=30.0.0" }
212+
wasmtime-cranelift = { path = "crates/cranelift", version = "=30.0.0" }
213+
wasmtime-winch = { path = "crates/winch", version = "=30.0.0" }
214+
wasmtime-environ = { path = "crates/environ", version = "=30.0.0" }
215+
wasmtime-explorer = { path = "crates/explorer", version = "=30.0.0" }
216+
wasmtime-fiber = { path = "crates/fiber", version = "=30.0.0" }
217+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=30.0.0" }
218+
wasmtime-wast = { path = "crates/wast", version = "=30.0.0" }
219+
wasmtime-wasi = { path = "crates/wasi", version = "30.0.0", default-features = false }
220+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=30.0.0", default-features = false }
221+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "30.0.0" }
222+
wasmtime-wasi-config = { path = "crates/wasi-config", version = "30.0.0" }
223+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "30.0.0" }
224+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "30.0.0" }
225+
wasmtime-component-util = { path = "crates/component-util", version = "=30.0.0" }
226+
wasmtime-component-macro = { path = "crates/component-macro", version = "=30.0.0" }
227+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=30.0.0" }
228+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=30.0.0" }
229+
wasmtime-slab = { path = "crates/slab", version = "=30.0.0" }
230230
component-test-util = { path = "crates/misc/component-test-util" }
231231
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
232-
wiggle = { path = "crates/wiggle", version = "=29.0.0", default-features = false }
233-
wiggle-macro = { path = "crates/wiggle/macro", version = "=29.0.0" }
234-
wiggle-generate = { path = "crates/wiggle/generate", version = "=29.0.0" }
235-
wasi-common = { path = "crates/wasi-common", version = "=29.0.0", default-features = false }
232+
wiggle = { path = "crates/wiggle", version = "=30.0.0", default-features = false }
233+
wiggle-macro = { path = "crates/wiggle/macro", version = "=30.0.0" }
234+
wiggle-generate = { path = "crates/wiggle/generate", version = "=30.0.0" }
235+
wasi-common = { path = "crates/wasi-common", version = "=30.0.0", default-features = false }
236236
wasmtime-fuzzing = { path = "crates/fuzzing" }
237-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=29.0.0" }
238-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=29.0.0" }
239-
wasmtime-math = { path = "crates/math", version = "=29.0.0" }
237+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=30.0.0" }
238+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=30.0.0" }
239+
wasmtime-math = { path = "crates/math", version = "=30.0.0" }
240240
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
241241

242-
pulley-interpreter = { path = 'pulley', version = "=29.0.0" }
242+
pulley-interpreter = { path = 'pulley', version = "=30.0.0" }
243243
pulley-interpreter-fuzz = { path = 'pulley/fuzz' }
244244

245-
cranelift-codegen = { path = "cranelift/codegen", version = "0.116.0", default-features = false, features = ["std", "unwind"] }
246-
cranelift-frontend = { path = "cranelift/frontend", version = "0.116.0" }
247-
cranelift-entity = { path = "cranelift/entity", version = "0.116.0" }
248-
cranelift-native = { path = "cranelift/native", version = "0.116.0" }
249-
cranelift-module = { path = "cranelift/module", version = "0.116.0" }
250-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.116.0" }
251-
cranelift-reader = { path = "cranelift/reader", version = "0.116.0" }
245+
cranelift-codegen = { path = "cranelift/codegen", version = "0.117.0", default-features = false, features = ["std", "unwind"] }
246+
cranelift-frontend = { path = "cranelift/frontend", version = "0.117.0" }
247+
cranelift-entity = { path = "cranelift/entity", version = "0.117.0" }
248+
cranelift-native = { path = "cranelift/native", version = "0.117.0" }
249+
cranelift-module = { path = "cranelift/module", version = "0.117.0" }
250+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.117.0" }
251+
cranelift-reader = { path = "cranelift/reader", version = "0.117.0" }
252252
cranelift-filetests = { path = "cranelift/filetests" }
253-
cranelift-object = { path = "cranelift/object", version = "0.116.0" }
254-
cranelift-jit = { path = "cranelift/jit", version = "0.116.0" }
253+
cranelift-object = { path = "cranelift/object", version = "0.117.0" }
254+
cranelift-jit = { path = "cranelift/jit", version = "0.117.0" }
255255
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
256-
cranelift-bforest = { path = "cranelift/bforest", version = "0.116.0" }
257-
cranelift-bitset = { path = "cranelift/bitset", version = "0.116.0" }
258-
cranelift-control = { path = "cranelift/control", version = "0.116.0" }
259-
cranelift = { path = "cranelift/umbrella", version = "0.116.0" }
256+
cranelift-bforest = { path = "cranelift/bforest", version = "0.117.0" }
257+
cranelift-bitset = { path = "cranelift/bitset", version = "0.117.0" }
258+
cranelift-control = { path = "cranelift/control", version = "0.117.0" }
259+
cranelift = { path = "cranelift/umbrella", version = "0.117.0" }
260260

261-
winch-codegen = { path = "winch/codegen", version = "=29.0.0" }
261+
winch-codegen = { path = "winch/codegen", version = "=30.0.0" }
262262

263263
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
264264
byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-array-literals" }

RELEASES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 29.0.0
1+
## 30.0.0
22

33
Unreleased.
44

@@ -12,6 +12,7 @@ Release notes for previous releases of Wasmtime can be found on the respective
1212
release branches of the Wasmtime repository.
1313

1414
<!-- ARCHIVE_START -->
15+
* [29.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-29.0.0/RELEASES.md)
1516
* [28.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-28.0.0/RELEASES.md)
1617
* [27.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-27.0.0/RELEASES.md)
1718
* [26.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-26.0.0/RELEASES.md)

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.116.0"
4+
version = "0.117.0"
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.116.0"
4+
version = "0.117.0"
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: 4 additions & 4 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.116.0"
4+
version = "0.117.0"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -24,7 +24,7 @@ features = ["all-arch"]
2424
anyhow = { workspace = true, optional = true, features = ['std'] }
2525
bumpalo = "3"
2626
capstone = { workspace = true, optional = true }
27-
cranelift-codegen-shared = { path = "./shared", version = "0.116.0" }
27+
cranelift-codegen-shared = { path = "./shared", version = "0.117.0" }
2828
cranelift-entity = { workspace = true }
2929
cranelift-bforest = { workspace = true }
3030
cranelift-bitset = { workspace = true }
@@ -53,8 +53,8 @@ similar = "2.1.0"
5353
env_logger = { workspace = true }
5454

5555
[build-dependencies]
56-
cranelift-codegen-meta = { path = "meta", version = "0.116.0" }
57-
cranelift-isle = { path = "../isle/isle", version = "=0.116.0" }
56+
cranelift-codegen-meta = { path = "meta", version = "0.117.0" }
57+
cranelift-isle = { path = "../isle/isle", version = "=0.117.0" }
5858

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

cranelift/codegen/meta/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-codegen-meta"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.116.0"
4+
version = "0.117.0"
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,7 +16,7 @@ workspace = true
1616
rustdoc-args = [ "--document-private-items" ]
1717

1818
[dependencies]
19-
cranelift-codegen-shared = { path = "../shared", version = "0.116.0" }
19+
cranelift-codegen-shared = { path = "../shared", version = "0.117.0" }
2020
pulley-interpreter = { workspace = true, optional = true }
2121

2222
[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.116.0"
4+
version = "0.117.0"
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.116.0"
4+
version = "0.117.0"
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.116.0"
4+
version = "0.117.0"
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"

0 commit comments

Comments
 (0)