Skip to content

Commit

Permalink
Bump crate versions (#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored Sep 18, 2023
1 parent 1f38ce3 commit cc73492
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 66 deletions.
82 changes: 41 additions & 41 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.40"
version = "1.0.41"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -45,18 +45,18 @@ pretty_assertions = "1.3.0"
semver = "1.0.0"

wasm-encoder = { version = "0.32.0", path = "crates/wasm-encoder" }
wasm-compose = { version = "0.4.2", path = "crates/wasm-compose" }
wasm-metadata = { version = "0.10.3", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.32", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.33", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.15", path = "crates/wasm-smith" }
wasmparser = { version = "0.112.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.64", path = "crates/wasmprinter" }
wast = { version = "64.0.0", path = "crates/wast" }
wat = { version = "1.0.71", path = "crates/wat" }
wit-component = { version = "0.14.0", path = "crates/wit-component" }
wit-parser = { version = "0.11.0", path = "crates/wit-parser" }
wit-smith = { version = "0.1.10", path = "crates/wit-smith" }
wasm-compose = { version = "0.4.3", path = "crates/wasm-compose" }
wasm-metadata = { version = "0.10.4", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.33", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.34", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.16", path = "crates/wasm-smith" }
wasmparser = { version = "0.113.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.65", path = "crates/wasmprinter" }
wast = { version = "65.0.0", path = "crates/wast" }
wat = { version = "1.0.72", path = "crates/wat" }
wit-component = { version = "0.14.1", path = "crates/wit-component" }
wit-parser = { version = "0.11.1", path = "crates/wit-parser" }
wit-smith = { version = "0.1.11", 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.2"
version = "0.4.3"
edition.workspace = true
authors = ["Peter Huene <peter@huene.dev>"]
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.3"
version = "0.10.4"
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.32"
version = "0.2.33"
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.33"
version = "0.1.34"

[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.15"
version = "0.12.16"
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.112.0"
version = "0.113.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
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.64"
version = "0.2.65"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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 = "64.0.0"
version = "65.0.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.71"
version = "1.0.72"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-component/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-component"
authors = ["Peter Huene <peter@huene.dev>"]
version = "0.14.0"
version = "0.14.1"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-parser"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
version = "0.11.0"
version = "0.11.1"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down
Loading

0 comments on commit cc73492

Please sign in to comment.