Skip to content

Commit 91e1b77

Browse files
bors[bot]chitoyuudependabot[bot]
authored
Merge #1014 #1018
1014: Prepare release v0.11.3 r=chitoyuu a=chitoyuu This will be a minor non-breaking maintenance update, releasing additions and fixes since 0.11.2 to crates before we move on to 0.12. 1018: Update unindent requirement from 0.1.5 to 0.2.0 r=chitoyuu a=dependabot[bot] Updates the requirements on [unindent](https://github.com/dtolnay/indoc) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/indoc/releases">unindent's releases</a>.</em></p> <blockquote> <h2>0.2.0</h2> <ul> <li>Rewrite to use <a href="https://github.com/dtolnay/proc-macro-hack"><code>proc-macro-hack</code></a> and work on stable Rust</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/indoc/commit/56948438be16b3460636d1364a4afd9e341db4b7"><code>5694843</code></a> Release 0.2.0</li> <li><a href="https://github.com/dtolnay/indoc/commit/84a3e3826d5d714f30b2097148b4a01bf3088c29"><code>84a3e38</code></a> Copy readme content to rustdoc</li> <li><a href="https://github.com/dtolnay/indoc/commit/120f94d9b821b34636186f69d140027b78ac6f4d"><code>120f94d</code></a> Set html_root_url</li> <li><a href="https://github.com/dtolnay/indoc/commit/9ca73f9bc5800c533f2f4eff47922ec5011e26a6"><code>9ca73f9</code></a> Update readme for 0.2</li> <li><a href="https://github.com/dtolnay/indoc/commit/fb4764de54425d93d1c478372e11baf64f5cc8df"><code>fb4764d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/indoc/issues/11">#11</a> from dtolnay/hack</li> <li><a href="https://github.com/dtolnay/indoc/commit/4d3bc1b37d6a9ebd73fd338f786b3c8f777ba215"><code>4d3bc1b</code></a> Rewrite using proc-macro-hack</li> <li><a href="https://github.com/dtolnay/indoc/commit/e9443ddfc8efc7ffd81acfc0130b441810617bdd"><code>e9443dd</code></a> Add feature(plugin) to the readme example code</li> <li><a href="https://github.com/dtolnay/indoc/commit/e4b25e04d1536ec52d03185be207106514c8a43e"><code>e4b25e0</code></a> Release 0.1.15</li> <li><a href="https://github.com/dtolnay/indoc/commit/8d8920fa85ecd23d65f46a421e2e01628a43dc95"><code>8d8920f</code></a> Update to syntex 0.51</li> <li><a href="https://github.com/dtolnay/indoc/commit/ecc698400cb3e3b816903d93be0cb3c95007f5fa"><code>ecc6984</code></a> Enable email notifications</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/indoc/compare/0.1.5...0.2.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - ``@dependabot` rebase` will rebase this PR - ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it - ``@dependabot` merge` will merge this PR after your CI passes on it - ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it - ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging - ``@dependabot` reopen` will reopen this PR if it is closed - ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Co-authored-by: Chitose Yuuzaki <chitoyuu@potatoes.gay> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 parents f1d36b5 + ae49c51 + b916ac7 commit 91e1b77

File tree

9 files changed

+38
-21
lines changed

9 files changed

+38
-21
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.3] - 2023-01-30
9+
10+
This is a backwards-compatible release; thus no removals or breaking changes.
11+
12+
### Added
13+
14+
- RPC modes are now supported for properties: `#[property(rpc = "mode")]`. (#1006)
15+
16+
### Changed
17+
18+
- Specialized pool array aliases such as `PoolByteArray` are now deprecated and will be removed in the next version. Use `PoolArray<u8>` instead. (#1007)
19+
20+
### Fixed
21+
22+
- Types with one-way conversions can now be exposed through the `#[property]` attribute. (#1013)
23+
- `FromVariant` for marker types should no longer fail in the fringe case where null object variants are explicitly used. (#1012)
24+
825
## [0.11.2] - 2023-01-09
926

1027
This is a hot-fix release for a high priority issue.

bindings-generator/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.11.2"
9+
version = "0.11.3"
1010
workspace = ".."
1111
edition = "2021"
1212
rust-version = "1.63"
@@ -24,5 +24,5 @@ quote = "1"
2424
regex = { version = "1.5.5", default-features = false, features = ["std"] } # for security: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html
2525
roxmltree = "0.17"
2626
syn = { version = "1", features = ["full", "extra-traits", "visit"] }
27-
unindent = "0.1.5"
27+
unindent = "0.2.0"
2828
which = { optional = true, version = "4" }

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.11.2"
8+
version = "0.11.3"
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.11.2" }
18-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
19-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.2" }
17+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
18+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
19+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.3" }
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.11.2"
8+
version = "0.11.3"
99
license = "MIT"
1010
workspace = ".."
1111
edition = "2021"
@@ -18,8 +18,8 @@ custom-godot = ["gdnative_bindings_generator/custom-godot"]
1818
ptrcall = ["gdnative_bindings_generator/ptrcall"]
1919

2020
[dependencies]
21-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
21+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
2222
libc = "0.2"
2323

2424
[build-dependencies]
25-
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.11.2" }
25+
gdnative_bindings_generator = { path = "../bindings-generator", version = "=0.11.3" }

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

1919
[dependencies]
20-
gdnative-sys = { path = "../gdnative-sys", version = "=0.11.2" }
21-
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.2" }
22-
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.11.2" }
20+
gdnative-sys = { path = "../gdnative-sys", version = "=0.11.3" }
21+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
22+
gdnative-impl-proc-macros = { path = "../impl/proc-macros", version = "=0.11.3" }
2323
ahash = "0.8"
2424
approx = "0.5"
2525
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.11.2"
8+
version = "0.11.3"
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.11.2"
8+
version = "0.11.3"
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.11.2"
9+
version = "0.11.3"
1010
license = "MIT"
1111
workspace = ".."
1212
readme = "../README.md"
@@ -28,10 +28,10 @@ gd-test = ["gdnative-core/gd-test"]
2828
type-tag-fallback = ["gdnative-core/type-tag-fallback"]
2929

3030
[dependencies]
31-
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.2" }
32-
gdnative-core = { path = "../gdnative-core", version = "=0.11.2" }
33-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.2" }
34-
gdnative-async = { path = "../gdnative-async", version = "=0.11.2", optional = true }
31+
gdnative-derive = { path = "../gdnative-derive", version = "=0.11.3" }
32+
gdnative-core = { path = "../gdnative-core", version = "=0.11.3" }
33+
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.11.3" }
34+
gdnative-async = { path = "../gdnative-async", version = "=0.11.3", optional = true }
3535

3636
[dev-dependencies]
3737
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.11.2"
7+
version = "0.11.3"
88
license = "MIT"
99
workspace = "../.."
1010
edition = "2021"

0 commit comments

Comments
 (0)