Skip to content

Commit c18a5e8

Browse files
committed
Auto merge of rust-lang#107142 - cuviper:relnotes-1.67, r=Mark-Simulacrum
Release notes for 1.67.0 r? `@Mark-Simulacrum` cc `@rust-lang/release`
2 parents 027c850 + b9be9e5 commit c18a5e8

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

RELEASES.md

+103
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,106 @@
1+
Version 1.67.0 (2023-01-26)
2+
==========================
3+
4+
<a id="1.67.0-Language"></a>
5+
6+
Language
7+
--------
8+
9+
- [Make `Sized` predicates coinductive, allowing cycles.](https://github.com/rust-lang/rust/pull/100386/)
10+
- [`#[must_use]` annotations on `async fn` also affect the `Future::Output`.](https://github.com/rust-lang/rust/pull/100633/)
11+
- [Elaborate supertrait obligations when deducing closure signatures.](https://github.com/rust-lang/rust/pull/101834/)
12+
- [Invalid literals are no longer an error under `cfg(FALSE)`.](https://github.com/rust-lang/rust/pull/102944/)
13+
- [Unreserve braced enum variants in value namespace.](https://github.com/rust-lang/rust/pull/103578/)
14+
15+
<a id="1.67.0-Compiler"></a>
16+
17+
Compiler
18+
--------
19+
20+
- [Enable varargs support for calling conventions other than `C` or `cdecl`.](https://github.com/rust-lang/rust/pull/97971/)
21+
- [Add new MIR constant propagation based on dataflow analysis.](https://github.com/rust-lang/rust/pull/101168/)
22+
- [Optimize field ordering by grouping m\*2^n-sized fields with equivalently aligned ones.](https://github.com/rust-lang/rust/pull/102750/)
23+
- [Stabilize native library modifier `verbatim`.](https://github.com/rust-lang/rust/pull/104360/)
24+
25+
Added and removed targets:
26+
27+
- [Add a tier 3 target for PowerPC on AIX](https://github.com/rust-lang/rust/pull/102293/), `powerpc64-ibm-aix`.
28+
- [Add a tier 3 target for the Sony PlayStation 1](https://github.com/rust-lang/rust/pull/102689/), `mipsel-sony-psx`.
29+
- [Add tier 3 `no_std` targets for the QNX Neutrino RTOS](https://github.com/rust-lang/rust/pull/102701/),
30+
`aarch64-unknown-nto-qnx710` and `x86_64-pc-nto-qnx710`.
31+
- [Remove tier 3 `linuxkernel` targets](https://github.com/rust-lang/rust/pull/104015/) (not used by the actual kernel).
32+
33+
Refer to Rust's [platform support page][platform-support-doc]
34+
for more information on Rust's tiered platform support.
35+
36+
<a id="1.67.0-Libraries"></a>
37+
38+
Libraries
39+
---------
40+
41+
- [Merge `crossbeam-channel` into `std::sync::mpsc`.](https://github.com/rust-lang/rust/pull/93563/)
42+
- [Fix inconsistent rounding of 0.5 when formatted to 0 decimal places.](https://github.com/rust-lang/rust/pull/102935/)
43+
- [Derive `Eq` and `Hash` for `ControlFlow`.](https://github.com/rust-lang/rust/pull/103084/)
44+
- [Don't build `compiler_builtins` with `-C panic=abort`.](https://github.com/rust-lang/rust/pull/103786/)
45+
46+
<a id="1.67.0-Stabilized-APIs"></a>
47+
48+
Stabilized APIs
49+
---------------
50+
51+
- [`{integer}::checked_ilog`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog)
52+
- [`{integer}::checked_ilog2`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog2)
53+
- [`{integer}::checked_ilog10`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog10)
54+
- [`{integer}::ilog`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog)
55+
- [`{integer}::ilog2`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog2)
56+
- [`{integer}::ilog10`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog10)
57+
- [`NonZeroU*::ilog2`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#method.ilog2)
58+
- [`NonZeroU*::ilog10`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#method.ilog10)
59+
- [`NonZero*::BITS`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#associatedconstant.BITS)
60+
61+
These APIs are now stable in const contexts:
62+
63+
- [`char::from_u32`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.from_u32)
64+
- [`char::from_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.from_digit)
65+
- [`char::to_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.to_digit)
66+
- [`core::char::from_u32`](https://doc.rust-lang.org/stable/core/char/fn.from_u32.html)
67+
- [`core::char::from_digit`](https://doc.rust-lang.org/stable/core/char/fn.from_digit.html)
68+
69+
<a id="1.67.0-Compatibility-Notes"></a>
70+
71+
Compatibility Notes
72+
-------------------
73+
74+
- [The layout of `repr(Rust)` types now groups m\*2^n-sized fields with
75+
equivalently aligned ones.](https://github.com/rust-lang/rust/pull/102750/)
76+
This is intended to be an optimization, but it is also known to increase type
77+
sizes in a few cases for the placement of enum tags. As a reminder, the layout
78+
of `repr(Rust)` types is an implementation detail, subject to change.
79+
- [0.5 now rounds to 0 when formatted to 0 decimal places.](https://github.com/rust-lang/rust/pull/102935/)
80+
This makes it consistent with the rest of floating point formatting that
81+
rounds ties toward even digits.
82+
- [Chains of `&&` and `||` will now drop temporaries from their sub-expressions in
83+
evaluation order, left-to-right.](https://github.com/rust-lang/rust/pull/103293/)
84+
Previously, it was "twisted" such that the _first_ expression dropped its
85+
temporaries _last_, after all of the other expressions dropped in order.
86+
- [Underscore suffixes on string literals are now a hard error.](https://github.com/rust-lang/rust/pull/103914/)
87+
This has been a future-compatibility warning since 1.20.0.
88+
- [Stop passing `-export-dynamic` to `wasm-ld`.](https://github.com/rust-lang/rust/pull/105405/)
89+
- [`main` is now mangled as `__main_void` on `wasm32-wasi`.](https://github.com/rust-lang/rust/pull/105468/)
90+
- [Cargo now emits an error if there are multiple registries in the configuration
91+
with the same index URL.](https://github.com/rust-lang/cargo/pull/10592)
92+
93+
<a id="1.67.0-Internal-Changes"></a>
94+
95+
Internal Changes
96+
----------------
97+
98+
These changes do not affect any public interfaces of Rust, but they represent
99+
significant improvements to the performance or internals of rustc and related
100+
tools.
101+
102+
- [Rewrite LLVM's archive writer in Rust.](https://github.com/rust-lang/rust/pull/97485/)
103+
1104
Version 1.66.1 (2023-01-10)
2105
===========================
3106

0 commit comments

Comments
 (0)