Skip to content

Commit dbf9666

Browse files
authored
Bump crate versions (#1406)
Mostly minor releases here, only `wast` has a major bump.
1 parent 7eae522 commit dbf9666

File tree

15 files changed

+78
-78
lines changed

15 files changed

+78
-78
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-tools"
3-
version = "1.0.57"
3+
version = "1.0.58"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -56,19 +56,19 @@ pretty_assertions = "1.3.0"
5656
semver = "1.0.0"
5757
smallvec = "1.11.1"
5858

59-
wasm-compose = { version = "0.5.2", path = "crates/wasm-compose" }
60-
wasm-encoder = { version = "0.41.0", path = "crates/wasm-encoder" }
61-
wasm-metadata = { version = "0.10.17", path = "crates/wasm-metadata" }
62-
wasm-mutate = { version = "0.2.46", path = "crates/wasm-mutate" }
63-
wasm-shrink = { version = "0.1.47", path = "crates/wasm-shrink" }
64-
wasm-smith = { version = "0.15.1", path = "crates/wasm-smith" }
65-
wasmparser = { version = "0.121.0", path = "crates/wasmparser" }
66-
wasmprinter = { version = "0.2.78", path = "crates/wasmprinter" }
67-
wast = { version = "70.0.2", path = "crates/wast" }
68-
wat = { version = "1.0.85", path = "crates/wat" }
69-
wit-component = { version = "0.20.1", path = "crates/wit-component" }
70-
wit-parser = { version = "0.13.1", path = "crates/wit-parser" }
71-
wit-smith = { version = "0.1.27", path = "crates/wit-smith" }
59+
wasm-compose = { version = "0.5.3", path = "crates/wasm-compose" }
60+
wasm-encoder = { version = "0.41.1", path = "crates/wasm-encoder" }
61+
wasm-metadata = { version = "0.10.18", path = "crates/wasm-metadata" }
62+
wasm-mutate = { version = "0.2.47", path = "crates/wasm-mutate" }
63+
wasm-shrink = { version = "0.1.48", path = "crates/wasm-shrink" }
64+
wasm-smith = { version = "0.15.2", path = "crates/wasm-smith" }
65+
wasmparser = { version = "0.121.1", path = "crates/wasmparser" }
66+
wasmprinter = { version = "0.2.79", path = "crates/wasmprinter" }
67+
wast = { version = "71.0.0", path = "crates/wast" }
68+
wat = { version = "1.0.86", path = "crates/wat" }
69+
wit-component = { version = "0.20.2", path = "crates/wit-component" }
70+
wit-parser = { version = "0.13.2", path = "crates/wit-parser" }
71+
wit-smith = { version = "0.1.28", path = "crates/wit-smith" }
7272

7373
[dependencies]
7474
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.2"
3+
version = "0.5.3"
44
edition.workspace = true
55
authors = ["Peter Huene <peter@huene.dev>"]
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.41.0"
3+
version = "0.41.1"
44
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
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.17"
3+
version = "0.10.18"
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.46"
3+
version = "0.2.47"
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.47"
11+
version = "0.1.48"
1212

1313
[lints]
1414
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.15.1"
11+
version = "0.15.2"
1212
exclude = ["/benches/corpus"]
1313

1414
[[bench]]

0 commit comments

Comments
 (0)