Skip to content

Commit b76b3f0

Browse files
Bump Wasmtime to 31.0.0 (#10187)
Co-authored-by: Wasmtime Publish <[email protected]>
1 parent 0a3aea3 commit b76b3f0

File tree

24 files changed

+432
-256
lines changed

24 files changed

+432
-256
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.0"
168+
version = "31.0.0"
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 = "=31.0.0" }
225+
wasmtime = { path = "crates/wasmtime", version = "31.0.0", default-features = false }
226+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=31.0.0" }
227+
wasmtime-cache = { path = "crates/cache", version = "=31.0.0" }
228+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=31.0.0" }
229+
wasmtime-cranelift = { path = "crates/cranelift", version = "=31.0.0" }
230+
wasmtime-winch = { path = "crates/winch", version = "=31.0.0" }
231+
wasmtime-environ = { path = "crates/environ", version = "=31.0.0" }
232+
wasmtime-explorer = { path = "crates/explorer", version = "=31.0.0" }
233+
wasmtime-fiber = { path = "crates/fiber", version = "=31.0.0" }
234+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=31.0.0" }
235+
wasmtime-wast = { path = "crates/wast", version = "=31.0.0" }
236+
wasmtime-wasi = { path = "crates/wasi", version = "31.0.0", default-features = false }
237+
wasmtime-wasi-io = { path = "crates/wasi-io", version = "31.0.0", default-features = false }
238+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "31.0.0", default-features = false }
239+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "31.0.0" }
240+
wasmtime-wasi-config = { path = "crates/wasi-config", version = "31.0.0" }
241+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "31.0.0" }
242+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "31.0.0" }
243+
wasmtime-component-util = { path = "crates/component-util", version = "=31.0.0" }
244+
wasmtime-component-macro = { path = "crates/component-macro", version = "=31.0.0" }
245+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=31.0.0" }
246+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=31.0.0" }
247+
wasmtime-slab = { path = "crates/slab", version = "=31.0.0" }
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 = "=31.0.0", default-features = false }
251+
wiggle-macro = { path = "crates/wiggle/macro", version = "=31.0.0" }
252+
wiggle-generate = { path = "crates/wiggle/generate", version = "=31.0.0" }
253+
wasi-common = { path = "crates/wasi-common", version = "=31.0.0", 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 = "=31.0.0" }
256+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=31.0.0" }
257+
wasmtime-math = { path = "crates/math", version = "=31.0.0" }
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 = "=31.0.0" }
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.118.0", default-features = false, features = ["std", "unwind"] }
264+
cranelift-frontend = { path = "cranelift/frontend", version = "0.118.0" }
265+
cranelift-entity = { path = "cranelift/entity", version = "0.118.0" }
266+
cranelift-native = { path = "cranelift/native", version = "0.118.0" }
267+
cranelift-module = { path = "cranelift/module", version = "0.118.0" }
268+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.118.0" }
269+
cranelift-reader = { path = "cranelift/reader", version = "0.118.0" }
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.118.0" }
272+
cranelift-jit = { path = "cranelift/jit", version = "0.118.0" }
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.118.0" }
275+
cranelift-bitset = { path = "cranelift/bitset", version = "0.118.0" }
276+
cranelift-control = { path = "cranelift/control", version = "0.118.0" }
277+
cranelift = { path = "cranelift/umbrella", version = "0.118.0" }
278278

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

RELEASES.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,18 @@
1-
## 30.0.0
1+
## 31.0.0
22

33
Unreleased.
44

55
### Added
66

7-
* New `wasmtime-wasi-io` crate provides a `#![no_std]` wasi:io implementation,
8-
factored out of `wasmtime-wasi`. Users of `wasmtime-wasi` don't have to
9-
depend on this new crate.
10-
[#10036](https://github.com/bytecodealliance/wasmtime/pull/10036)
11-
127
### Changed
138

14-
* `wasmtime-wasi` split the `WasiView` trait into `IoView` and `WasiView`, and
15-
`wasmtime-wasi-http` re-uses `IoView` in `WasiHttpView`. Details on porting
16-
for embedders in PR.
17-
[#10016](https://github.com/bytecodealliance/wasmtime/pull/10016)
18-
19-
* `wasmtime-wasi` renamed some exported types and traits. Embedders which use
20-
`Pollable`, `InputStream`, `OutputStream`, `Subscribe`, `HostInputStream`,
21-
`HostOutputStream`, `PollableFuture`, or `ClosureFuture` from that crate
22-
will need to rename those imports to their new names, describe in PR.
23-
[#10036](https://github.com/bytecodealliance/wasmtime/pull/10036)
24-
25-
269
--------------------------------------------------------------------------------
2710

2811
Release notes for previous releases of Wasmtime can be found on the respective
2912
release branches of the Wasmtime repository.
3013

3114
<!-- ARCHIVE_START -->
15+
* [30.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-30.0.0/RELEASES.md)
3216
* [29.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-29.0.0/RELEASES.md)
3317
* [28.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-28.0.0/RELEASES.md)
3418
* [27.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-27.0.0/RELEASES.md)

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.0"
4+
version = "0.118.0"
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.118.0" }
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.0"
4+
version = "0.118.0"
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.0"
4+
version = "0.118.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.117.0"
4+
version = "0.118.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: 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.0"
4+
version = "0.118.0"
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.118.0" }
29+
cranelift-codegen-shared = { path = "./shared", version = "0.118.0" }
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.118.0" }
59+
cranelift-isle = { path = "../isle/isle", version = "=0.118.0" }
6060

6161
[features]
6262
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.0"
4+
version = "0.118.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,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.118.0" }
20+
cranelift-codegen-shared = { path = "../shared", version = "0.118.0" }
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.0"
4+
version = "0.118.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"

0 commit comments

Comments
 (0)