Skip to content

Commit

Permalink
Bump crate versions (#1118)
Browse files Browse the repository at this point in the history
Releases recent changes such as:

* More support for the gc proposal.
  [#1045](#1045)
  [#1059](#1059)
* Support for resources throughout most tooling.
  [#1053](#1053)
  [#1068](#1068)
  [#1070](#1070)
  [#1082](#1082)
  [#1079](#1079)
  [#1083](#1083)
  [#1084](#1084)
  [#1105](#1105)
  [#1113](#1113)
  [#1116](#1116)
* Support for `include` in WIT files.
  [#1054](#1054)
  [#1085](#1085)
  [#1088](#1088)
* WIT worlds may now be rejected if the same interface can be "reached"
  as both an import and an export simultaneously.
  [#1081](#1081)
  [#1107](#1107)
* Support for registry metadata in `wasm-tools metadata`.
  [#1060](#1060)
* A new subcommand `wasm-tools component targets`.
  [#1089](#1089)
* An `--out-dir` argument is supported on `wasm-tools component wit` to
  print the entire `Resolve` instead of just one package.
  [#1108](#1108)
* Miscellaneous bug fixes and improvements.
  [#1061](#1061)
  [#1065](#1065)
  [#1074](#1074)
  [#1073](#1073)
  [#1078](#1078)
  [#1077](#1077)
  [#1072](#1072)
  [#1086](#1086)
  [#1091](#1091)
  [#1094](#1094)
  [#1114](#1114)
  [#1106](#1106)
  • Loading branch information
alexcrichton committed Jul 11, 2023
1 parent 46f9053 commit 620b4ab
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-tools"
version = "1.0.35"
version = "1.0.36"
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.29.0", path = "crates/wasm-encoder" }
wasm-compose = { version = "0.2.17", path = "crates/wasm-compose" }
wasm-metadata = { version = "0.8.0", path = "crates/wasm-metadata" }
wasm-mutate = { version = "0.2.27", path = "crates/wasm-mutate" }
wasm-shrink = { version = "0.1.28", path = "crates/wasm-shrink" }
wasm-smith = { version = "0.12.10", path = "crates/wasm-smith" }
wasmparser = { version = "0.107.0", path = "crates/wasmparser" }
wasmprinter = { version = "0.2.59", path = "crates/wasmprinter" }
wast = { version = "60.0.0", path = "crates/wast" }
wat = { version = "1.0.66", path = "crates/wat" }
wit-component = { version = "0.11.0", path = "crates/wit-component" }
wit-parser = { version = "0.8.0", path = "crates/wit-parser" }
wit-smith = { version = "0.1.5", path = "crates/wit-smith" }
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" }

[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.17"
version = "0.3.0"
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.29.0"
version = "0.30.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-metadata"
version = "0.8.0"
version = "0.9.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-mutate"
version = "0.2.27"
version = "0.2.28"
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.28"
version = "0.1.29"

[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.10"
version = "0.12.11"
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.107.0"
version = "0.108.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.59"
version = "0.2.60"
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 = "60.0.0"
version = "61.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.66"
version = "1.0.67"
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.11.0"
version = "0.12.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 <alex@alexcrichton.com>"]
version = "0.8.0"
version = "0.9.0"
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
Original file line number Diff line number Diff line change
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.5"
version = "0.1.6"

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

0 comments on commit 620b4ab

Please sign in to comment.