Skip to content

Commit

Permalink
Try #686:
Browse files Browse the repository at this point in the history
  • Loading branch information
bors[bot] committed Feb 2, 2021
2 parents 7b23560 + 5d6f1d0 commit 7f083b6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ jobs:
if: ${{ matrix.is_windows }}
run: cargo build --target x86_64-pc-windows-msvc --release;

rustc-1-46:
needs: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
with:
toolchain: 1.46.0
- name: Checking rustfmt
run: cargo check --all --all-features;

test_ios:
continue-on-error: ${{ matrix.experimental }}
needs: rustfmt
Expand Down Expand Up @@ -260,6 +271,7 @@ jobs:
- clippy
- rustfmt
- test
- rustc-1-46
- test_ios
- test_android
- godot_test
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.3] - 2020-02-02

### Fixed

- **The code now compiles on rustc versions not affected by https://github.com/rust-lang/rust/issues/79904**

## [0.9.2] - 2020-02-01

### Added
Expand Down
4 changes: 3 additions & 1 deletion gdnative-core/src/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,9 @@ pub trait RefKindSpec: Sized {
#[doc(hidden)]
unsafe fn impl_from_maybe_ref_counted<T: GodotObject<RefKind = Self>>(
ptr: NonNull<sys::godot_object>,
) -> Option<Ref<T, Unique>>;
) -> Option<Ref<T, Unique>>
where
Self: RefKind;

#[doc(hidden)]
unsafe fn impl_assume_safe<'a, T: GodotObject<RefKind = Self>>(
Expand Down

0 comments on commit 7f083b6

Please sign in to comment.