File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,17 @@ jobs:
102
102
if : ${{ matrix.is_windows }}
103
103
run : cargo build --target x86_64-pc-windows-msvc --release;
104
104
105
+ rustc-1-46 :
106
+ needs : rustfmt
107
+ runs-on : ubuntu-latest
108
+ steps :
109
+ - uses : actions/checkout@v2
110
+ - uses : actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f
111
+ with :
112
+ toolchain : 1.46.0
113
+ - name : Checking rustfmt
114
+ run : cargo check --all --all-features;
115
+
105
116
test_ios :
106
117
continue-on-error : ${{ matrix.experimental }}
107
118
needs : rustfmt
@@ -260,6 +271,7 @@ jobs:
260
271
- clippy
261
272
- rustfmt
262
273
- test
274
+ - rustc-1-46
263
275
- test_ios
264
276
- test_android
265
277
- godot_test
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.9.3] - 2020-02-02
9
+
10
+ ### Fixed
11
+
12
+ - ** The code now compiles on rustc versions not affected by https://github.com/rust-lang/rust/issues/79904 **
13
+
8
14
## [ 0.9.2] - 2020-02-01
9
15
10
16
### Added
Original file line number Diff line number Diff line change @@ -1156,7 +1156,9 @@ pub trait RefKindSpec: Sized {
1156
1156
#[ doc( hidden) ]
1157
1157
unsafe fn impl_from_maybe_ref_counted < T : GodotObject < RefKind = Self > > (
1158
1158
ptr : NonNull < sys:: godot_object > ,
1159
- ) -> Option < Ref < T , Unique > > ;
1159
+ ) -> Option < Ref < T , Unique > >
1160
+ where
1161
+ Self : RefKind ;
1160
1162
1161
1163
#[ doc( hidden) ]
1162
1164
unsafe fn impl_assume_safe < ' a , T : GodotObject < RefKind = Self > > (
You can’t perform that action at this time.
0 commit comments