Skip to content

Commit 1bdf2c2

Browse files
Release Wasmtime 28.0.1 (#10015)
* Release Wasmtime 28.0.1 [automatically-tag-and-release-this-commit] * Write release notes --------- Co-authored-by: Wasmtime Publish <[email protected]> Co-authored-by: Alex Crichton <[email protected]>
1 parent d0b7ff3 commit 1bdf2c2

File tree

22 files changed

+419
-220
lines changed

22 files changed

+419
-220
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: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ exclude = [
161161
]
162162

163163
[workspace.package]
164-
version = "28.0.0"
164+
version = "28.0.1"
165165
authors = ["The Wasmtime Project Developers"]
166166
edition = "2021"
167167
# Wasmtime's current policy is that this number can be no larger than the
@@ -197,60 +197,60 @@ allow_attributes_without_reason = 'warn'
197197

198198
[workspace.dependencies]
199199
arbitrary = { version = "1.3.1" }
200-
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=28.0.0" }
201-
wasmtime = { path = "crates/wasmtime", version = "28.0.0", default-features = false }
202-
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=28.0.0" }
203-
wasmtime-cache = { path = "crates/cache", version = "=28.0.0" }
204-
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=28.0.0" }
205-
wasmtime-cranelift = { path = "crates/cranelift", version = "=28.0.0" }
206-
wasmtime-winch = { path = "crates/winch", version = "=28.0.0" }
207-
wasmtime-environ = { path = "crates/environ", version = "=28.0.0" }
208-
wasmtime-explorer = { path = "crates/explorer", version = "=28.0.0" }
209-
wasmtime-fiber = { path = "crates/fiber", version = "=28.0.0" }
210-
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=28.0.0" }
211-
wasmtime-wast = { path = "crates/wast", version = "=28.0.0" }
212-
wasmtime-wasi = { path = "crates/wasi", version = "28.0.0", default-features = false }
213-
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=28.0.0", default-features = false }
214-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "28.0.0" }
215-
wasmtime-wasi-config = { path = "crates/wasi-config", version = "28.0.0" }
216-
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "28.0.0" }
217-
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "28.0.0" }
218-
wasmtime-component-util = { path = "crates/component-util", version = "=28.0.0" }
219-
wasmtime-component-macro = { path = "crates/component-macro", version = "=28.0.0" }
220-
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=28.0.0" }
221-
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=28.0.0" }
222-
wasmtime-slab = { path = "crates/slab", version = "=28.0.0" }
200+
wasmtime-wmemcheck = { path = "crates/wmemcheck", version = "=28.0.1" }
201+
wasmtime = { path = "crates/wasmtime", version = "28.0.1", default-features = false }
202+
wasmtime-c-api-macros = { path = "crates/c-api-macros", version = "=28.0.1" }
203+
wasmtime-cache = { path = "crates/cache", version = "=28.0.1" }
204+
wasmtime-cli-flags = { path = "crates/cli-flags", version = "=28.0.1" }
205+
wasmtime-cranelift = { path = "crates/cranelift", version = "=28.0.1" }
206+
wasmtime-winch = { path = "crates/winch", version = "=28.0.1" }
207+
wasmtime-environ = { path = "crates/environ", version = "=28.0.1" }
208+
wasmtime-explorer = { path = "crates/explorer", version = "=28.0.1" }
209+
wasmtime-fiber = { path = "crates/fiber", version = "=28.0.1" }
210+
wasmtime-jit-debug = { path = "crates/jit-debug", version = "=28.0.1" }
211+
wasmtime-wast = { path = "crates/wast", version = "=28.0.1" }
212+
wasmtime-wasi = { path = "crates/wasi", version = "28.0.1", default-features = false }
213+
wasmtime-wasi-http = { path = "crates/wasi-http", version = "=28.0.1", default-features = false }
214+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "28.0.1" }
215+
wasmtime-wasi-config = { path = "crates/wasi-config", version = "28.0.1" }
216+
wasmtime-wasi-keyvalue = { path = "crates/wasi-keyvalue", version = "28.0.1" }
217+
wasmtime-wasi-threads = { path = "crates/wasi-threads", version = "28.0.1" }
218+
wasmtime-component-util = { path = "crates/component-util", version = "=28.0.1" }
219+
wasmtime-component-macro = { path = "crates/component-macro", version = "=28.0.1" }
220+
wasmtime-asm-macros = { path = "crates/asm-macros", version = "=28.0.1" }
221+
wasmtime-versioned-export-macros = { path = "crates/versioned-export-macros", version = "=28.0.1" }
222+
wasmtime-slab = { path = "crates/slab", version = "=28.0.1" }
223223
component-test-util = { path = "crates/misc/component-test-util" }
224224
component-fuzz-util = { path = "crates/misc/component-fuzz-util" }
225-
wiggle = { path = "crates/wiggle", version = "=28.0.0", default-features = false }
226-
wiggle-macro = { path = "crates/wiggle/macro", version = "=28.0.0" }
227-
wiggle-generate = { path = "crates/wiggle/generate", version = "=28.0.0" }
228-
wasi-common = { path = "crates/wasi-common", version = "=28.0.0", default-features = false }
225+
wiggle = { path = "crates/wiggle", version = "=28.0.1", default-features = false }
226+
wiggle-macro = { path = "crates/wiggle/macro", version = "=28.0.1" }
227+
wiggle-generate = { path = "crates/wiggle/generate", version = "=28.0.1" }
228+
wasi-common = { path = "crates/wasi-common", version = "=28.0.1", default-features = false }
229229
wasmtime-fuzzing = { path = "crates/fuzzing" }
230-
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=28.0.0" }
231-
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=28.0.0" }
230+
wasmtime-jit-icache-coherence = { path = "crates/jit-icache-coherence", version = "=28.0.1" }
231+
wasmtime-wit-bindgen = { path = "crates/wit-bindgen", version = "=28.0.1" }
232232
test-programs-artifacts = { path = 'crates/test-programs/artifacts' }
233233

234-
pulley-interpreter = { path = 'pulley', version = "=28.0.0" }
234+
pulley-interpreter = { path = 'pulley', version = "=28.0.1" }
235235
pulley-interpreter-fuzz = { path = 'pulley/fuzz' }
236236

237-
cranelift-codegen = { path = "cranelift/codegen", version = "0.115.0", default-features = false, features = ["std", "unwind"] }
238-
cranelift-frontend = { path = "cranelift/frontend", version = "0.115.0" }
239-
cranelift-entity = { path = "cranelift/entity", version = "0.115.0" }
240-
cranelift-native = { path = "cranelift/native", version = "0.115.0" }
241-
cranelift-module = { path = "cranelift/module", version = "0.115.0" }
242-
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.115.0" }
243-
cranelift-reader = { path = "cranelift/reader", version = "0.115.0" }
237+
cranelift-codegen = { path = "cranelift/codegen", version = "0.115.1", default-features = false, features = ["std", "unwind"] }
238+
cranelift-frontend = { path = "cranelift/frontend", version = "0.115.1" }
239+
cranelift-entity = { path = "cranelift/entity", version = "0.115.1" }
240+
cranelift-native = { path = "cranelift/native", version = "0.115.1" }
241+
cranelift-module = { path = "cranelift/module", version = "0.115.1" }
242+
cranelift-interpreter = { path = "cranelift/interpreter", version = "0.115.1" }
243+
cranelift-reader = { path = "cranelift/reader", version = "0.115.1" }
244244
cranelift-filetests = { path = "cranelift/filetests" }
245-
cranelift-object = { path = "cranelift/object", version = "0.115.0" }
246-
cranelift-jit = { path = "cranelift/jit", version = "0.115.0" }
245+
cranelift-object = { path = "cranelift/object", version = "0.115.1" }
246+
cranelift-jit = { path = "cranelift/jit", version = "0.115.1" }
247247
cranelift-fuzzgen = { path = "cranelift/fuzzgen" }
248-
cranelift-bforest = { path = "cranelift/bforest", version = "0.115.0" }
249-
cranelift-bitset = { path = "cranelift/bitset", version = "0.115.0" }
250-
cranelift-control = { path = "cranelift/control", version = "0.115.0" }
251-
cranelift = { path = "cranelift/umbrella", version = "0.115.0" }
248+
cranelift-bforest = { path = "cranelift/bforest", version = "0.115.1" }
249+
cranelift-bitset = { path = "cranelift/bitset", version = "0.115.1" }
250+
cranelift-control = { path = "cranelift/control", version = "0.115.1" }
251+
cranelift = { path = "cranelift/umbrella", version = "0.115.1" }
252252

253-
winch-codegen = { path = "winch/codegen", version = "=28.0.0" }
253+
winch-codegen = { path = "winch/codegen", version = "=28.0.1" }
254254

255255
wasi-preview1-component-adapter = { path = "crates/wasi-preview1-component-adapter" }
256256
byte-array-literals = { path = "crates/wasi-preview1-component-adapter/byte-array-literals" }

RELEASES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 28.0.1
2+
3+
Released 2025-01-14.
4+
5+
### Fixed
6+
7+
* Fixed deallocating async stacks when using `Store::into_data`.
8+
[#10009](https://github.com/bytecodealliance/wasmtime/pull/10009)
9+
10+
--------------------------------------------------------------------------------
11+
112
## 28.0.0
213

314
Released 2024-12-20.

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.115.0"
4+
version = "0.115.1"
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.115.0"
4+
version = "0.115.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"

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.115.0"
4+
version = "0.115.1"
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.115.0" }
27+
cranelift-codegen-shared = { path = "./shared", version = "0.115.1" }
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.115.0" }
57-
cranelift-isle = { path = "../isle/isle", version = "=0.115.0" }
56+
cranelift-codegen-meta = { path = "meta", version = "0.115.1" }
57+
cranelift-isle = { path = "../isle/isle", version = "=0.115.1" }
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.115.0"
4+
version = "0.115.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,4 +16,4 @@ workspace = true
1616
rustdoc-args = [ "--document-private-items" ]
1717

1818
[dependencies]
19-
cranelift-codegen-shared = { path = "../shared", version = "0.115.0" }
19+
cranelift-codegen-shared = { path = "../shared", version = "0.115.1" }

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.115.0"
4+
version = "0.115.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"

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.115.0"
4+
version = "0.115.1"
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.115.0"
4+
version = "0.115.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"

0 commit comments

Comments
 (0)