Skip to content

Commit

Permalink
Bump versions of crates (#891)
Browse files Browse the repository at this point in the history
Release recent WIT bug fixes, the `wast` memory.discard fix, and the
tail-calls proposal being enabled.
  • Loading branch information
alexcrichton authored Jan 25, 2023
1 parent a7c8b09 commit 278c3ee
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 23 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.18"
version = "1.0.19"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -42,17 +42,17 @@ wasmtime = { version = "3.0.0", default-features = false, features = ['cranelift
url = "2.3.1"

wasm-encoder = { version = "0.22.0", path = "crates/wasm-encoder"}
wasm-compose = { version = "0.2.4", path = "crates/wasm-compose"}
wasm-mutate = { version = "0.2.15", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.16", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.11.13", path = "crates/wasm-smith" }
wasmparser = { version = "0.98.1", path = "crates/wasmparser" }
wasmparser-dump = { version = "0.1.15", path = "crates/dump" }
wasmprinter = { version = "0.2.48", path = "crates/wasmprinter" }
wast = { version = "52.0.1", path = "crates/wast" }
wat = { version = "1.0.55", path = "crates/wat" }
wit-component = { version = "0.4.2", path = "crates/wit-component" }
wit-parser = { version = "0.4.0", path = "crates/wit-parser" }
wasm-compose = { version = "0.2.5", path = "crates/wasm-compose"}
wasm-mutate = { version = "0.2.16", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.17", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.0", path = "crates/wasm-smith" }
wasmparser = { version = "0.99.0", path = "crates/wasmparser" }
wasmparser-dump = { version = "0.1.16", path = "crates/dump" }
wasmprinter = { version = "0.2.49", path = "crates/wasmprinter" }
wast = { version = "52.0.2", path = "crates/wast" }
wat = { version = "1.0.56", path = "crates/wat" }
wit-component = { version = "0.4.3", path = "crates/wit-component" }
wit-parser = { version = "0.4.1", path = "crates/wit-parser" }

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmparser-dump"
version = "0.1.15"
version = "0.1.16"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
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.4"
version = "0.2.5"
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-mutate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.15"
version = "0.2.16"
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.16"
version = "0.1.17"

[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.11.13"
version = "0.12.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.98.1"
version = "0.99.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.48"
version = "0.2.49"
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 = "52.0.1"
version = "52.0.2"
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.55"
version = "1.0.56"
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.4.2"
version = "0.4.3"
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.4.0"
version = "0.4.1"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down

0 comments on commit 278c3ee

Please sign in to comment.