Skip to content

Commit 4e9d815

Browse files
committed
Update crate version: 0.3.5 -> 0.4.0
1 parent 85d3667 commit 4e9d815

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

godot-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-bindings"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"

godot-cell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-cell"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"

godot-codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-codegen"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"
@@ -22,7 +22,7 @@ experimental-godot-api = []
2222
experimental-threads = []
2323

2424
[dependencies]
25-
godot-bindings = { path = "../godot-bindings", version = "=0.3.5" }
25+
godot-bindings = { path = "../godot-bindings", version = "=0.4.0" }
2626

2727
heck = { workspace = true }
2828
nanoserde = { workspace = true }
@@ -31,7 +31,7 @@ quote = { workspace = true }
3131
regex = { workspace = true }
3232

3333
[build-dependencies]
34-
godot-bindings = { path = "../godot-bindings", version = "=0.3.5" } # emit_godot_version_cfg
34+
godot-bindings = { path = "../godot-bindings", version = "=0.4.0" } # emit_godot_version_cfg
3535

3636
# https://docs.rs/about/metadata
3737
[package.metadata.docs.rs]

godot-core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-core"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"
@@ -39,16 +39,16 @@ api-4-5 = ["godot-ffi/api-4-5"]
3939
# ]]
4040

4141
[dependencies]
42-
godot-ffi = { path = "../godot-ffi", version = "=0.3.5" }
42+
godot-ffi = { path = "../godot-ffi", version = "=0.4.0" }
4343

4444
# See https://docs.rs/glam/latest/glam/index.html#feature-gates
4545
glam = { workspace = true }
4646
serde = { workspace = true, optional = true }
47-
godot-cell = { path = "../godot-cell", version = "=0.3.5" }
47+
godot-cell = { path = "../godot-cell", version = "=0.4.0" }
4848

4949
[build-dependencies]
50-
godot-bindings = { path = "../godot-bindings", version = "=0.3.5" }
51-
godot-codegen = { path = "../godot-codegen", version = "=0.3.5" }
50+
godot-bindings = { path = "../godot-bindings", version = "=0.4.0" }
51+
godot-codegen = { path = "../godot-codegen", version = "=0.4.0" }
5252

5353
# Reverse dev dependencies so doctests can use `godot::` prefix.
5454
[dev-dependencies]

godot-ffi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-ffi"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"
@@ -37,11 +37,11 @@ libc = { workspace = true }
3737

3838
[target.'cfg(target_family = "wasm")'.dependencies]
3939
# Only needed for WASM identifier generation.
40-
godot-macros = { path = "../godot-macros", version = "=0.3.5", features = ["experimental-wasm"] }
40+
godot-macros = { path = "../godot-macros", version = "=0.4.0", features = ["experimental-wasm"] }
4141

4242
[build-dependencies]
43-
godot-bindings = { path = "../godot-bindings", version = "=0.3.5" }
44-
godot-codegen = { path = "../godot-codegen", version = "=0.3.5" }
43+
godot-bindings = { path = "../godot-bindings", version = "=0.4.0" }
44+
godot-codegen = { path = "../godot-codegen", version = "=0.4.0" }
4545

4646
# https://docs.rs/about/metadata
4747
[package.metadata.docs.rs]

godot-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-macros"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"
@@ -29,7 +29,7 @@ litrs = { workspace = true, optional = true }
2929
venial = { workspace = true }
3030

3131
[build-dependencies]
32-
godot-bindings = { path = "../godot-bindings", version = "=0.3.5" } # emit_godot_version_cfg
32+
godot-bindings = { path = "../godot-bindings", version = "=0.4.0" } # emit_godot_version_cfg
3333

3434
# Reverse dev dependencies so doctests can use `godot::` prefix.
3535
[dev-dependencies]

godot/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot"
3-
version = "0.3.5"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.87"
66
license = "MPL-2.0"
@@ -10,7 +10,7 @@ description = "Rust bindings for Godot 4"
1010
authors = ["Bromeon", "godot-rust contributors"]
1111
repository = "https://github.com/godot-rust/gdext"
1212
homepage = "https://godot-rust.github.io"
13-
documentation = "https://docs.rs/godot/0.3.5"
13+
documentation = "https://docs.rs/godot/0.4.0"
1414
readme = "crate-readme.md"
1515

1616
[features]
@@ -47,8 +47,8 @@ __debug-log = ["godot-core/debug-log"]
4747
__trace = ["godot-core/trace"]
4848

4949
[dependencies]
50-
godot-core = { path = "../godot-core", version = "=0.3.5" }
51-
godot-macros = { path = "../godot-macros", version = "=0.3.5" }
50+
godot-core = { path = "../godot-core", version = "=0.4.0" }
51+
godot-macros = { path = "../godot-macros", version = "=0.4.0" }
5252

5353
# https://docs.rs/about/metadata
5454
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)