Skip to content

Commit b4970a8

Browse files
bors[bot]Bromeon
andauthored
Merge #956
956: Prepare 0.11.0 release r=Bromeon a=Bromeon Co-authored-by: Jan Haller <[email protected]>
2 parents e6794f7 + bdff07e commit b4970a8

File tree

9 files changed

+27
-21
lines changed

9 files changed

+27
-21
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,22 @@ All notable changes to this project will be documented in this file.
55
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

8-
## [0.11.0] - unreleased
8+
## [0.11.0] - 2022-10-02
99

1010
### Changed
1111

1212
- Changed supported Godot version to 3.5.1 ([#910](https://github.com/godot-rust/godot-rust/pull/910))
1313
- MSRV is now 1.63 ([#910](https://github.com/godot-rust/godot-rust/pull/910))
14+
- Prefixed `NativeClass` methods for manual implementors ([#955](https://github.com/godot-rust/godot-rust/pull/955))
15+
16+
### Fixed
17+
18+
- `godot_init` may not find some symbols ([#954](https://github.com/godot-rust/godot-rust/pull/954))
1419

1520
### Removed
1621

17-
- `Transform2D::from_rotation_translation_scale()` constructor needs more intuitive API ([#910](https://github.com/godot-rust/godot-rust/pull/910))
22+
- `Transform2D::from_rotation_translation_scale()` constructor ([#910](https://github.com/godot-rust/godot-rust/pull/910))
23+
- `RefInstance` and `TypedArray` type aliases ([#955](https://github.com/godot-rust/godot-rust/pull/955))
1824

1925

2026
## [0.10.2] - 2022-10-02

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.2"
9+
version = "0.11.0"
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.10.2"
8+
version = "0.11.0"
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.10.2" }
18-
gdnative-core = { path = "../gdnative-core", version = "=0.10.2" }
19-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.2" }
17+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.0" }
18+
gdnative-core = { path = "../gdnative-core", version = "=0.11.0" }
19+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.0" }
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.2"
8+
version = "0.11.0"
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.2" }
20+
gdnative-core = { path = "../gdnative-core", version = "=0.11.0" }
2121
libc = "0.2"
2222

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

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.2"
8+
version = "0.11.0"
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.2" }
21-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.2" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "=0.11.0" }
21+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.11.0" }
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.2"
8+
version = "0.11.0"
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.2"
8+
version = "0.11.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.10.2"
9+
version = "0.11.0"
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.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 }
29+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.0" }
30+
gdnative-core = { path = "../gdnative-core", version = "=0.11.0" }
31+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.0" }
32+
gdnative-async = { path = "../gdnative-async", version = "=0.11.0", 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.2"
7+
version = "0.11.0"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2021"

0 commit comments

Comments
 (0)