Skip to content

Commit fcb052f

Browse files
authored
Bump crate versions (bytecodealliance#616)
* Bump crate versions To help facilitate development of the component model in Wasmtime itself I wanted to release the current implementation of components in `*.wast` plus recent fixes for wasmparser/wasmprinter/etc. This'll all continue to change but publishing the current state should help unblock the Wasmtime changes. * Fix a failing test on `main` Currently `(start $f)` fails to compile because the loop that parses values expected a `(result ..)` to always be present, but it is not alwyas guaranteed to be present.
1 parent 9d4a730 commit fcb052f

File tree

10 files changed

+26
-26
lines changed

10 files changed

+26
-26
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-tools"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
authors = ["The Wasmtime Project Developers"]
55
edition = "2021"
66
description = "CLI tools for interoperating with WebAssembly files"
@@ -22,30 +22,30 @@ env_logger = "0.9"
2222
log = "0.4"
2323
clap = { version = "3.1.8", features = ['derive'] }
2424
tempfile = "3.2.0"
25-
wat = { path = "crates/wat", version = '1.0.42' }
25+
wat = { path = "crates/wat", version = '1.0.43' }
2626

2727
# Dependencies of `validate`
28-
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.84.0' }
28+
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.85.0' }
2929
rayon = { version = "1.0", optional = true }
3030

3131
# Dependencies of `print`
32-
wasmprinter = { path = "crates/wasmprinter", version = '0.2.34' }
32+
wasmprinter = { path = "crates/wasmprinter", version = '0.2.35' }
3333

3434
# Dependencies of `smith`
3535
arbitrary = { version = "1.0.0", optional = true }
3636
serde = { version = "1", features = ['derive'], optional = true }
3737
serde_json = { version = "1", optional = true }
38-
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.10.0' }
38+
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.10.1' }
3939

4040
# Dependencies of `shrink`
41-
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.4' }
41+
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.5' }
4242
is_executable = { version = "1.0.1", optional = true }
4343

4444
# Dependencies of `mutate`
45-
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.2' }
45+
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.3' }
4646

4747
# Dependencies of `dump`
48-
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.2' }
48+
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.3' }
4949

5050
[dev-dependencies]
5151
anyhow = "1.0"

crates/dump/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmparser-dump"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["The Wasmtime Project Developers"]
55
edition = "2021"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -9,4 +9,4 @@ description = "Utility to dump debug information about the wasm binary format"
99

1010
[dependencies]
1111
anyhow = "1"
12-
wasmparser = { path = "../wasmparser", version = "0.84.0" }
12+
wasmparser = { path = "../wasmparser", version = "0.85.0" }

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.11.0"
3+
version = "0.12.0"
44
authors = ["Nick Fitzgerald <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wasm-mutate/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm-mutate"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
license = "Apache-2.0 WITH LLVM-exception"
66
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"
@@ -9,8 +9,8 @@ description = "A WebAssembly test case mutator"
99
[dependencies]
1010
clap = { optional = true, version = "3.0", features = ['derive'] }
1111
thiserror = "1.0.28"
12-
wasmparser = { version = "0.84.0", path = "../wasmparser" }
13-
wasm-encoder = { version = "0.11.0", path = "../wasm-encoder"}
12+
wasmparser = { version = "0.85.0", path = "../wasmparser" }
13+
wasm-encoder = { version = "0.12.0", path = "../wasm-encoder"}
1414
rand = { version = "0.8.0", features = ["small_rng"] }
1515
log = "0.4.14"
1616
egg = "0.6.0"

crates/wasm-shrink/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ 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.4"
11+
version = "0.1.5"
1212

1313
[dependencies]
1414
anyhow = "1"
1515
blake3 = "1.2.0"
1616
log = "0.4"
1717
rand = { version = "0.8.4", features = ["small_rng"] }
1818
clap = { version = "3.0", optional = true, features = ['derive'] }
19-
wasm-mutate = { version = "0.2.2", path = "../wasm-mutate" }
20-
wasmparser = { version = "0.84.0", path = "../wasmparser" }
19+
wasm-mutate = { version = "0.2.3", path = "../wasm-mutate" }
20+
wasmparser = { version = "0.85.0", path = "../wasmparser" }
2121

2222
[dev-dependencies]
2323
env_logger = "0.9"

crates/wasm-smith/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.10.0"
11+
version = "0.10.1"
1212
exclude = ["/benches/corpus"]
1313

1414
[[bench]]
@@ -21,8 +21,8 @@ flagset = "0.4"
2121
indexmap = "1.6"
2222
leb128 = "0.2.4"
2323
serde = { version = "1", features = ['derive'], optional = true }
24-
wasm-encoder = { version = "0.11.0", path = "../wasm-encoder" }
25-
wasmparser = { version = "0.84", path = "../wasmparser" }
24+
wasm-encoder = { version = "0.12.0", path = "../wasm-encoder" }
25+
wasmparser = { version = "0.85.0", path = "../wasmparser" }
2626

2727
[dev-dependencies]
2828
criterion = "0.3.3"

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.84.0"
3+
version = "0.85.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmprinter"
3-
version = "0.2.34"
3+
version = "0.2.35"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -14,7 +14,7 @@ Rust converter from the WebAssembly binary format to the text format.
1414

1515
[dependencies]
1616
anyhow = "1.0"
17-
wasmparser = { path = '../wasmparser', version = '0.84.0' }
17+
wasmparser = { path = '../wasmparser', version = '0.85.0' }
1818

1919
[dev-dependencies]
2020
diff = "0.1"

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 = "40.0.0"
3+
version = "41.0.0"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0 WITH LLVM-exception"

crates/wat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wat"
3-
version = "1.0.42"
3+
version = "1.0.43"
44
authors = ["Alex Crichton <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -13,4 +13,4 @@ Rust parser for the WebAssembly Text format, WAT
1313
"""
1414

1515
[dependencies]
16-
wast = { path = '../wast', version = '40.0.0' }
16+
wast = { path = '../wast', version = '41.0.0' }

0 commit comments

Comments
 (0)