@@ -17,10 +17,13 @@ Compiler
17
17
--------
18
18
- [ Rustc now respects the ` -C codegen-units ` flag in incremental mode.] [ 70156 ]
19
19
Additionally when in incremental mode rustc defaults to 256 codegen units.
20
- - [ Added tier 3\* support for the ` aarch64-unknown-none ` and
21
- ` aarch64-unknown-none-softfloat ` targets.] [ 68334 ]
22
20
- [ Refactored ` catch_unwind ` , to have zero-cost unless unwinding is enabled and
23
21
a panic is thrown.] [ 67502 ]
22
+ - [ Added tier 3\* support for the ` aarch64-unknown-none ` and
23
+ ` aarch64-unknown-none-softfloat ` targets.] [ 68334 ]
24
+ - [ Added tier 3 support for ` arm64-apple-tvos ` and
25
+ ` x86_64-apple-tvos ` targets.] [ 68191 ]
26
+
24
27
25
28
Libraries
26
29
---------
@@ -33,6 +36,9 @@ Libraries
33
36
- [ ` String ` now implements ` From<&mut str> ` .] [ 69661 ]
34
37
- [ ` IoSlice ` now implements ` Copy ` .] [ 69403 ]
35
38
- [ ` Vec<T> ` now implements ` From<[T; N]> ` .] [ 68692 ] Where ` N ` is less than 32.
39
+ - [ ` proc_macro::LexError ` now implements ` fmt::Display ` and ` Error ` .] [ 68899 ]
40
+ - [ ` from_le_bytes ` , ` to_le_bytes ` , ` from_be_bytes ` , and ` to_be_bytes ` methods are
41
+ now ` const ` for all integer types.] [ 69373 ]
36
42
37
43
Stabilized APIs
38
44
---------------
@@ -84,6 +90,9 @@ Compatibility Notes
84
90
source file rather than the previous format of ` <NAME macros> ` .] [ 70969 ]
85
91
** Note:** this may not point a file that actually exists on the user's system.
86
92
- [ The minimum required external LLVM version has been bumped to LLVM 8.] [ 71147 ]
93
+ - [ ` mem::{zeroed, uninitialised, MaybeUninit} ` will now panic when used with types
94
+ that do not allow zero initialization such as ` NonZeroU8 ` .] [ 66059 ] This was
95
+ previously a warning.
87
96
88
97
Internal Only
89
98
-------------
@@ -94,7 +103,10 @@ related tools.
94
103
- [ dep_graph Avoid allocating a set on when the number reads are small.] [ 69778 ]
95
104
- [ Replace big JS dict with JSON parsing.] [ 71250 ]
96
105
97
-
106
+ [ 69373 ] : https://github.com/rust-lang/rust/pull/69373/
107
+ [ 66059 ] : https://github.com/rust-lang/rust/pull/66059/
108
+ [ 68191 ] : https://github.com/rust-lang/rust/pull/68191/
109
+ [ 68899 ] : https://github.com/rust-lang/rust/pull/68899/
98
110
[ 71147 ] : https://github.com/rust-lang/rust/pull/71147/
99
111
[ 71250 ] : https://github.com/rust-lang/rust/pull/71250/
100
112
[ 70937 ] : https://github.com/rust-lang/rust/pull/70937/
0 commit comments