Skip to content

Commit 186282b

Browse files
bors[bot]Bromeon
andauthored
Merge #937
937: Prepare 0.10.1 release r=Bromeon a=Bromeon bors try Co-authored-by: Jan Haller <[email protected]>
2 parents a4be7c2 + 1f0edbd commit 186282b

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 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.1] - unreleased
9+
## [0.10.1] - 2022-09-03
1010

1111
This is a backwards-compatible release; thus no removals or breaking changes.
1212

README.md

Lines changed: 3 additions & 3 deletions
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"
41+
gdnative = "0.10.1"
4242

4343
[lib]
4444
crate-type = ["cdylib"]
@@ -80,12 +80,12 @@ pub struct HelloWorld;
8080

8181
#[methods]
8282
impl HelloWorld {
83-
fn new(_owner: &Node) -> Self {
83+
fn new(_base: &Node) -> Self {
8484
HelloWorld
8585
}
8686

8787
#[method]
88-
fn _ready(&self, #[base] _node: &Node) {
88+
fn _ready(&self, #[base] _base: &Node) {
8989
godot_print!("Hello, world.");
9090
}
9191
}

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.0"
9+
version = "0.10.1"
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.0"
8+
version = "0.10.1"
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.0" }
18-
gdnative-core = { path = "../gdnative-core", version = "=0.10.0" }
19-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.0" }
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" }
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.0"
8+
version = "0.10.1"
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.0" }
20+
gdnative-core = { path = "../gdnative-core", version = "=0.10.1" }
2121
libc = "0.2"
2222

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

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.0"
8+
version = "0.10.1"
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.0" }
21-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.0" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "=0.10.1" }
21+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.10.1" }
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.0"
8+
version = "0.10.1"
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.0"
8+
version = "0.10.1"
99
build = "build.rs"
1010
license = "MIT"
1111
workspace = ".."

gdnative-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ mod header_binding {
3333

3434
// run `xcrun --sdk iphoneos --show-sdk-path`
3535
let output = Command::new("xcrun")
36-
.args(&["--sdk", platform, "--show-sdk-path"])
36+
.args(["--sdk", platform, "--show-sdk-path"])
3737
.output()?
3838
.stdout;
3939
let prefix = std::str::from_utf8(&output)

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.0"
9+
version = "0.10.1"
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.0" }
30-
gdnative-core = { path = "../gdnative-core", version = "=0.10.0" }
31-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.10.0" }
32-
gdnative-async = { path = "../gdnative-async", version = "=0.10.0", optional = true }
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 }
3333

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

0 commit comments

Comments
 (0)