[go: up one dir, main page]

Skip to content

Tags: godot-rust/gdnative

Tags

0.11.3

Toggle 0.11.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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>

0.11.2

Toggle 0.11.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #1002

1002: Catch null object pointers in Variant::is_nil r=chitoyuu a=chitoyuu

With varcall, Godot sometimes return null objects as Variants with `VariantType::Object` but a null pointer, instead of the usually expected/assumed `VariantType::Nil`. This caused `Option::from_variant` to panic in case of null objects returned by Godot in this way.

Fix #1001

Co-authored-by: Chitose Yuuzaki <chitoyuu@potatoes.gay>

0.11.1

Toggle 0.11.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #1000

1000: Prepare 0.11.1 release r=chitoyuu a=chitoyuu

## Done

- Fixed `Varargs::as_slice` / optional argument error reporting
- Added CI checks for required error messages

Close #967

## Todo

- Write changelogs

Co-authored-by: Chitose Yuuzaki <chitoyuu@potatoes.gay>

0.11.0

Toggle 0.11.0's commit message
Update CI to accept 0.11.* releases

0.10.2

Toggle 0.10.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #953

953: Prepare 0.10.2 release r=Bromeon a=Bromeon



Co-authored-by: Jan Haller <bromeon@gmail.com>

0.10.1

Toggle 0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #937

937: Prepare 0.10.1 release r=Bromeon a=Bromeon

bors try

Co-authored-by: Jan Haller <bromeon@gmail.com>

0.10.0

Toggle 0.10.0's commit message
Add 'std' feature for regex crate

0.10.0-rc.0

Toggle 0.10.0-rc.0's commit message
Fix explicit version requirement in dev-dependencies

This is used for doc-tests, and would use a cyclic dependency if an explicit version is specified.
See also: rust-lang/cargo#4242

Also add some output to publishing CI.

0.9.3

Toggle 0.9.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #687

687: Bump version to 0.9.3 r=toasteater a=toasteater



Co-authored-by: toasteater <48371905+toasteater@users.noreply.github.com>

0.9.2

Toggle 0.9.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge #683

683: Prepare release 0.9.2 r=toasteater a=toasteater

This is a minor release focusing on improving documentation and rounding out rough edges of the API.

- Bumped all version numbers to 0.9.2
- Bumped dependencies to latest versions.
- Updated CHANGELOG.

Co-authored-by: toasteater <48371905+toasteater@users.noreply.github.com>