From 12c64f70b3a7d2afb1c16b709bc499bf0dff080c Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 18 Sep 2023 14:57:38 -0700 Subject: [PATCH] Bump to 0.12.0 Fixing some Rust bindings and pulling in crate updates --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 18 +++++++++--------- crates/c/Cargo.toml | 2 +- crates/core/Cargo.toml | 2 +- crates/go/Cargo.toml | 2 +- crates/guest-rust/Cargo.toml | 4 ++-- crates/markdown/Cargo.toml | 2 +- crates/rust-lib/Cargo.toml | 2 +- crates/rust-macro/Cargo.toml | 2 +- crates/rust/Cargo.toml | 2 +- crates/teavm-java/Cargo.toml | 2 +- 11 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6bf66ea7f..2404d6226 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1833,7 +1833,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "wit-bindgen" -version = "0.11.0" +version = "0.12.0" dependencies = [ "bitflags 2.4.0", "wit-bindgen-rust-macro", @@ -1841,7 +1841,7 @@ dependencies = [ [[package]] name = "wit-bindgen-c" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", @@ -1855,7 +1855,7 @@ dependencies = [ [[package]] name = "wit-bindgen-cli" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", @@ -1875,7 +1875,7 @@ dependencies = [ [[package]] name = "wit-bindgen-core" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "wit-component", @@ -1884,7 +1884,7 @@ dependencies = [ [[package]] name = "wit-bindgen-go" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", @@ -1897,7 +1897,7 @@ dependencies = [ [[package]] name = "wit-bindgen-markdown" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", @@ -1909,7 +1909,7 @@ dependencies = [ [[package]] name = "wit-bindgen-rust" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", @@ -1924,7 +1924,7 @@ dependencies = [ [[package]] name = "wit-bindgen-rust-lib" -version = "0.11.0" +version = "0.12.0" dependencies = [ "heck", "wit-bindgen-core", @@ -1932,7 +1932,7 @@ dependencies = [ [[package]] name = "wit-bindgen-rust-macro" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "proc-macro2", @@ -1945,7 +1945,7 @@ dependencies = [ [[package]] name = "wit-bindgen-teavm-java" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index eb2514c71..87b0f2862 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-cli" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition = { workspace = true } repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" @@ -34,14 +34,14 @@ wasm-metadata = "0.10.3" wit-parser = "0.11.0" wit-component = "0.14.0" -wit-bindgen-core = { path = 'crates/core', version = '0.11.0' } -wit-bindgen-c = { path = 'crates/c', version = '0.11.0' } -wit-bindgen-rust = { path = "crates/rust", version = "0.11.0" } -wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.11.0' } -wit-bindgen-go = { path = 'crates/go', version = '0.11.0' } -wit-bindgen-markdown = { path = 'crates/markdown', version = '0.11.0' } -wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.11.0' } -wit-bindgen = { path = 'crates/guest-rust', version = '0.11.0', default-features = false } +wit-bindgen-core = { path = 'crates/core', version = '0.12.0' } +wit-bindgen-c = { path = 'crates/c', version = '0.12.0' } +wit-bindgen-rust = { path = "crates/rust", version = "0.12.0" } +wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.12.0' } +wit-bindgen-go = { path = 'crates/go', version = '0.12.0' } +wit-bindgen-markdown = { path = 'crates/markdown', version = '0.12.0' } +wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.12.0' } +wit-bindgen = { path = 'crates/guest-rust', version = '0.12.0', default-features = false } wit-bindgen-rust-macro-shared = { path = 'crates/rust-macro-shared', version = '0.3.0' } [[bin]] diff --git a/crates/c/Cargo.toml b/crates/c/Cargo.toml index 7aad5de68..3c8729d2f 100644 --- a/crates/c/Cargo.toml +++ b/crates/c/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-c" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 6804ac9f4..2de16424e 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-core" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/go/Cargo.toml b/crates/go/Cargo.toml index 03e7ca75a..b6799b7d1 100644 --- a/crates/go/Cargo.toml +++ b/crates/go/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-go" authors = ["Mossaka "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/guest-rust/Cargo.toml b/crates/guest-rust/Cargo.toml index 2e12f75d9..a88e2656d 100644 --- a/crates/guest-rust/Cargo.toml +++ b/crates/guest-rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" @@ -12,7 +12,7 @@ Used when compiling Rust programs to the component model. """ [dependencies] -wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.11.0" } +wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.12.0" } bitflags = { workspace = true } [features] diff --git a/crates/markdown/Cargo.toml b/crates/markdown/Cargo.toml index 5f90c70d3..7221c3d33 100644 --- a/crates/markdown/Cargo.toml +++ b/crates/markdown/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wit-bindgen-markdown" -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/rust-lib/Cargo.toml b/crates/rust-lib/Cargo.toml index 471001a8a..44859c88b 100644 --- a/crates/rust-lib/Cargo.toml +++ b/crates/rust-lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-rust-lib" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/rust-macro/Cargo.toml b/crates/rust-macro/Cargo.toml index 0eb4c37d9..0977d60ab 100644 --- a/crates/rust-macro/Cargo.toml +++ b/crates/rust-macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-rust-macro" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/rust/Cargo.toml b/crates/rust/Cargo.toml index a76f26482..232a7a7d1 100644 --- a/crates/rust/Cargo.toml +++ b/crates/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wit-bindgen-rust" authors = ["Alex Crichton "] -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception" diff --git a/crates/teavm-java/Cargo.toml b/crates/teavm-java/Cargo.toml index 9e2af8656..d38254fbe 100644 --- a/crates/teavm-java/Cargo.toml +++ b/crates/teavm-java/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wit-bindgen-teavm-java" -version = "0.11.0" +version = "0.12.0" edition.workspace = true repository = 'https://github.com/bytecodealliance/wit-bindgen' license = "Apache-2.0 WITH LLVM-exception"