Skip to content

Commit 67e2d22

Browse files
authored
Bump crate versions (#620)
Pull in recent updates and bug fixes, namely the wasm-tools updates and new Rust generator features.
1 parent 4e2dcd4 commit 67e2d22

File tree

11 files changed

+29
-29
lines changed

11 files changed

+29
-29
lines changed

Diff for: Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-cli"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition = { workspace = true }
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"
@@ -35,14 +35,14 @@ wat = "1.0.67"
3535
wit-parser = "0.9.0"
3636
wit-component = "0.12.0"
3737

38-
wit-bindgen-core = { path = 'crates/core', version = '0.8.0' }
39-
wit-bindgen-c = { path = 'crates/c', version = '0.8.0' }
40-
wit-bindgen-rust = { path = "crates/rust", version = "0.8.0" }
41-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.8.0' }
42-
wit-bindgen-go = { path = 'crates/go', version = '0.6.0' }
43-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.8.0' }
44-
wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.8.0' }
45-
wit-bindgen = { path = 'crates/guest-rust', version = '0.8.0', default-features = false }
38+
wit-bindgen-core = { path = 'crates/core', version = '0.9.0' }
39+
wit-bindgen-c = { path = 'crates/c', version = '0.9.0' }
40+
wit-bindgen-rust = { path = "crates/rust", version = "0.9.0" }
41+
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.9.0' }
42+
wit-bindgen-go = { path = 'crates/go', version = '0.7.0' }
43+
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.9.0' }
44+
wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.9.0' }
45+
wit-bindgen = { path = 'crates/guest-rust', version = '0.9.0', default-features = false }
4646
wit-bindgen-rust-macro-shared = { path = 'crates/rust-macro-shared', version = '0.3.0' }
4747

4848
[[bin]]

Diff for: crates/c/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-c"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-core"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/go/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-go"
33
authors = ["Mossaka <duibao55328@gmail.com>"]
4-
version = "0.6.0"
4+
version = "0.7.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/guest-rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"
@@ -12,7 +12,7 @@ Used when compiling Rust programs to the component model.
1212
"""
1313

1414
[dependencies]
15-
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.8.0" }
15+
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.9.0" }
1616
bitflags = { workspace = true }
1717

1818
[features]

Diff for: crates/markdown/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wit-bindgen-markdown"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition.workspace = true
55
repository = 'https://github.com/bytecodealliance/wit-bindgen'
66
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust-lib"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust-macro"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-rust"
33
authors = ["Alex Crichton <alex@alexcrichton.com>"]
4-
version = "0.8.0"
4+
version = "0.9.0"
55
edition.workspace = true
66
repository = 'https://github.com/bytecodealliance/wit-bindgen'
77
license = "Apache-2.0 WITH LLVM-exception"

Diff for: crates/teavm-java/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wit-bindgen-teavm-java"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition.workspace = true
55
repository = 'https://github.com/bytecodealliance/wit-bindgen'
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)