Skip to content

Commit

Permalink
Bump crate versions (#907)
Browse files Browse the repository at this point in the history
* Add wasm-metadata to publish script

* Bump crate versions

Publish the new support for a `metadata` command
  • Loading branch information
alexcrichton committed Feb 3, 2023
1 parent bdbd315 commit 90e4d87
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 19 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.21"
version = "1.0.22"
authors = ["The Wasmtime Project Developers"]
edition.workspace = true
description = "CLI tools for interoperating with WebAssembly files"
Expand Down Expand Up @@ -41,18 +41,18 @@ serde = { version = "1.0.137", features = ["derive"] }
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.5", path = "crates/wasm-compose"}
wasm-metadata = { version = "0.1.0", path = "crates/wasm-metadata" }
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" }
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" }
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.5.0", path = "crates/wit-component" }
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" }

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions ci/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const CRATES_TO_PUBLISH: &[&str] = &[
"wasm-compose",
"wit-parser",
"wit-component",
"wasm-metadata",
"wasm-tools",
];

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.5"
version = "0.2.6"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-encoder"
version = "0.22.0"
version = "0.22.1"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-metadata"
version = "0.1.0"
version = "0.1.1"
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.16"
version = "0.2.17"
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.17"
version = "0.1.18"

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

[[bench]]
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.2"
version = "52.0.3"
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.56"
version = "1.0.57"
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.5.0"
version = "0.5.1"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
Expand Down

0 comments on commit 90e4d87

Please sign in to comment.