Skip to content

Commit 39a6029

Browse files
authored
Bump crate version (#1311)
Primarily getting #1310 out into the wild.
1 parent e091f29 commit 39a6029

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

49-
wasm-compose = { version = "0.4.15", path = "crates/wasm-compose" }
50-
wasm-encoder = { version = "0.38.0", path = "crates/wasm-encoder" }
51-
wasm-metadata = { version = "0.10.13", path = "crates/wasm-metadata" }
52-
wasm-mutate = { version = "0.2.42", path = "crates/wasm-mutate" }
53-
wasm-shrink = { version = "0.1.43", path = "crates/wasm-shrink" }
54-
wasm-smith = { version = "0.13.0", path = "crates/wasm-smith" }
55-
wasmparser = { version = "0.118.0", path = "crates/wasmparser" }
56-
wasmprinter = { version = "0.2.74", path = "crates/wasmprinter" }
57-
wast = { version = "69.0.0", path = "crates/wast" }
58-
wat = { version = "1.0.81", path = "crates/wat" }
59-
wit-component = { version = "0.18.2", path = "crates/wit-component" }
49+
wasm-compose = { version = "0.4.16", path = "crates/wasm-compose" }
50+
wasm-encoder = { version = "0.38.1", path = "crates/wasm-encoder" }
51+
wasm-metadata = { version = "0.10.14", path = "crates/wasm-metadata" }
52+
wasm-mutate = { version = "0.2.43", path = "crates/wasm-mutate" }
53+
wasm-shrink = { version = "0.1.44", path = "crates/wasm-shrink" }
54+
wasm-smith = { version = "0.13.1", path = "crates/wasm-smith" }
55+
wasmparser = { version = "0.118.1", path = "crates/wasmparser" }
56+
wasmprinter = { version = "0.2.75", path = "crates/wasmprinter" }
57+
wast = { version = "69.0.1", path = "crates/wast" }
58+
wat = { version = "1.0.82", path = "crates/wat" }
59+
wit-component = { version = "0.19.0", path = "crates/wit-component" }
6060
wit-parser = { version = "0.13.0", path = "crates/wit-parser" }
61-
wit-smith = { version = "0.1.23", path = "crates/wit-smith" }
61+
wit-smith = { version = "0.1.24", path = "crates/wit-smith" }
6262

6363
[dependencies]
6464
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.15"
3+
version = "0.4.16"
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.38.0"
3+
version = "0.38.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.13"
3+
version = "0.10.14"
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.42"
3+
version = "0.2.43"
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.43"
11+
version = "0.1.44"
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.13.0"
11+
version = "0.13.1"
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.118.0"
3+
version = "0.118.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.74"
3+
version = "0.2.75"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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 = "69.0.0"
3+
version = "69.0.1"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wat/Cargo.toml

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

0 commit comments

Comments
 (0)