-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing recent updates/features/bugfixes.
- Loading branch information
1 parent
f648a50
commit f0bcd8d
Showing
11 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -29,4 +29,4 @@ test-helpers = { path = '../test-helpers' } | |
|
||
[features] | ||
default = ["aot"] | ||
aot = [] | ||
aot = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters