Skip to content

Commit

Permalink
Bump crate versions (#1303)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored Nov 20, 2023
1 parent 230ce7f commit 6c2728c
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 70 deletions.
90 changes: 45 additions & 45 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.52"
version = "1.0.53"
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.14", path = "crates/wasm-compose" }
wasm-encoder = { version = "0.37.0", path = "crates/wasm-encoder" }
wasm-metadata = { version = "0.10.12", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.41", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.42", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.24", path = "crates/wasm-smith" }
wasmparser = { version = "0.117.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.73", path = "crates/wasmprinter" }
wast = { version = "68.0.0", path = "crates/wast" }
wat = { version = "1.0.80", path = "crates/wat" }
wit-component = { version = "0.18.1", path = "crates/wit-component" }
wasm-compose = { version = "0.4.15", path = "crates/wasm-compose" }
wasm-encoder = { version = "0.38.0", path = "crates/wasm-encoder" }
wasm-metadata = { version = "0.10.13", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.42", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.43", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.13.0", path = "crates/wasm-smith" }
wasmparser = { version = "0.118.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.74", path = "crates/wasmprinter" }
wast = { version = "69.0.0", path = "crates/wast" }
wat = { version = "1.0.81", path = "crates/wat" }
wit-component = { version = "0.18.2", path = "crates/wit-component" }
wit-parser = { version = "0.13.0", path = "crates/wit-parser" }
wit-smith = { version = "0.1.22", path = "crates/wit-smith" }
wit-smith = { version = "0.1.23", 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.14"
version = "0.4.15"
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.37.0"
version = "0.38.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.12"
version = "0.10.13"
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.41"
version = "0.2.42"
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.42"
version = "0.1.43"

[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.12.24"
version = "0.13.0"
exclude = ["/benches/corpus"]

[[bench]]
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.117.0"
version = "0.118.0"
authors = ["Yury Delendik <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmprinter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmprinter"
version = "0.2.73"
version = "0.2.74"
authors = ["Alex Crichton <[email protected]>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wast"
version = "68.0.0"
version = "69.0.0"
authors = ["Alex Crichton <[email protected]>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat"
version = "1.0.80"
version = "1.0.81"
authors = ["Alex Crichton <[email protected]>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
Loading

0 comments on commit 6c2728c

Please sign in to comment.