Skip to content

Commit 574e0f7

Browse files
bors[bot]toasteater
andauthored
Merge #687
687: Bump version to 0.9.3 r=toasteater a=toasteater Co-authored-by: toasteater <48371905+toasteater@users.noreply.github.com>
2 parents fa1ac0e + 36bfbba commit 574e0f7

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Rust bindings to the [Godot game engine](http://godotengine.org/).
88

99
**[Website](https://godot-rust.github.io/)** |
10-
**[User Guide](https://godot-rust.github.io/book/)** | **[API Documentation](https://docs.rs/gdnative/0.9.2/gdnative/)**
10+
**[User Guide](https://godot-rust.github.io/book/)** | **[API Documentation](https://docs.rs/gdnative/0.9.3/gdnative/)**
1111

1212
## Stability
1313

@@ -35,7 +35,7 @@ After `bindgen` dependencies are installed, add the `gdnative` crate as a depend
3535

3636
```toml
3737
[dependencies]
38-
gdnative = "0.9.2"
38+
gdnative = "0.9.3"
3939

4040
[lib]
4141
crate-type = ["cdylib"]

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.2"
9+
version = "0.9.3"
1010
workspace = ".."
1111
edition = "2018"
1212

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.2"
8+
version = "0.9.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"
@@ -15,11 +15,11 @@ formatted = []
1515
one_class_one_file = []
1616

1717
[dependencies]
18-
gdnative-sys = { path = "../gdnative-sys", version = "0.9.2" }
19-
gdnative-core = { path = "../gdnative-core", version = "=0.9.2" }
18+
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
19+
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
2020
libc = "0.2"
2121
bitflags = "1.2"
2222

2323
[build-dependencies]
2424
heck = "0.3.0"
25-
gdnative_bindings_generator = { path = "../bindings_generator", version = "=0.9.2" }
25+
gdnative_bindings_generator = { path = "../bindings_generator", version = "=0.9.3" }

gdnative-core/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 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.2"
8+
version = "0.9.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2018"
@@ -17,14 +17,14 @@ nativescript = ["bitflags", "parking_lot"]
1717
type_tag_fallback = []
1818

1919
[dependencies]
20-
gdnative-sys = { path = "../gdnative-sys", version = "0.9.2" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
2121
libc = "0.2"
2222
approx = "0.4.0"
2323
euclid = "0.22.1"
2424
indexmap = "1.6.0"
2525
ahash = "0.7.0"
2626

27-
gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.2" }
27+
gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.3" }
2828

2929
bitflags = { version = "1.2", optional = true }
3030
parking_lot = { version = "0.11.0", optional = true }

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.2"
8+
version = "0.9.3"
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.2"
8+
version = "0.9.3"
99
build = "build.rs"
1010
license = "MIT"
1111
workspace = ".."

gdnative/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 bindings."
55
documentation = "https://docs.rs/crate/gdnative"
66
repository = "https://github.com/godot-rust/godot-rust"
77
homepage = "https://godot-rust.github.io/"
8-
version = "0.9.2"
8+
version = "0.9.3"
99
license = "MIT"
1010
workspace = ".."
1111
readme = "../README.md"
@@ -20,9 +20,9 @@ type_tag_fallback = ["gdnative-core/type_tag_fallback"]
2020
bindings = ["gdnative-bindings"]
2121

2222
[dependencies]
23-
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.2" }
24-
gdnative-core = { path = "../gdnative-core", version = "=0.9.2" }
25-
gdnative-bindings = { optional = true, path = "../gdnative-bindings", version = "=0.9.2" }
23+
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.3" }
24+
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
25+
gdnative-bindings = { optional = true, path = "../gdnative-bindings", version = "=0.9.3" }
2626

2727
[dev-dependencies]
2828
trybuild = "1.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.2"
7+
version = "0.9.3"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2018"

0 commit comments

Comments
 (0)