Skip to content

Commit 197d3be

Browse files
authored
Bump all crates to 0.4.0 (#531)
Enough has happened it seems reasonable to release everything now. There have been a number of fixes to Rust and other generators and additionally there's a new Go generator!
1 parent 5e4e03f commit 197d3be

File tree

12 files changed

+30
-29
lines changed

12 files changed

+30
-29
lines changed

Cargo.lock

Lines changed: 10 additions & 10 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 & 9 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.3.0"
4+
version = "0.4.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.61"
3535
wit-parser = "0.6.3"
3636
wit-component = "0.7.2"
3737

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

4848
[[bin]]

ci/publish.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const CRATES_TO_PUBLISH: &[&str] = &[
3030
"wit-bindgen-rust-lib",
3131
"wit-bindgen-c",
3232
"wit-bindgen-rust",
33+
"wit-bindgen-go",
3334
"wit-bindgen-teavm-java",
3435
"wit-bindgen-markdown",
3536
"wit-bindgen-rust-macro",

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.3.0"
4+
version = "0.4.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.3.0"
4+
version = "0.4.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.1.0"
4+
version = "0.2.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.3.0"
4+
version = "0.4.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.3.0" }
15+
wit-bindgen-rust-macro = { path = "../rust-macro", optional = true, version = "0.4.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.3.0"
3+
version = "0.4.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.3.0"
4+
version = "0.4.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.3.0"
4+
version = "0.4.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.3.0"
4+
version = "0.4.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.3.0"
3+
version = "0.4.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)