Skip to content

Commit

Permalink
Bump crate versions
Browse files Browse the repository at this point in the history
Release recent work such as:

* Initial support for the GC proposal in validation.
* Updates to exception-handling validation/printing/etc.
* Support for parsing the `linking` custom section.
* Print the name of label targets in wasm-to-text.
* Support for new names in imports in validation of components.

And more!
  • Loading branch information
alexcrichton committed Jan 9, 2024
1 parent eced912 commit d74c7f6
Show file tree
Hide file tree
Showing 15 changed files with 78 additions and 78 deletions.
102 changes: 51 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.54"
version = "1.0.55"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -46,19 +46,19 @@ pretty_assertions = "1.3.0"
semver = "1.0.0"
smallvec = "1.11.1"

wasm-compose = { version = "0.4.16", path = "crates/wasm-compose" }
wasm-encoder = { version = "0.38.1", path = "crates/wasm-encoder" }
wasm-metadata = { version = "0.10.14", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.43", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.44", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.13.1", path = "crates/wasm-smith" }
wasmparser = { version = "0.118.1", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.75", path = "crates/wasmprinter" }
wast = { version = "69.0.1", path = "crates/wast" }
wat = { version = "1.0.82", path = "crates/wat" }
wit-component = { version = "0.19.0", path = "crates/wit-component" }
wit-parser = { version = "0.13.0", path = "crates/wit-parser" }
wit-smith = { version = "0.1.24", path = "crates/wit-smith" }
wasm-compose = { version = "0.5.0", path = "crates/wasm-compose" }
wasm-encoder = { version = "0.39.0", path = "crates/wasm-encoder" }
wasm-metadata = { version = "0.10.15", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.44", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.45", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.14.0", path = "crates/wasm-smith" }
wasmparser = { version = "0.119.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.76", path = "crates/wasmprinter" }
wast = { version = "70.0.0", path = "crates/wast" }
wat = { version = "1.0.83", path = "crates/wat" }
wit-component = { version = "0.19.1", path = "crates/wit-component" }
wit-parser = { version = "0.13.1", path = "crates/wit-parser" }
wit-smith = { version = "0.1.25", path = "crates/wit-smith" }

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion 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.4.16"
version = "0.5.0"
edition.workspace = true
authors = ["Peter Huene <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
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.38.1"
version = "0.39.0"
authors = ["Nick Fitzgerald <[email protected]>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-metadata"
version = "0.10.14"
version = "0.10.15"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-metadata"
Expand Down
2 changes: 1 addition & 1 deletion 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.43"
version = "0.2.44"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-mutate"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-shrink/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"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-shrink"
name = "wasm-shrink"
version = "0.1.44"
version = "0.1.45"

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion 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.13.1"
version = "0.14.0"
exclude = ["/benches/corpus"]

[[bench]]
Expand Down
Loading

0 comments on commit d74c7f6

Please sign in to comment.