Skip to content

Commit a6160b3

Browse files
authored
Bump crate versions (#1385)
1 parent 6470aa9 commit a6160b3

File tree

14 files changed

+70
-70
lines changed

14 files changed

+70
-70
lines changed

Cargo.lock

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.55"
3+
version = "1.0.56"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -47,19 +47,19 @@ pretty_assertions = "1.3.0"
4747
semver = "1.0.0"
4848
smallvec = "1.11.1"
4949

50-
wasm-compose = { version = "0.5.0", path = "crates/wasm-compose" }
51-
wasm-encoder = { version = "0.39.0", path = "crates/wasm-encoder" }
52-
wasm-metadata = { version = "0.10.15", path = "crates/wasm-metadata" }
53-
wasm-mutate = { version = "0.2.44", path = "crates/wasm-mutate" }
54-
wasm-shrink = { version = "0.1.45", path = "crates/wasm-shrink" }
55-
wasm-smith = { version = "0.14.0", path = "crates/wasm-smith" }
56-
wasmparser = { version = "0.119.0", path = "crates/wasmparser" }
57-
wasmprinter = { version = "0.2.76", path = "crates/wasmprinter" }
58-
wast = { version = "70.0.0", path = "crates/wast" }
59-
wat = { version = "1.0.83", path = "crates/wat" }
60-
wit-component = { version = "0.19.1", path = "crates/wit-component" }
50+
wasm-compose = { version = "0.5.1", path = "crates/wasm-compose" }
51+
wasm-encoder = { version = "0.40.0", path = "crates/wasm-encoder" }
52+
wasm-metadata = { version = "0.10.16", path = "crates/wasm-metadata" }
53+
wasm-mutate = { version = "0.2.45", path = "crates/wasm-mutate" }
54+
wasm-shrink = { version = "0.1.46", path = "crates/wasm-shrink" }
55+
wasm-smith = { version = "0.15.0", path = "crates/wasm-smith" }
56+
wasmparser = { version = "0.120.0", path = "crates/wasmparser" }
57+
wasmprinter = { version = "0.2.77", path = "crates/wasmprinter" }
58+
wast = { version = "70.0.1", path = "crates/wast" }
59+
wat = { version = "1.0.84", path = "crates/wat" }
60+
wit-component = { version = "0.20.0", path = "crates/wit-component" }
6161
wit-parser = { version = "0.13.1", path = "crates/wit-parser" }
62-
wit-smith = { version = "0.1.25", path = "crates/wit-smith" }
62+
wit-smith = { version = "0.1.26", path = "crates/wit-smith" }
6363

6464
[dependencies]
6565
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.5.0"
3+
version = "0.5.1"
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.39.0"
3+
version = "0.40.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.10.15"
3+
version = "0.10.16"
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.44"
3+
version = "0.2.45"
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.45"
11+
version = "0.1.46"
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.14.0"
11+
version = "0.15.0"
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.119.0"
3+
version = "0.120.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.76"
3+
version = "0.2.77"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)