You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASES.md
+9-18
Original file line number
Diff line number
Diff line change
@@ -4,20 +4,20 @@ Version 1.58.0 (2022-01-13)
4
4
Language
5
5
--------
6
6
7
-
- [Format strings can now capture arguments simply by writing `{ident}` in the string.][90473]
7
+
- [Format strings can now capture arguments simply by writing `{ident}` in the string.][90473] This works in all macros accepting format strings. Support for this in `panic!` (`panic!("{ident}")`) requires the 2021 edition; panic invocations in previous editions that appear to be trying to use this will result in a warning lint about not having the intended effect.
8
8
- [`*const T` pointers can now be dereferenced in const contexts.][89551]
9
9
- [The rules for when a generic struct implements `Unsize` have been relaxed.][90417]
10
10
11
11
Compiler
12
12
--------
13
13
14
14
- [Add LLVM CFI support to the Rust compiler][89652]
15
-
- [Stabilize -Z strip as -C strip][90058]
15
+
- [Stabilize -Z strip as -C strip][90058]. Note that while release builds already don't add debug symbols for the code you compile, the compiled standard library that ships with Rust includes debug symbols, so you may want to use the `strip` option to remove these symbols to produce smaller release binaries.
16
16
- [Add support for LLVM coverage mapping format versions 5 and 6][91207]
17
17
- [Emit LLVM optimization remarks when enabled with `-Cremark`][90833]
18
18
- [Update the minimum external LLVM to 12][90175]
19
19
- [Add `x86_64-unknown-none` at Tier 3*][89062]
20
-
- [Build musl dist artifacts with debuginfo enabled][90733]
20
+
- [Build musl dist artifacts with debuginfo enabled][90733]. When building release binaries using musl, you may want to use the newly stabilized strip option to remove these debug symbols, reducing the size of your binaries.
21
21
- [Don't abort compilation after giving a lint error][87337]
22
22
- [Error messages point at the source of trait bound obligations in more places][89580]
23
23
@@ -27,21 +27,12 @@ Compiler
27
27
Libraries
28
28
---------
29
29
30
-
- [Add #[must_use] to Rc::downgrade][89833]
31
-
- [Add #[must_use] to expensive computations][89835]
32
-
- [Add #[must_use] to mem/ptr functions][89839]
33
-
- [Add #[must_use] to remaining core functions][89897]
34
-
- [Add #[must_use] to remaining alloc functions][89899]
35
-
- [Add #[must_use] to len and is_empty][89786]
36
-
- [Add #[must_use] to thread::Builder][89789]
37
-
- [Add #[must_use] to alloc functions that would leak memory][90427]
38
-
- [Add #[must_use] to remaining std functions (A-N)][90430]
39
-
- [Add #[must_use] to remaining std functions (O-Z)][90431]
30
+
- [All remaining functions in the standard library have `#[must_use]` annotations where appropriate][89692], producing a warning when ignoring their return value. This helps catch mistakes such as expecting a function to mutate a value in place rather than return a new value.
40
31
- [Paths are automatically canonicalized on Windows for operations that support it][89174]
- [Re-enable debug checks for `copy` and `copy_nonoverlapping`][90041]
42
33
- [Implement `RefUnwindSafe` for `Rc<T>`][87467]
43
34
- [Make RSplit<T, P>: Clone not require T: Clone][90117]
44
-
- [Implement `Termination` for `Result<Infallible, E>`][88601]
35
+
- [Implement `Termination` for `Result<Infallible, E>`][88601]. This allows writing `fn main() -> Result<Infallible, ErrorType>`, for a program whose successful exits never involve returning from `main` (for instance, a program that calls `exit`, or that uses `exec` to run another program).
45
36
46
37
Stabilized APIs
47
38
---------------
@@ -95,7 +86,7 @@ Compatibility Notes
95
86
- Windows: [`std::process::Command` will no longer search the current directory for executables.][87704]
96
87
- [All proc-macro backward-compatibility lints are now deny-by-default.][88041]
97
88
- [proc_macro: Append .0 to unsuffixed float if it would otherwise become int token][90297]
98
-
- [Refactor weak symbols in std::sys::unix][90846]
89
+
- [Refactor weak symbols in std::sys::unix][90846]. This optimizes accesses to glibc functions, by avoiding the use of dlopen. This does not increase the [minimum expected version of glibc](https://doc.rust-lang.org/nightly/rustc/platform-support.html). However, software distributions that use symbol versions to detect library dependencies, and which take weak symbols into account in that analysis, may detect rust binaries as requiring newer versions of glibc.
99
90
- [rustdoc now rejects some unexpected semicolons in doctests][91026]
100
91
101
92
Internal Changes
@@ -105,11 +96,11 @@ These changes provide no direct user facing benefits, but represent significant
105
96
improvements to the internals and overall performance of rustc
106
97
and related tools.
107
98
108
-
- [Try all stable method candidates first before trying unstable ones][90329]
99
+
- [Try all stable method candidates first before trying unstable ones][90329]. This change ensures that adding new nightly-only methods to the Rust standard library will not break code invoking methods of the same name from traits outside the standard library.
109
100
- [Implement coherence checks for negative trait impls][90104]
110
101
- [Add rustc lint, warning when iterating over hashmaps][89558]
111
102
- [Optimize live point computation][90491]
112
-
- [Enable verification for 1/32th of queries loaded from disk][90361]
103
+
- [Enable verification for 1/32nd of queries loaded from disk][90361]
113
104
- [Implement version of normalize_erasing_regions that allows for normalization failure][91255]
0 commit comments