Skip to content

Commit

Permalink
Bump crate versions (#772)
Browse files Browse the repository at this point in the history
Release recent changes such as:

* Updates to component model support
* Relaxed-simd updates
* Various misc improvements in the meantime
  • Loading branch information
alexcrichton committed Sep 21, 2022
1 parent f9a5709 commit 4e14cec
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 36 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.10"
version = "1.0.11"
authors = ["The Wasmtime Project Developers"]
edition = "2021"
description = "CLI tools for interoperating with WebAssembly files"
Expand All @@ -22,36 +22,36 @@ env_logger = "0.9"
log = "0.4"
clap = { version = "3.1.8", features = ['derive'] }
tempfile = "3.2.0"
wat = { path = "crates/wat", version = '1.0.48' }
wat = { path = "crates/wat", version = '1.0.49' }

# Dependencies of `validate`
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.90.0' }
wasmparser = { path = "crates/wasmparser", optional = true, version = '0.91.0' }
rayon = { version = "1.0", optional = true }

# Dependencies of `print`
wasmprinter = { path = "crates/wasmprinter", version = '0.2.39' }
wasmprinter = { path = "crates/wasmprinter", version = '0.2.40' }

# Dependencies of `smith`
arbitrary = { version = "1.0.0", optional = true }
serde = { version = "1", features = ['derive'], optional = true }
serde_json = { version = "1", optional = true }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.11.4' }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.11.5' }

# Dependencies of `shrink`
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.9' }
wasm-shrink = { path = "crates/wasm-shrink", features = ["clap"], optional = true, version = '0.1.10' }
is_executable = { version = "1.0.1", optional = true }

# Dependencies of `mutate`
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.7' }
wasm-mutate = { path = "crates/wasm-mutate", features = ["clap"], optional = true, version = '0.2.8' }

# Dependencies of `dump`
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.7' }
wasmparser-dump = { path = "crates/dump", optional = true, version = '0.1.8' }

# Dependencies of `strip`
wasm-encoder = { path = "crates/wasm-encoder", optional = true, version = '0.16.0' }
wasm-encoder = { path = "crates/wasm-encoder", optional = true, version = '0.17.0' }

# Dependencies of `compose`
wasm-compose = { path = "crates/wasm-compose", optional = true, version = '0.1.0', features = ['cli'] }
wasm-compose = { path = "crates/wasm-compose", optional = true, version = '0.1.1', features = ['cli'] }

[dev-dependencies]
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/c-api/Cargo.toml
Expand Up @@ -23,7 +23,7 @@ wasmparser-dump = { version = "0.1.4", path = "../dump" }
wasm-mutate = { version = "0.2.4", path = "../wasm-mutate" }
wasm-shrink = { version = "0.1.6", path = "../wasm-shrink" }
wasm-smith = { version = "0.11.2", path = "../wasm-smith" }
wasmparser = { version = "0.90.0", path = "../wasmparser" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }
wasmprinter = { version = "0.2.36", path = "../wasmprinter" }
wast = { version = "46.0.0", path = "../wast" }
wast = { version = "47.0.0", path = "../wast" }
wat = { version = "1.0.44", path = "../wat" }
4 changes: 2 additions & 2 deletions crates/dump/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmparser-dump"
version = "0.1.7"
version = "0.1.8"
authors = ["The Wasmtime Project Developers"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -9,4 +9,4 @@ description = "Utility to dump debug information about the wasm binary format"

[dependencies]
anyhow = "1"
wasmparser = { path = "../wasmparser", version = "0.90.0" }
wasmparser = { path = "../wasmparser", version = "0.91.0" }
10 changes: 5 additions & 5 deletions crates/wasm-compose/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-compose"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Peter Huene <peter@huene.dev>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -11,9 +11,9 @@ documentation = "https://docs.rs/wasm-compose"
description = "A library for composing WebAssembly components."

[dependencies]
wat = { version = "1.0.48", path = "../wat" }
wasm-encoder = { version = "0.16.0", path = "../wasm-encoder" }
wasmparser = { version = "0.90.0", path = "../wasmparser" }
wat = { version = "1.0.49", path = "../wat" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }
indexmap = { version = "1.9.1", features = ["serde"] }
anyhow = "1.0.58"
serde = { version = "1.0.137", features = ["derive"] }
Expand All @@ -29,4 +29,4 @@ cli = ["clap"]
[dev-dependencies]
glob = "0.3.0"
pretty_assertions = "1.2.1"
wasmprinter = { version = "0.2.39", path = "../wasmprinter" }
wasmprinter = { version = "0.2.40", path = "../wasmprinter" }
2 changes: 1 addition & 1 deletion crates/wasm-encoder/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-encoder"
version = "0.16.0"
version = "0.17.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-mutate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.7"
version = "0.2.8"
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"
Expand All @@ -9,8 +9,8 @@ description = "A WebAssembly test case mutator"
[dependencies]
clap = { optional = true, version = "3.0", features = ['derive'] }
thiserror = "1.0.28"
wasmparser = { version = "0.90.0", path = "../wasmparser" }
wasm-encoder = { version = "0.16.0", path = "../wasm-encoder"}
wasmparser = { version = "0.91.0", path = "../wasmparser" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder"}
rand = { version = "0.8.0", features = ["small_rng"] }
log = "0.4.14"
egg = "0.6.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-shrink/Cargo.toml
Expand Up @@ -8,16 +8,16 @@ license = "Apache-2.0 WITH LLVM-exception"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-shrink"
name = "wasm-shrink"
version = "0.1.9"
version = "0.1.10"

[dependencies]
anyhow = "1"
blake3 = "1.2.0"
log = "0.4"
rand = { version = "0.8.4", features = ["small_rng"] }
clap = { version = "3.0", optional = true, features = ['derive'] }
wasm-mutate = { version = "0.2.7", path = "../wasm-mutate" }
wasmparser = { version = "0.90.0", path = "../wasmparser" }
wasm-mutate = { version = "0.2.8", path = "../wasm-mutate" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }

[dev-dependencies]
env_logger = "0.9"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-smith/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception"
name = "wasm-smith"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-smith"
version = "0.11.4"
version = "0.11.5"
exclude = ["/benches/corpus"]

[[bench]]
Expand All @@ -21,8 +21,8 @@ flagset = "0.4"
indexmap = "1.6"
leb128 = "0.2.4"
serde = { version = "1", features = ['derive'], optional = true }
wasm-encoder = { version = "0.16.0", path = "../wasm-encoder" }
wasmparser = { version = "0.90.0", path = "../wasmparser" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }

[dev-dependencies]
criterion = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmparser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmparser"
version = "0.90.0"
version = "0.91.0"
authors = ["Yury Delendik <ydelendik@mozilla.com>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"
Expand Down
4 changes: 2 additions & 2 deletions crates/wasmprinter/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmprinter"
version = "0.2.39"
version = "0.2.40"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -14,7 +14,7 @@ Rust converter from the WebAssembly binary format to the text format.

[dependencies]
anyhow = "1.0"
wasmparser = { path = '../wasmparser', version = '0.90.0' }
wasmparser = { path = '../wasmparser', version = '0.91.0' }

[dev-dependencies]
diff = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/wast/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wast"
version = "46.0.0"
version = "47.0.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -16,7 +16,7 @@ Customizable Rust parsers for the WebAssembly Text formats WAT and WAST
leb128 = "0.2"
unicode-width = "0.1.9"
memchr = "2.4.1"
wasm-encoder = { version = "0.16.0", path = "../wasm-encoder" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" }

[dev-dependencies]
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/wat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wat"
version = "1.0.48"
version = "1.0.49"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -13,4 +13,4 @@ Rust parser for the WebAssembly Text format, WAT
"""

[dependencies]
wast = { path = '../wast', version = '46.0.0' }
wast = { path = '../wast', version = '47.0.0' }

0 comments on commit 4e14cec

Please sign in to comment.