Skip to content

Commit 46a154b

Browse files
bors[bot]Bromeon
andauthored
Merge #953
953: Prepare 0.10.2 release r=Bromeon a=Bromeon Co-authored-by: Jan Haller <[email protected]>
2 parents f043159 + a526bdd commit 46a154b

File tree

10 files changed

+22
-21
lines changed

10 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## [0.10.2] - 2022-10-01
9+
## [0.10.2] - 2022-10-02
1010

1111
Last maintenance release for Godot 3.4.
1212

@@ -20,6 +20,7 @@ Last maintenance release for Godot 3.4.
2020
### Fixed
2121

2222
- During tests, `get_api()` no longer aborts ([#929](https://github.com/godot-rust/godot-rust/pull/929))
23+
- Confusing `Transform2D` constructor ([#930](https://github.com/godot-rust/godot-rust/pull/930))
2324
- Bug in `Rect2::intersects()` ([#948](https://github.com/godot-rust/godot-rust/pull/948))
2425
- Bug in `Vector2::rotated()` ([#952](https://github.com/godot-rust/godot-rust/pull/952))
2526

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This is the recommended way of using godot-rust. After `bindgen` dependencies an
3838

3939
```toml
4040
[dependencies]
41-
gdnative = "0.10.1"
41+
gdnative = "0.10.2"
4242

4343
[lib]
4444
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.10.1"
9+
version = "0.10.2"
1010
workspace = ".."
1111
edition = "2021"
1212
rust-version = "1.56"

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.10.1"
8+
version = "0.10.2"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -14,9 +14,9 @@ rust-version = "1.56"
1414
[features]
1515

1616
[dependencies]
17-
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.1" }
18-
gdnative-core = { path = "../gdnative-core", version = "=0.10.1" }
19-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.1" }
17+
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.2" }
18+
gdnative-core = { path = "../gdnative-core", version = "=0.10.2" }
19+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.2" }
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.10.1"
8+
version = "0.10.2"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -17,8 +17,8 @@ one-class-one-file = []
1717
custom-godot = ["gdnative_bindings_generator/custom-godot"]
1818

1919
[dependencies]
20-
gdnative-core = { path = "../gdnative-core", version = "=0.10.1" }
20+
gdnative-core = { path = "../gdnative-core", version = "=0.10.2" }
2121
libc = "0.2"
2222

2323
[build-dependencies]
24-
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.10.1" }
24+
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.10.2" }

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.10.1"
8+
version = "0.10.2"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -17,8 +17,8 @@ gd-test = []
1717
type-tag-fallback = []
1818

1919
[dependencies]
20-
gdnative-sys = { path = "../gdnative-sys", version = "=0.10.1" }
21-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.1" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "=0.10.2" }
21+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.2" }
2222
ahash = "0.8"
2323
approx = "0.5"
2424
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.10.1"
8+
version = "0.10.2"
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.10.1"
8+
version = "0.10.2"
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.10.1"
9+
version = "0.10.2"
1010
license = "MIT"
1111
workspace = ".."
1212
readme = "../README.md"
@@ -26,10 +26,10 @@ gd-test = ["gdnative-core/gd-test"]
2626
type-tag-fallback = ["gdnative-core/type-tag-fallback"]
2727

2828
[dependencies]
29-
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.1" }
30-
gdnative-core = { path = "../gdnative-core", version = "=0.10.1" }
31-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.1" }
32-
gdnative-async = { path = "../gdnative-async", version = "=0.10.1", optional = true }
29+
gdnative-derive = { path = "../gdnative-derive", version = "=0.10.2" }
30+
gdnative-core = { path = "../gdnative-core", version = "=0.10.2" }
31+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.2" }
32+
gdnative-async = { path = "../gdnative-async", version = "=0.10.2", optional = true }
3333

3434
[dev-dependencies]
3535
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.10.1"
7+
version = "0.10.2"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2021"

0 commit comments

Comments
 (0)