Skip to content

Commit

Permalink
Bump crate versions (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored Feb 10, 2023
1 parent c7e5beb commit 0932bc1
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
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.22"
version = "1.0.23"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -42,18 +42,18 @@ wasmtime = { version = "3.0.0", default-features = false, features = ['cranelift
url = "2.0.0"
pretty_assertions = "1.3.0"

wasm-encoder = { version = "0.22.1", path = "crates/wasm-encoder"}
wasm-compose = { version = "0.2.6", path = "crates/wasm-compose"}
wasm-metadata = { version = "0.1.1", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.17", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.18", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.1", path = "crates/wasm-smith" }
wasmparser = { version = "0.99.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.49", path = "crates/wasmprinter" }
wast = { version = "52.0.3", path = "crates/wast" }
wat = { version = "1.0.57", path = "crates/wat" }
wit-component = { version = "0.5.1", path = "crates/wit-component" }
wit-parser = { version = "0.5.0", path = "crates/wit-parser" }
wasm-encoder = { version = "0.23.0", path = "crates/wasm-encoder"}
wasm-compose = { version = "0.2.7", path = "crates/wasm-compose"}
wasm-metadata = { version = "0.1.2", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.18", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.19", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.2", path = "crates/wasm-smith" }
wasmparser = { version = "0.100.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.50", path = "crates/wasmprinter" }
wast = { version = "53.0.0", path = "crates/wast" }
wat = { version = "1.0.58", path = "crates/wat" }
wit-component = { version = "0.6.0", path = "crates/wit-component" }
wit-parser = { version = "0.6.0", path = "crates/wit-parser" }

[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.2.6"
version = "0.2.7"
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.22.1"
version = "0.23.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.1.1"
version = "0.1.2"
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.17"
version = "0.2.18"
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.18"
version = "0.1.19"

[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.1"
version = "0.12.2"
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.99.0"
version = "0.100.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.49"
version = "0.2.50"
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 = "52.0.3"
version = "53.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.57"
version = "1.0.58"
authors = ["Alex Crichton <[email protected]>"]
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 <[email protected]>"]
version = "0.5.1"
version = "0.6.0"
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 <[email protected]>"]
version = "0.5.0"
version = "0.6.0"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down

0 comments on commit 0932bc1

Please sign in to comment.