Skip to content

Commit c7bb472

Browse files
committed
Fix publishing mistake
Bump wasm-encoder's minor version along with all transitive dependencies. Fixes a mistake where I forgot to bump `wasm-encoder` earlier, and now everything will use the latest version of `wasm-encoder`.
1 parent 7595bdf commit c7bb472

14 files changed

Lines changed: 70 additions & 70 deletions

File tree

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.41"
3+
version = "1.0.42"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -44,19 +44,19 @@ url = "2.0.0"
4444
pretty_assertions = "1.3.0"
4545
semver = "1.0.0"
4646

47-
wasm-encoder = { version = "0.33.0", path = "crates/wasm-encoder" }
48-
wasm-compose = { version = "0.4.3", path = "crates/wasm-compose" }
49-
wasm-metadata = { version = "0.10.4", path = "crates/wasm-metadata" }
50-
wasm-mutate = { version = "0.2.33", path = "crates/wasm-mutate" }
51-
wasm-shrink = { version = "0.1.34", path = "crates/wasm-shrink" }
52-
wasm-smith = { version = "0.12.16", path = "crates/wasm-smith" }
53-
wasmparser = { version = "0.113.0", path = "crates/wasmparser" }
54-
wasmprinter = { version = "0.2.65", path = "crates/wasmprinter" }
55-
wast = { version = "65.0.0", path = "crates/wast" }
56-
wat = { version = "1.0.72", path = "crates/wat" }
57-
wit-component = { version = "0.14.1", path = "crates/wit-component" }
47+
wasm-encoder = { version = "0.33.1", path = "crates/wasm-encoder" }
48+
wasm-compose = { version = "0.4.4", path = "crates/wasm-compose" }
49+
wasm-metadata = { version = "0.10.5", path = "crates/wasm-metadata" }
50+
wasm-mutate = { version = "0.2.34", path = "crates/wasm-mutate" }
51+
wasm-shrink = { version = "0.1.35", path = "crates/wasm-shrink" }
52+
wasm-smith = { version = "0.12.17", path = "crates/wasm-smith" }
53+
wasmparser = { version = "0.113.1", path = "crates/wasmparser" }
54+
wasmprinter = { version = "0.2.66", path = "crates/wasmprinter" }
55+
wast = { version = "65.0.1", path = "crates/wast" }
56+
wat = { version = "1.0.73", path = "crates/wat" }
57+
wit-component = { version = "0.14.2", path = "crates/wit-component" }
5858
wit-parser = { version = "0.11.1", path = "crates/wit-parser" }
59-
wit-smith = { version = "0.1.11", path = "crates/wit-smith" }
59+
wit-smith = { version = "0.1.12", path = "crates/wit-smith" }
6060

6161
[dependencies]
6262
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.4.3"
3+
version = "0.4.4"
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.33.0"
3+
version = "0.33.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.4"
3+
version = "0.10.5"
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.33"
3+
version = "0.2.34"
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.34"
11+
version = "0.1.35"
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.16"
11+
version = "0.12.17"
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.113.0"
3+
version = "0.113.1"
44
authors = ["Yury Delendik <ydelendik@mozilla.com>"]
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.65"
3+
version = "0.2.66"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)