Skip to content

Commit

Permalink
Bump versions (bytecodealliance#1128)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored and dhil committed Jul 21, 2023
1 parent a716500 commit 6417d01
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.36"
version = "1.0.37"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -45,19 +45,19 @@ url = "2.0.0"
pretty_assertions = "1.3.0"
semver = "1.0.0"

wasm-encoder = { version = "0.30.0", path = "crates/wasm-encoder" }
wasm-compose = { version = "0.3.0", path = "crates/wasm-compose" }
wasm-metadata = { version = "0.9.0", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.28", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.29", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.11", path = "crates/wasm-smith" }
wasmparser = { version = "0.108.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.60", path = "crates/wasmprinter" }
wast = { version = "61.0.0", path = "crates/wast" }
wat = { version = "1.0.67", path = "crates/wat" }
wit-component = { version = "0.12.0", path = "crates/wit-component" }
wit-parser = { version = "0.9.0", path = "crates/wit-parser" }
wit-smith = { version = "0.1.6", path = "crates/wit-smith" }
wasm-encoder = { version = "0.31.0", path = "crates/wasm-encoder" }
wasm-compose = { version = "0.3.1", path = "crates/wasm-compose" }
wasm-metadata = { version = "0.10.0", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.29", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.30", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.12", path = "crates/wasm-smith" }
wasmparser = { version = "0.109.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.61", path = "crates/wasmprinter" }
wast = { version = "62.0.0", path = "crates/wast" }
wat = { version = "1.0.68", path = "crates/wat" }
wit-component = { version = "0.13.0", path = "crates/wit-component" }
wit-parser = { version = "0.9.1", path = "crates/wit-parser" }
wit-smith = { version = "0.1.7", path = "crates/wit-smith" }

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-compose/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-compose"
version = "0.3.0"
version = "0.3.1"
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-encoder/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-encoder"
version = "0.30.0"
version = "0.31.0"
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-metadata/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasm-metadata"
version = "0.9.0"
version = "0.10.0"
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
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.28"
version = "0.2.29"
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
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.29"
version = "0.1.30"

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-smith/Cargo.toml
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.11"
version = "0.12.12"
exclude = ["/benches/corpus"]

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmparser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmparser"
version = "0.108.0"
version = "0.109.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
@@ -1,6 +1,6 @@
[package]
name = "wasmprinter"
version = "0.2.60"
version = "0.2.61"
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
@@ -1,6 +1,6 @@
[package]
name = "wast"
version = "61.0.0"
version = "62.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
@@ -1,6 +1,6 @@
[package]
name = "wat"
version = "1.0.67"
version = "1.0.68"
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
@@ -1,7 +1,7 @@
[package]
name = "wit-component"
authors = ["Peter Huene <peter@huene.dev>"]
version = "0.12.0"
version = "0.13.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
@@ -1,7 +1,7 @@
[package]
name = "wit-parser"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
version = "0.9.0"
version = "0.9.1"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/wit-smith/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
name = "wit-smith"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-smith"
version = "0.1.6"
version = "0.1.7"

[dependencies]
arbitrary = { workspace = true, features = ["derive"] }
Expand Down

0 comments on commit 6417d01

Please sign in to comment.