Skip to content

Commit fadbdc6

Browse files
authored
Bump crate versions for release (#815)
1 parent 31e4f11 commit fadbdc6

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-tools"
3-
version = "1.0.13"
3+
version = "1.0.14"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -39,16 +39,16 @@ rayon = "1.3"
3939
serde = { version = "1.0.137", features = ["derive"] }
4040
wasmtime = "1.0.0"
4141

42-
wasm-encoder = { version = "0.19.0", path = "crates/wasm-encoder"}
43-
wasm-compose = { version = "0.1.4", path = "crates/wasm-compose"}
44-
wasm-mutate = { version = "0.2.10", path = "crates/wasm-mutate" }
45-
wasm-shrink = { version = "0.1.12", path = "crates/wasm-shrink" }
46-
wasm-smith = { version = "0.11.7", path = "crates/wasm-smith" }
47-
wasmparser = { version = "0.93.0", path = "crates/wasmparser" }
48-
wasmparser-dump = { version = "0.1.10", path = "crates/dump" }
49-
wasmprinter = { version = "0.2.42", path = "crates/wasmprinter" }
50-
wast = { version = "48.0.0", path = "crates/wast" }
51-
wat = { version = "1.0.50", path = "crates/wat" }
42+
wasm-encoder = { version = "0.19.1", path = "crates/wasm-encoder"}
43+
wasm-compose = { version = "0.2.0", path = "crates/wasm-compose"}
44+
wasm-mutate = { version = "0.2.11", path = "crates/wasm-mutate" }
45+
wasm-shrink = { version = "0.1.13", path = "crates/wasm-shrink" }
46+
wasm-smith = { version = "0.11.8", path = "crates/wasm-smith" }
47+
wasmparser = { version = "0.94.0", path = "crates/wasmparser" }
48+
wasmparser-dump = { version = "0.1.11", path = "crates/dump" }
49+
wasmprinter = { version = "0.2.43", path = "crates/wasmprinter" }
50+
wast = { version = "49.0.0", path = "crates/wast" }
51+
wat = { version = "1.0.51", path = "crates/wat" }
5252

5353
[dependencies]
5454
anyhow = { workspace = true }

crates/dump/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-dump"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
authors = ["The Wasmtime Project Developers"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

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.1.4"
3+
version = "0.2.0"
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.19.0"
3+
version = "0.19.1"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
edition.workspace = true
66
license = "Apache-2.0 WITH LLVM-exception"

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.10"
3+
version = "0.2.11"
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.12"
11+
version = "0.1.13"
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.11.7"
11+
version = "0.11.8"
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.93.0"
3+
version = "0.94.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.42"
3+
version = "0.2.43"
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 = "48.0.0"
3+
version = "49.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)