Skip to content

Commit a7e5b06

Browse files
committed
Update godot-rust version: 0.9.3 -> 0.10.0-rc.0
1 parent 6e4debd commit a7e5b06

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
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.9.3"
9+
version = "0.10.0-rc.0"
1010
workspace = ".."
1111
edition = "2018"
1212

gdnative-async/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ 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.9.3"
8+
version = "0.10.0-rc.0"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"
1212

1313
[features]
1414

1515
[dependencies]
16-
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.3" }
17-
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
18-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.9.3" }
16+
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.0-rc.0" }
17+
gdnative-core = { path = "../gdnative-core", version = "=0.10.0-rc.0" }
18+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.0-rc.0" }
1919
atomic-waker = "1"
2020
crossbeam-channel = "0.5"
2121
crossbeam-utils = "0.8"

gdnative-bindings/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 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.9.3"
8+
version = "0.10.0-rc.0"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"
@@ -16,10 +16,10 @@ one-class-one-file = []
1616
custom-godot = ["gdnative_bindings_generator/custom-godot"]
1717

1818
[dependencies]
19-
gdnative-sys = { path = "../gdnative-sys", version = "=0.9.3" }
20-
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
19+
gdnative-sys = { path = "../gdnative-sys", version = "=0.10.0-rc.0" }
20+
gdnative-core = { path = "../gdnative-core", version = "=0.10.0-rc.0" }
2121
bitflags = "1"
2222
libc = "0.2"
2323

2424
[build-dependencies]
25-
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.9.3" }
25+
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.10.0-rc.0" }

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.9.3"
8+
version = "0.10.0-rc.0"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"
@@ -16,8 +16,8 @@ gd-test = []
1616
type-tag-fallback = []
1717

1818
[dependencies]
19-
gdnative-sys = { path = "../gdnative-sys", version = "=0.9.3" }
20-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.9.3" }
19+
gdnative-sys = { path = "../gdnative-sys", version = "=0.10.0-rc.0" }
20+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.0-rc.0" }
2121
ahash = "0.7.6"
2222
approx = "0.5"
2323
atomic-take = "1"
@@ -30,4 +30,4 @@ parking_lot = "0.12"
3030
serde = { version = "1", features = ["derive"], optional = true }
3131

3232
[dev-dependencies]
33-
gdnative = { path = "../gdnative", version = "=0.9.3" } # for doc-tests
33+
gdnative = { path = "../gdnative", version = "=0.10.0-rc.0" } # for doc-tests

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.9.3"
8+
version = "0.10.0-rc.0"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"

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.9.3"
8+
version = "0.10.0-rc.0"
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.9.3"
9+
version = "0.10.0-rc.0"
1010
license = "MIT"
1111
workspace = ".."
1212
readme = "../README.md"
@@ -27,10 +27,10 @@ gd-test = ["gdnative-core/gd-test"]
2727
type-tag-fallback = ["gdnative-core/type-tag-fallback"]
2828

2929
[dependencies]
30-
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.3" }
31-
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
32-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.9.3" }
33-
gdnative-async = { path = "../gdnative-async", version = "=0.9.3", optional = true }
30+
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.0-rc.0" }
31+
gdnative-core = { path = "../gdnative-core", version = "=0.10.0-rc.0" }
32+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.0-rc.0" }
33+
gdnative-async = { path = "../gdnative-async", version = "=0.10.0-rc.0", optional = true }
3434

3535
[dev-dependencies]
3636
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.9.3"
7+
version = "0.10.0-rc.0"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2018"

0 commit comments

Comments
 (0)