Skip to content

Commit b946fd6

Browse files
Bump Wasmtime to 25.0.0 (bytecodealliance#9077)
Co-authored-by: Wasmtime Publish <[email protected]>
1 parent a0442ea commit b946fd6

File tree

24 files changed

+315
-130
lines changed

24 files changed

+315
-130
lines changed

Cargo.lock

Lines changed: 58 additions & 58 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
@@ -156,7 +156,7 @@ exclude = [
156156
]
157157

158158
[workspace.package]
159-
version = "24.0.0"
159+
version = "25.0.0"
160160
authors = ["The Wasmtime Project Developers"]
161161
edition = "2021"
162162
# Wasmtime's current policy is that this number can be no larger than the
@@ -184,60 +184,60 @@ manual_strip = 'warn'
184184

185185
[workspace.dependencies]
186186
arbitrary = { version = "1.3.1" }
187-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=24.0.0" }
188-
wasmtime = { path = "crates/wasmtime", version = "24.0.0", default-features = false }
189-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=24.0.0" }
190-
wasmtime-cache = { path = "crates/cache", version = "=24.0.0" }
191-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=24.0.0" }
192-
wasmtime-cranelift = { path = "crates/cranelift", version = "=24.0.0" }
193-
wasmtime-winch = { path = "crates/winch", version = "=24.0.0" }
194-
wasmtime-environ = { path = "crates/environ", version = "=24.0.0" }
195-
wasmtime-explorer = { path = "crates/explorer", version = "=24.0.0" }
196-
wasmtime-fiber = { path = "crates/fiber", version = "=24.0.0" }
197-
wasmtime-types = { path = "crates/types", version = "24.0.0" }
198-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=24.0.0" }
199-
wasmtime-wast = { path = "crates/wast", version = "=24.0.0" }
200-
wasmtime-wasi = { path = "crates/wasi", version = "24.0.0", default-features = false }
201-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=24.0.0", default-features = false }
202-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "24.0.0" }
203-
wasmtime-wasi-runtime-config = { path = "crates/wasi-runtime-config", version = "24.0.0" }
204-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "24.0.0" }
205-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "24.0.0" }
206-
wasmtime-component-util = { path = "crates/component-util", version = "=24.0.0" }
207-
wasmtime-component-macro = { path = "crates/component-macro", version = "=24.0.0" }
208-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=24.0.0" }
209-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=24.0.0" }
210-
wasmtime-slab = { path = "crates/slab", version = "=24.0.0" }
187+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=25.0.0" }
188+
wasmtime = { path = "crates/wasmtime", version = "25.0.0", default-features = false }
189+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=25.0.0" }
190+
wasmtime-cache = { path = "crates/cache", version = "=25.0.0" }
191+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=25.0.0" }
192+
wasmtime-cranelift = { path = "crates/cranelift", version = "=25.0.0" }
193+
wasmtime-winch = { path = "crates/winch", version = "=25.0.0" }
194+
wasmtime-environ = { path = "crates/environ", version = "=25.0.0" }
195+
wasmtime-explorer = { path = "crates/explorer", version = "=25.0.0" }
196+
wasmtime-fiber = { path = "crates/fiber", version = "=25.0.0" }
197+
wasmtime-types = { path = "crates/types", version = "25.0.0" }
198+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=25.0.0" }
199+
wasmtime-wast = { path = "crates/wast", version = "=25.0.0" }
200+
wasmtime-wasi = { path = "crates/wasi", version = "25.0.0", default-features = false }
201+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=25.0.0", default-features = false }
202+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "25.0.0" }
203+
wasmtime-wasi-runtime-config = { path = "crates/wasi-runtime-config", version = "25.0.0" }
204+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "25.0.0" }
205+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "25.0.0" }
206+
wasmtime-component-util = { path = "crates/component-util", version = "=25.0.0" }
207+
wasmtime-component-macro = { path = "crates/component-macro", version = "=25.0.0" }
208+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=25.0.0" }
209+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=25.0.0" }
210+
wasmtime-slab = { path = "crates/slab", version = "=25.0.0" }
211211
component-test-util = { path = "crates/misc/component-test-util" }
212212
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
213-
wiggle = { path = "crates/wiggle", version = "=24.0.0", default-features = false }
214-
wiggle-macro = { path = "crates/wiggle/macro", version = "=24.0.0" }
215-
wiggle-generate = { path = "crates/wiggle/generate", version = "=24.0.0" }
216-
wasi-common = { path = "crates/wasi-common", version = "=24.0.0", default-features = false }
213+
wiggle = { path = "crates/wiggle", version = "=25.0.0", default-features = false }
214+
wiggle-macro = { path = "crates/wiggle/macro", version = "=25.0.0" }
215+
wiggle-generate = { path = "crates/wiggle/generate", version = "=25.0.0" }
216+
wasi-common = { path = "crates/wasi-common", version = "=25.0.0", default-features = false }
217217
wasmtime-fuzzing = { path = "crates/fuzzing" }
218-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=24.0.0" }
219-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=24.0.0" }
218+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=25.0.0" }
219+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=25.0.0" }
220220
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
221221
pulley-interpreter-fuzz = { path = 'pulley/fuzz' }
222222

223-
cranelift-wasm = { path = "cranelift/wasm", version = "0.111.0" }
224-
cranelift-codegen = { path = "cranelift/codegen", version = "0.111.0", default-features = false, features = ["std", "unwind", "trace-log"] }
225-
cranelift-frontend = { path = "cranelift/frontend", version = "0.111.0" }
226-
cranelift-entity = { path = "cranelift/entity", version = "0.111.0" }
227-
cranelift-native = { path = "cranelift/native", version = "0.111.0" }
228-
cranelift-module = { path = "cranelift/module", version = "0.111.0" }
229-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.111.0" }
230-
cranelift-reader = { path = "cranelift/reader", version = "0.111.0" }
223+
cranelift-wasm = { path = "cranelift/wasm", version = "0.112.0" }
224+
cranelift-codegen = { path = "cranelift/codegen", version = "0.112.0", default-features = false, features = ["std", "unwind", "trace-log"] }
225+
cranelift-frontend = { path = "cranelift/frontend", version = "0.112.0" }
226+
cranelift-entity = { path = "cranelift/entity", version = "0.112.0" }
227+
cranelift-native = { path = "cranelift/native", version = "0.112.0" }
228+
cranelift-module = { path = "cranelift/module", version = "0.112.0" }
229+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.112.0" }
230+
cranelift-reader = { path = "cranelift/reader", version = "0.112.0" }
231231
cranelift-filetests = { path = "cranelift/filetests" }
232-
cranelift-object = { path = "cranelift/object", version = "0.111.0" }
233-
cranelift-jit = { path = "cranelift/jit", version = "0.111.0" }
232+
cranelift-object = { path = "cranelift/object", version = "0.112.0" }
233+
cranelift-jit = { path = "cranelift/jit", version = "0.112.0" }
234234
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
235-
cranelift-bforest = { path = "cranelift/bforest", version = "0.111.0" }
236-
cranelift-bitset = { path = "cranelift/bitset", version = "0.111.0" }
237-
cranelift-control = { path = "cranelift/control", version = "0.111.0" }
238-
cranelift = { path = "cranelift/umbrella", version = "0.111.0" }
235+
cranelift-bforest = { path = "cranelift/bforest", version = "0.112.0" }
236+
cranelift-bitset = { path = "cranelift/bitset", version = "0.112.0" }
237+
cranelift-control = { path = "cranelift/control", version = "0.112.0" }
238+
cranelift = { path = "cranelift/umbrella", version = "0.112.0" }
239239

240-
winch-codegen = { path = "winch/codegen", version = "=0.22.0" }
240+
winch-codegen = { path = "winch/codegen", version = "=0.23.0" }
241241

242242
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
243243
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-
## 24.0.0
1+
## 25.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+
* [24.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-24.0.0/RELEASES.md)
1516
* [23.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-23.0.0/RELEASES.md)
1617
* [22.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-22.0.0/RELEASES.md)
1718
* [21.0.x](https://github.com/bytecodealliance/wasmtime/blob/release-21.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.111.0"
4+
version = "0.112.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.111.0"
4+
version = "0.112.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.111.0"
4+
version = "0.112.0"
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.111.0" }
22+
cranelift-codegen-shared = { path = "./shared", version = "0.112.0" }
2323
cranelift-entity = { workspace = true }
2424
cranelift-bforest = { workspace = true }
2525
cranelift-bitset = { workspace = true }
@@ -47,8 +47,8 @@ similar = "2.1.0"
4747
env_logger = { workspace = true }
4848

4949
[build-dependencies]
50-
cranelift-codegen-meta = { path = "meta", version = "0.111.0" }
51-
cranelift-isle = { path = "../isle/isle", version = "=0.111.0" }
50+
cranelift-codegen-meta = { path = "meta", version = "0.112.0" }
51+
cranelift-isle = { path = "../isle/isle", version = "=0.112.0" }
5252

5353
[features]
5454
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.111.0"
4+
version = "0.112.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"
@@ -15,4 +15,4 @@ workspace = true
1515
rustdoc-args = [ "--document-private-items" ]
1616

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

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.111.0"
4+
version = "0.112.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.111.0"
4+
version = "0.112.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.111.0"
4+
version = "0.112.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)