Skip to content

Commit ae49c51

Browse files
committed
Update godot-rust version: 0.11.2 -> 0.11.3
1 parent 9dfbc4e commit ae49c51

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

bindings-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ documentation = "https://docs.rs/crate/gdnative_bindings_generator"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
88
license = "MIT"
9-
version = "0.11.2"
9+
version = "0.11.3"
1010
workspace = ".."
1111
edition = "2021"
1212
rust-version = "1.63"

gdnative-async/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Runtime async support for godot-rust."
55
documentation = "https://docs.rs/crate/gdnative-async"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -14,9 +14,9 @@ rust-version = "1.63"
1414
[features]
1515

1616
[dependencies]
17-
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.2" }
18-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
19-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.2" }
17+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
18+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
19+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.3" }
2020
atomic-waker = "1"
2121
crossbeam-channel = "0.5"
2222
futures-task = "0.3"

gdnative-bindings/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "The Godot game engine's automatcally generated bindings to Godot
55
documentation = "https://docs.rs/crate/gdnative-bindings"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -18,8 +18,8 @@ custom-godot = ["gdnative_bindings_generator/custom-godot"]
1818
ptrcall = ["gdnative_bindings_generator/ptrcall"]
1919

2020
[dependencies]
21-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
21+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
2222
libc = "0.2"
2323

2424
[build-dependencies]
25-
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.11.2" }
25+
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.11.3" }

gdnative-core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "The Godot game engine's gdnative core bindings."
55
documentation = "https://docs.rs/crate/gdnative-core"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -17,9 +17,9 @@ gd-test = []
1717
type-tag-fallback = []
1818

1919
[dependencies]
20-
gdnative-sys = { path = "../gdnative-sys", version = "=0.11.2" }
21-
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.2" }
22-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.11.2" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "=0.11.3" }
21+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
22+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.11.3" }
2323
ahash = "0.8"
2424
approx = "0.5"
2525
atomic-take = "1"

gdnative-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "The Godot game engine's gdnative derive and procedural macros."
55
documentation = "https://docs.rs/crate/gdnative-derive"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"

gdnative-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Generated bindings to the Godot game engine's gdnative core types
55
documentation = "https://docs.rs/crate/gdnative-sys"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.11.2"
8+
version = "0.11.3"
99
build = "build.rs"
1010
license = "MIT"
1111
workspace = ".."

gdnative/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["gamedev", "godot", "engine", "bindings"]
66
documentation = "https://docs.rs/crate/gdnative"
77
repository = "https://github.com/godot-rust/godot-rust"
88
homepage = "https://godot-rust.github.io/"
9-
version = "0.11.2"
9+
version = "0.11.3"
1010
license = "MIT"
1111
workspace = ".."
1212
readme = "../README.md"
@@ -28,10 +28,10 @@ gd-test = ["gdnative-core/gd-test"]
2828
type-tag-fallback = ["gdnative-core/type-tag-fallback"]
2929

3030
[dependencies]
31-
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.2" }
32-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
33-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.2" }
34-
gdnative-async = { path = "../gdnative-async", version = "=0.11.2", optional = true }
31+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
32+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
33+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.3" }
34+
gdnative-async = { path = "../gdnative-async", version = "=0.11.3", optional = true }
3535

3636
[dev-dependencies]
3737
trybuild = "1.0.18" # earrlier versions use broken termcolor 1.0.0

impl/proc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["The godot-rust developers"]
44
description = "Internal dependency of the gdnative bindings."
55
repository = "https://github.com/godot-rust/godot-rust"
66
homepage = "https://godot-rust.github.io/"
7-
version = "0.11.2"
7+
version = "0.11.3"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2021"

0 commit comments

Comments
 (0)