Skip to content

Commit

Permalink
Bump crates to 0.15.0 (#768)
Browse files Browse the repository at this point in the history
Releasing recent updates/features/bugfixes.
  • Loading branch information
alexcrichton authored Nov 27, 2023
1 parent f648a50 commit f0bcd8d
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 30 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.14.0"
version = "0.15.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 @@ wasmtime-wasi = "15.0.0"
wit-parser = "0.13.0"
wit-component = "0.18.2"

wit-bindgen-core = { path = 'crates/core', version = '0.14.0' }
wit-bindgen-c = { path = 'crates/c', version = '0.14.0' }
wit-bindgen-rust = { path = "crates/rust", version = "0.14.0" }
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.14.0' }
wit-bindgen-go = { path = 'crates/go', version = '0.14.0' }
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.14.0' }
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.14.0' }
wit-bindgen = { path = 'crates/guest-rust', version = '0.14.0', default-features = false }
wit-bindgen-core = { path = 'crates/core', version = '0.15.0' }
wit-bindgen-c = { path = 'crates/c', version = '0.15.0' }
wit-bindgen-rust = { path = "crates/rust", version = "0.15.0" }
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.15.0' }
wit-bindgen-go = { path = 'crates/go', version = '0.15.0' }
wit-bindgen-csharp = { path = 'crates/csharp', version = '0.15.0' }
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.15.0' }
wit-bindgen = { path = 'crates/guest-rust', version = '0.15.0', default-features = false }

[[bin]]
name = "wit-bindgen"
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.14.0"
version = "0.15.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.14.0"
version = "0.15.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/csharp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wit-bindgen-csharp"
authors = ["Timmy Silesmo <[email protected]>"]
version = "0.14.0"
version = "0.15.0"
edition.workspace = true
repository = 'https://github.com/bytecodealliance/wit-bindgen'
license = "Apache-2.0 WITH LLVM-exception"
Expand Down Expand Up @@ -29,4 +29,4 @@ test-helpers = { path = '../test-helpers' }

[features]
default = ["aot"]
aot = []
aot = []
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.14.0"
version = "0.15.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.14.0"
version = "0.15.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.14.0" }
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.15.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.14.0"
version = "0.15.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.14.0"
version = "0.15.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.14.0"
version = "0.15.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.14.0"
version = "0.15.0"
edition.workspace = true
repository = 'https://github.com/bytecodealliance/wit-bindgen'
license = "Apache-2.0 WITH LLVM-exception"
Expand Down

0 comments on commit f0bcd8d

Please sign in to comment.