Skip to content

Commit

Permalink
Bump crate versions (#782)
Browse files Browse the repository at this point in the history
Release the latest batch of changes including a fix to gc encoding and
various renamings.
  • Loading branch information
alexcrichton committed Oct 3, 2022
1 parent ea5cc8b commit cac488a
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 32 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.11"
version = "1.0.12"
authors = ["The Wasmtime Project Developers"]
edition = "2021"
description = "CLI tools for interoperating with WebAssembly files"
Expand All @@ -25,33 +25,33 @@ tempfile = "3.2.0"
wat = { path = "crates/wat", version = '1.0.49' }

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

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

# 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.5' }
wasm-smith = { path = "crates/wasm-smith", features = ["_internal_cli"], optional = true, version = '0.11.6' }

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

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

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

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

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

[dev-dependencies]
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/c-api/Cargo.toml
Original file line number Diff line number Diff line change
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.91.0", path = "../wasmparser" }
wasmparser = { version = "0.92.0", path = "../wasmparser" }
wasmprinter = { version = "0.2.36", path = "../wasmprinter" }
wast = { version = "47.0.0", path = "../wast" }
wast = { version = "47.0.1", path = "../wast" }
wat = { version = "1.0.44", path = "../wat" }
4 changes: 2 additions & 2 deletions crates/dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmparser-dump"
version = "0.1.8"
version = "0.1.9"
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.91.0" }
wasmparser = { path = "../wasmparser", version = "0.92.0" }
8 changes: 4 additions & 4 deletions crates/wasm-compose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-compose"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["Peter Huene <peter@huene.dev>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -12,8 +12,8 @@ description = "A library for composing WebAssembly components."

[dependencies]
wat = { version = "1.0.49", path = "../wat" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }
wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" }
wasmparser = { version = "0.92.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.40", path = "../wasmprinter" }
wasmprinter = { version = "0.2.41", path = "../wasmprinter" }
2 changes: 1 addition & 1 deletion crates/wasm-encoder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-encoder"
version = "0.17.0"
version = "0.18.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.8"
version = "0.2.9"
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.91.0", path = "../wasmparser" }
wasm-encoder = { version = "0.17.0", path = "../wasm-encoder"}
wasmparser = { version = "0.92.0", path = "../wasmparser" }
wasm-encoder = { version = "0.18.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
Original file line number Diff line number Diff line change
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.10"
version = "0.1.11"

[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.8", path = "../wasm-mutate" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }
wasm-mutate = { version = "0.2.9", path = "../wasm-mutate" }
wasmparser = { version = "0.92.0", path = "../wasmparser" }

[dev-dependencies]
env_logger = "0.9"
Expand Down
6 changes: 3 additions & 3 deletions crates/wasm-smith/Cargo.toml
Original file line number Diff line number Diff line change
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.5"
version = "0.11.6"
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.17.0", path = "../wasm-encoder" }
wasmparser = { version = "0.91.0", path = "../wasmparser" }
wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" }
wasmparser = { version = "0.92.0", path = "../wasmparser" }

[dev-dependencies]
criterion = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmparser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmparser"
version = "0.91.0"
version = "0.92.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmprinter"
version = "0.2.40"
version = "0.2.41"
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.91.0' }
wasmparser = { path = '../wasmparser', version = '0.92.0' }

[dev-dependencies]
diff = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/wast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wast"
version = "47.0.0"
version = "47.0.1"
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.17.0", path = "../wasm-encoder" }
wasm-encoder = { version = "0.18.0", path = "../wasm-encoder" }

[dev-dependencies]
anyhow = "1.0"
Expand Down

0 comments on commit cac488a

Please sign in to comment.