Skip to content

Commit

Permalink
Bump to 0.12.0 (#672)
Browse files Browse the repository at this point in the history
Fixing some Rust bindings and pulling in crate updates
  • Loading branch information
alexcrichton authored Sep 18, 2023
1 parent 5ca537a commit 637389a
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-cli"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down Expand Up @@ -34,14 +34,14 @@ wasm-metadata = "0.10.5"
wit-parser = "0.11.1"
wit-component = "0.14.2"

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]]
Expand Down
2 changes: 1 addition & 1 deletion crates/c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-c"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-core"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/go/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-go"
authors = ["Mossaka <[email protected]>"]
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"
Expand Down
4 changes: 2 additions & 2 deletions crates/guest-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/markdown/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rust-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-rust-lib"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rust-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-rust-macro"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-rust"
authors = ["Alex Crichton <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/teavm-java/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 637389a

Please sign in to comment.