Skip to content

Commit 544576e

Browse files
authored
Bump crate versions (#596)
* Update to published Wasmtime 10 * Bump crates to 0.8.0 Will publish a release compatible with the latest Wasmtime 10
1 parent 1317463 commit 544576e

File tree

11 files changed

+114
-90
lines changed

11 files changed

+114
-90
lines changed

Cargo.lock

Lines changed: 95 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen-cli"
33
authors = ["Alex Crichton <[email protected]>"]
4-
version = "0.7.0"
4+
version = "0.8.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.66"
3535
wit-parser = "0.8.0"
3636
wit-component = "0.11.0"
3737

38-
wit-bindgen-core = { path = 'crates/core', version = '0.7.0' }
39-
wit-bindgen-c = { path = 'crates/c', version = '0.7.0' }
40-
wit-bindgen-rust = { path = "crates/rust", version = "0.7.0" }
41-
wit-bindgen-teavm-java = { path = 'crates/teavm-java', version = '0.7.0' }
42-
wit-bindgen-go = { path = 'crates/go', version = '0.5.0' }
43-
wit-bindgen-markdown = { path = 'crates/markdown', version = '0.7.0' }
44-
wit-bindgen-rust-lib = { path = 'crates/rust-lib', version = '0.7.0' }
45-
wit-bindgen = { path = 'crates/guest-rust', version = '0.7.0', default-features = false }
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 }
4646
wit-bindgen-rust-macro-shared = { path = 'crates/rust-macro-shared', version = '0.3.0' }
4747

4848
[[bin]]
@@ -80,6 +80,3 @@ heck = { workspace = true }
8080
wasmtime = { version = "10", features = ['component-model'] }
8181
test-artifacts = { path = 'crates/test-rust-wasm/artifacts' }
8282
wit-parser = { workspace = true }
83-
84-
[patch.crates-io]
85-
wasmtime = { git = 'https://github.com/bytecodealliance/wasmtime' }

crates/c/Cargo.toml

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

crates/core/Cargo.toml

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

crates/go/Cargo.toml

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

crates/guest-rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wit-bindgen"
33
authors = ["Alex Crichton <[email protected]>"]
4-
version = "0.7.0"
4+
version = "0.8.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.7.0" }
15+
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.8.0" }
1616
bitflags = { workspace = true }
1717

1818
[features]

crates/markdown/Cargo.toml

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

crates/rust-lib/Cargo.toml

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

crates/rust-macro/Cargo.toml

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

crates/rust/Cargo.toml

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

crates/teavm-java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wit-bindgen-teavm-java"
3-
version = "0.7.0"
3+
version = "0.8.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)