Skip to content

Commit ca2e770

Browse files
authored
Bump crate versions (#931)
1 parent de36f6c commit ca2e770

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-tools"
3-
version = "1.0.23"
3+
version = "1.0.24"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -42,17 +42,17 @@ 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.23.0", path = "crates/wasm-encoder"}
46-
wasm-compose = { version = "0.2.7", path = "crates/wasm-compose"}
47-
wasm-metadata = { version = "0.1.2", path = "crates/wasm-metadata" }
48-
wasm-mutate = { version = "0.2.18", path = "crates/wasm-mutate" }
49-
wasm-shrink = { version = "0.1.19", path = "crates/wasm-shrink" }
50-
wasm-smith = { version = "0.12.2", path = "crates/wasm-smith" }
51-
wasmparser = { version = "0.100.0", path = "crates/wasmparser" }
52-
wasmprinter = { version = "0.2.50", path = "crates/wasmprinter" }
53-
wast = { version = "53.0.0", path = "crates/wast" }
54-
wat = { version = "1.0.58", path = "crates/wat" }
55-
wit-component = { version = "0.6.0", path = "crates/wit-component" }
45+
wasm-encoder = { version = "0.24.0", path = "crates/wasm-encoder"}
46+
wasm-compose = { version = "0.2.8", path = "crates/wasm-compose"}
47+
wasm-metadata = { version = "0.2.0", path = "crates/wasm-metadata" }
48+
wasm-mutate = { version = "0.2.19", path = "crates/wasm-mutate" }
49+
wasm-shrink = { version = "0.1.20", path = "crates/wasm-shrink" }
50+
wasm-smith = { version = "0.12.3", path = "crates/wasm-smith" }
51+
wasmparser = { version = "0.101.0", path = "crates/wasmparser" }
52+
wasmprinter = { version = "0.2.51", path = "crates/wasmprinter" }
53+
wast = { version = "54.0.0", path = "crates/wast" }
54+
wat = { version = "1.0.59", path = "crates/wat" }
55+
wit-component = { version = "0.7.0", path = "crates/wit-component" }
5656
wit-parser = { version = "0.6.0", path = "crates/wit-parser" }
5757

5858
[dependencies]

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.7"
3+
version = "0.2.8"
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.23.0"
3+
version = "0.24.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.1.2"
3+
version = "0.2.0"
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.18"
3+
version = "0.2.19"
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.19"
11+
version = "0.1.20"
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.2"
11+
version = "0.12.3"
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.100.0"
3+
version = "0.101.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.50"
3+
version = "0.2.51"
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 = "53.0.0"
3+
version = "54.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)