Skip to content

Commit 1d75a98

Browse files
authored
Bump crate versions (#950)
`wasm-tools-c-api` 0.1.1 => 0.1.1 `wasm-mutate-stats` 0.1.0 => 0.1.0 `wit-parser-fuzz` 0.0.1 => 0.0.1 `wasmparser` 0.101.1 => 0.102.0 `wasm-encoder` 0.24.1 => 0.25.0 `wasmprinter` 0.2.52 => 0.2.53 `wast` 54.0.1 => 55.0.0 `wat` 1.0.60 => 1.0.61 `wasm-smith` 0.12.4 => 0.12.5 `wasm-mutate` 0.2.20 => 0.2.21 `wasm-shrink` 0.1.21 => 0.1.22 `wasm-compose` 0.2.9 => 0.2.10 `wit-parser` 0.6.2 => 0.6.3 `wasm-metadata` 0.3.0 => 0.3.1 `wit-component` 0.7.1 => 0.7.2 `wasm-tools` 1.0.25 => 1.0.26 Notably this includes #944 which updates relaxed-simd support and #946 which restricts WIT and the component model's overlapping imports/exports.
1 parent 71c4990 commit 1d75a98

File tree

13 files changed

+25
-25
lines changed

13 files changed

+25
-25
lines changed

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-tools"
3-
version = "1.0.25"
3+
version = "1.0.26"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -42,18 +42,18 @@ wasmtime = { version = "3.0.0", default-features = false, features = ['cranelift
4242
url = "2.0.0"
4343
pretty_assertions = "1.3.0"
4444

45-
wasm-encoder = { version = "0.24.1", path = "crates/wasm-encoder"}
46-
wasm-compose = { version = "0.2.9", path = "crates/wasm-compose"}
47-
wasm-metadata = { version = "0.3.0", path = "crates/wasm-metadata" }
48-
wasm-mutate = { version = "0.2.20", path = "crates/wasm-mutate" }
49-
wasm-shrink = { version = "0.1.21", path = "crates/wasm-shrink" }
50-
wasm-smith = { version = "0.12.4", path = "crates/wasm-smith" }
51-
wasmparser = { version = "0.101.1", path = "crates/wasmparser" }
52-
wasmprinter = { version = "0.2.52", path = "crates/wasmprinter" }
53-
wast = { version = "54.0.1", path = "crates/wast" }
54-
wat = { version = "1.0.60", path = "crates/wat" }
55-
wit-component = { version = "0.7.1", path = "crates/wit-component" }
56-
wit-parser = { version = "0.6.2", path = "crates/wit-parser" }
45+
wasm-encoder = { version = "0.25.0", path = "crates/wasm-encoder"}
46+
wasm-compose = { version = "0.2.10", path = "crates/wasm-compose"}
47+
wasm-metadata = { version = "0.3.1", path = "crates/wasm-metadata" }
48+
wasm-mutate = { version = "0.2.21", path = "crates/wasm-mutate" }
49+
wasm-shrink = { version = "0.1.22", path = "crates/wasm-shrink" }
50+
wasm-smith = { version = "0.12.5", path = "crates/wasm-smith" }
51+
wasmparser = { version = "0.102.0", path = "crates/wasmparser" }
52+
wasmprinter = { version = "0.2.53", path = "crates/wasmprinter" }
53+
wast = { version = "55.0.0", path = "crates/wast" }
54+
wat = { version = "1.0.61", path = "crates/wat" }
55+
wit-component = { version = "0.7.2", path = "crates/wit-component" }
56+
wit-parser = { version = "0.6.3", path = "crates/wit-parser" }
5757

5858
[dependencies]
5959
anyhow = { workspace = true }

crates/wasm-compose/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-compose"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
edition.workspace = true
55
authors = ["Peter Huene <[email protected]>"]
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wasm-encoder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-encoder"
3-
version = "0.24.1"
3+
version = "0.25.0"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wasm-metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-metadata"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition.workspace = true
55
license = "Apache-2.0 WITH LLVM-exception"
66
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-metadata"

crates/wasm-mutate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-mutate"
3-
version = "0.2.20"
3+
version = "0.2.21"
44
edition.workspace = true
55
license = "Apache-2.0 WITH LLVM-exception"
66
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"

crates/wasm-shrink/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception"
88
readme = "./README.md"
99
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-shrink"
1010
name = "wasm-shrink"
11-
version = "0.1.21"
11+
version = "0.1.22"
1212

1313
[dependencies]
1414
anyhow = { workspace = true }

crates/wasm-smith/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception"
88
name = "wasm-smith"
99
readme = "./README.md"
1010
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-smith"
11-
version = "0.12.4"
11+
version = "0.12.5"
1212
exclude = ["/benches/corpus"]
1313

1414
[[bench]]

crates/wasmparser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmparser"
3-
version = "0.101.1"
3+
version = "0.102.0"
44
authors = ["Yury Delendik <[email protected]>"]
55
license = "Apache-2.0 WITH LLVM-exception"
66
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"

crates/wasmprinter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmprinter"
3-
version = "0.2.52"
3+
version = "0.2.53"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wast"
3-
version = "54.0.1"
3+
version = "55.0.0"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)