]> git.proxmox.com Git - rustc.git/blob - RELEASES.md
Merge tag 'debian/1.72.1+dfsg1-1_exp1' into proxmox/bookworm
[rustc.git] / RELEASES.md
1 Version 1.72.1 (2023-09-14)
2 ===========================
3
4 - [Adjust codegen change to improve LLVM codegen](https://github.com/rust-lang/rust/pull/115236)
5 - [rustdoc: Fix self ty params in objects with lifetimes](https://github.com/rust-lang/rust/pull/115276)
6 - [Fix regression in compile times](https://github.com/rust-lang/rust/pull/114948)
7 - Resolve some ICE regressions in the compiler:
8 - [#115215](https://github.com/rust-lang/rust/pull/115215)
9 - [#115559](https://github.com/rust-lang/rust/pull/115559)
10
11 Version 1.72.0 (2023-08-24)
12 ==========================
13
14 <a id="1.72.0-Language"></a>
15
16 Language
17 --------
18
19 - [Replace const eval limit by a lint and add an exponential backoff warning](https://github.com/rust-lang/rust/pull/103877/)
20 - [expand: Change how `#![cfg(FALSE)]` behaves on crate root](https://github.com/rust-lang/rust/pull/110141/)
21 - [Stabilize inline asm for LoongArch64](https://github.com/rust-lang/rust/pull/111235/)
22 - [Uplift `clippy::undropped_manually_drops` lint](https://github.com/rust-lang/rust/pull/111530/)
23 - [Uplift `clippy::invalid_utf8_in_unchecked` lint](https://github.com/rust-lang/rust/pull/111543/)
24 - [Uplift `clippy::cast_ref_to_mut` lint](https://github.com/rust-lang/rust/pull/111567/)
25 - [Uplift `clippy::cmp_nan` lint](https://github.com/rust-lang/rust/pull/111818/)
26 - [resolve: Remove artificial import ambiguity errors](https://github.com/rust-lang/rust/pull/112086/)
27 - [Don't require associated types with Self: Sized bounds in `dyn Trait` objects](https://github.com/rust-lang/rust/pull/112319/)
28
29 <a id="1.72.0-Compiler"></a>
30
31 Compiler
32 --------
33
34 - [Remember names of `cfg`-ed out items to mention them in diagnostics](https://github.com/rust-lang/rust/pull/109005/)
35 - [Support for native WASM exceptions](https://github.com/rust-lang/rust/pull/111322/)
36 - [Add support for NetBSD/aarch64-be (big-endian arm64).](https://github.com/rust-lang/rust/pull/111326/)
37 - [Write to stdout if `-` is given as output file](https://github.com/rust-lang/rust/pull/111626/)
38 - [Force all native libraries to be statically linked when linking a static binary](https://github.com/rust-lang/rust/pull/111698/)
39 - [Add Tier 3 support for `loongarch64-unknown-none*`](https://github.com/rust-lang/rust/pull/112310/)
40 - [Prevent `.eh_frame` from being emitted for `-C panic=abort`](https://github.com/rust-lang/rust/pull/112403/)
41 - [Support 128-bit enum variant in debuginfo codegen](https://github.com/rust-lang/rust/pull/112474/)
42 - [compiler: update solaris/illumos to enable tsan support.](https://github.com/rust-lang/rust/pull/112039/)
43
44 Refer to Rust's [platform support page][platform-support-doc]
45 for more information on Rust's tiered platform support.
46
47 <a id="1.72.0-Libraries"></a>
48
49 Libraries
50 ---------
51
52 - [Document memory orderings of `thread::{park, unpark}`](https://github.com/rust-lang/rust/pull/99587/)
53 - [io: soften ‘at most one write attempt’ requirement in io::Write::write](https://github.com/rust-lang/rust/pull/107200/)
54 - [Specify behavior of HashSet::insert](https://github.com/rust-lang/rust/pull/107619/)
55 - [Relax implicit `T: Sized` bounds on `BufReader<T>`, `BufWriter<T>` and `LineWriter<T>`](https://github.com/rust-lang/rust/pull/111074/)
56 - [Update runtime guarantee for `select_nth_unstable`](https://github.com/rust-lang/rust/pull/111974/)
57 - [Return `Ok` on kill if process has already exited](https://github.com/rust-lang/rust/pull/112594/)
58 - [Implement PartialOrd for `Vec`s over different allocators](https://github.com/rust-lang/rust/pull/112632/)
59 - [Use 128 bits for TypeId hash](https://github.com/rust-lang/rust/pull/109953/)
60 - [Don't drain-on-drop in DrainFilter impls of various collections.](https://github.com/rust-lang/rust/pull/104455/)
61 - [Make `{Arc,Rc,Weak}::ptr_eq` ignore pointer metadata](https://github.com/rust-lang/rust/pull/106450/)
62
63 <a id="1.72.0-Rustdoc"></a>
64
65 Rustdoc
66 -------
67
68 - [Allow whitespace as path separator like double colon](https://github.com/rust-lang/rust/pull/108537/)
69 - [Add search result item types after their name](https://github.com/rust-lang/rust/pull/110688/)
70 - [Search for slices and arrays by type with `[]`](https://github.com/rust-lang/rust/pull/111958/)
71 - [Clean up type unification and "unboxing"](https://github.com/rust-lang/rust/pull/112233/)
72
73 <a id="1.72.0-Stabilized-APIs"></a>
74
75 Stabilized APIs
76 ---------------
77
78 - [`impl<T: Send> Sync for mpsc::Sender<T>`](https://doc.rust-lang.org/nightly/std/sync/mpsc/struct.Sender.html#impl-Sync-for-Sender%3CT%3E)
79 - [`impl TryFrom<&OsStr> for &str`](https://doc.rust-lang.org/nightly/std/primitive.str.html#impl-TryFrom%3C%26'a+OsStr%3E-for-%26'a+str)
80 - [`String::leak`](https://doc.rust-lang.org/nightly/alloc/string/struct.String.html#method.leak)
81
82 These APIs are now stable in const contexts:
83
84 - [`CStr::from_bytes_with_nul`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
85 - [`CStr::to_bytes`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
86 - [`CStr::to_bytes_with_nul`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
87 - [`CStr::to_str`](https://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
88
89 <a id="1.72.0-Cargo"></a>
90
91 Cargo
92 -----
93
94 - Enable `-Zdoctest-in-workspace` by default. When running each documentation
95 test, the working directory is set to the root directory of the package the
96 test belongs to.
97 [docs](https://doc.rust-lang.org/nightly/cargo/commands/cargo-test.html#working-directory-of-tests)
98 [#12221](https://github.com/rust-lang/cargo/pull/12221)
99 [#12288](https://github.com/rust-lang/cargo/pull/12288)
100 - Add support of the "default" keyword to reset previously set `build.jobs`
101 parallelism back to the default.
102 [#12222](https://github.com/rust-lang/cargo/pull/12222)
103
104 <a id="1.72.0-Compatibility-Notes"></a>
105
106 Compatibility Notes
107 -------------------
108
109 - [Alter `Display` for `Ipv6Addr` for IPv4-compatible addresses](https://github.com/rust-lang/rust/pull/112606/)
110 - Cargo changed feature name validation check to a hard error. The warning was
111 added in Rust 1.49. These extended characters aren't allowed on crates.io, so
112 this should only impact users of other registries, or people who don't publish
113 to a registry.
114 [#12291](https://github.com/rust-lang/cargo/pull/12291)
115
116 Version 1.71.1 (2023-08-03)
117 ===========================
118
119 - [Fix CVE-2023-38497: Cargo did not respect the umask when extracting dependencies](https://github.com/rust-lang/cargo/security/advisories/GHSA-j3xp-wfr4-hx87)
120 - [Fix bash completion for users of Rustup](https://github.com/rust-lang/rust/pull/113579)
121 - [Do not show `suspicious_double_ref_op` lint when calling `borrow()`](https://github.com/rust-lang/rust/pull/112517)
122 - [Fix ICE: substitute types before checking inlining compatibility](https://github.com/rust-lang/rust/pull/113802)
123 - [Fix ICE: don't use `can_eq` in `derive(..)` suggestion for missing method](https://github.com/rust-lang/rust/pull/111516)
124 - [Fix building Rust 1.71.0 from the source tarball](https://github.com/rust-lang/rust/issues/113678)
125
126 Version 1.71.0 (2023-07-13)
127 ==========================
128
129 <a id="1.71.0-Language"></a>
130
131 Language
132 --------
133
134 - [Stabilize `raw-dylib`, `link_ordinal`, `import_name_type` and `-Cdlltool`.](https://github.com/rust-lang/rust/pull/109677/)
135 - [Uplift `clippy::{drop,forget}_{ref,copy}` lints.](https://github.com/rust-lang/rust/pull/109732/)
136 - [Type inference is more conservative around constrained vars.](https://github.com/rust-lang/rust/pull/110100/)
137 - [Use fulfillment to check `Drop` impl compatibility](https://github.com/rust-lang/rust/pull/110577/)
138
139 <a id="1.71.0-Compiler"></a>
140
141 Compiler
142 --------
143
144 - [Evaluate place expression in `PlaceMention`](https://github.com/rust-lang/rust/pull/104844/),
145 making `let _ =` patterns more consistent with respect to the borrow checker.
146 - [Add `--print deployment-target` flag for Apple targets.](https://github.com/rust-lang/rust/pull/105354/)
147 - [Stabilize `extern "C-unwind"` and friends.](https://github.com/rust-lang/rust/pull/106075/)
148 The existing `extern "C"` etc. may change behavior for cross-language unwinding in a future release.
149 - [Update the version of musl used on `*-linux-musl` targets to 1.2.3](https://github.com/rust-lang/rust/pull/107129/),
150 enabling [time64](https://musl.libc.org/time64.html) on 32-bit systems.
151 - [Stabilize `debugger_visualizer`](https://github.com/rust-lang/rust/pull/108668/)
152 for embedding metadata like Microsoft's Natvis.
153 - [Enable flatten-format-args by default.](https://github.com/rust-lang/rust/pull/109999/)
154 - [Make `Self` respect tuple constructor privacy.](https://github.com/rust-lang/rust/pull/111245/)
155 - [Improve niche placement by trying two strategies and picking the better result.](https://github.com/rust-lang/rust/pull/108106/)
156 - [Use `apple-m1` as the target CPU for `aarch64-apple-darwin`.](https://github.com/rust-lang/rust/pull/109899/)
157 - [Add Tier 3 support for the `x86_64h-apple-darwin` target.](https://github.com/rust-lang/rust/pull/108795/)
158 - [Promote `loongarch64-unknown-linux-gnu` to Tier 2 with host tools.](https://github.com/rust-lang/rust/pull/110936/)
159
160 Refer to Rust's [platform support page][platform-support-doc]
161 for more information on Rust's tiered platform support.
162
163 <a id="1.71.0-Libraries"></a>
164
165 Libraries
166 ---------
167 - [Rework handling of recursive panics.](https://github.com/rust-lang/rust/pull/110975/)
168 Additional panics are allowed while unwinding, as long as they are caught before escaping
169 a `Drop` implementation, but panicking within a panic hook is now an immediate abort.
170 - [Loosen `From<&[T]> for Box<[T]>` bound to `T: Clone`.](https://github.com/rust-lang/rust/pull/103406/)
171 - [Remove unnecessary `T: Send` bound](https://github.com/rust-lang/rust/pull/111134/)
172 in `Error for mpsc::SendError<T>` and `TrySendError<T>`.
173 - [Fix docs for `alloc::realloc`](https://github.com/rust-lang/rust/pull/108630/)
174 to match `Layout` requirements that the size must not exceed `isize::MAX`.
175 - [Document `const {}` syntax for `std::thread_local`.](https://github.com/rust-lang/rust/pull/110620/)
176 This syntax was stabilized in Rust 1.59, but not previously mentioned in release notes.
177
178 <a id="1.71.0-Stabilized-APIs"></a>
179
180 Stabilized APIs
181 ---------------
182
183 - [`CStr::is_empty`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.is_empty)
184 - [`BuildHasher::hash_one`](https://doc.rust-lang.org/stable/std/hash/trait.BuildHasher.html#method.hash_one)
185 - [`NonZeroI*::is_positive`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.is_positive)
186 - [`NonZeroI*::is_negative`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.is_negative)
187 - [`NonZeroI*::checked_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.checked_neg)
188 - [`NonZeroI*::overflowing_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.overflowing_neg)
189 - [`NonZeroI*::saturating_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.saturating_neg)
190 - [`NonZeroI*::wrapping_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.wrapping_neg)
191 - [`Neg for NonZeroI*`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#impl-Neg-for-NonZeroI32)
192 - [`Neg for &NonZeroI*`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#impl-Neg-for-%26NonZeroI32)
193 - [`From<[T; N]> for (T...)`](https://doc.rust-lang.org/stable/std/primitive.array.html#impl-From%3C%5BT;+1%5D%3E-for-(T,))
194 (array to N-tuple for N in 1..=12)
195 - [`From<(T...)> for [T; N]`](https://doc.rust-lang.org/stable/std/primitive.array.html#impl-From%3C(T,)%3E-for-%5BT;+1%5D)
196 (N-tuple to array for N in 1..=12)
197 - [`windows::io::AsHandle for Box<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Box%3CT%3E)
198 - [`windows::io::AsHandle for Rc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Rc%3CT%3E)
199 - [`windows::io::AsHandle for Arc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Arc%3CT%3E)
200 - [`windows::io::AsSocket for Box<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Box%3CT%3E)
201 - [`windows::io::AsSocket for Rc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Rc%3CT%3E)
202 - [`windows::io::AsSocket for Arc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Arc%3CT%3E)
203
204 These APIs are now stable in const contexts:
205
206 - [`<*const T>::read`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read)
207 - [`<*const T>::read_unaligned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read_unaligned)
208 - [`<*mut T>::read`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read-1)
209 - [`<*mut T>::read_unaligned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read_unaligned-1)
210 - [`ptr::read`](https://doc.rust-lang.org/stable/std/ptr/fn.read.html)
211 - [`ptr::read_unaligned`](https://doc.rust-lang.org/stable/std/ptr/fn.read_unaligned.html)
212 - [`<[T]>::split_at`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_at)
213
214 <a id="1.71.0-Cargo"></a>
215
216 Cargo
217 -----
218 - [Allow named debuginfo options in `Cargo.toml`.](https://github.com/rust-lang/cargo/pull/11958/)
219 - [Add `workspace_default_members` to the output of `cargo metadata`.](https://github.com/rust-lang/cargo/pull/11978/)
220 - [Automatically inherit workspace fields when running `cargo new`/`cargo init`.](https://github.com/rust-lang/cargo/pull/12069/)
221
222 <a id="1.71.0-Rustdoc"></a>
223
224 Rustdoc
225 -------
226
227 - [Add a new `rustdoc::unescaped_backticks` lint for broken inline code.](https://github.com/rust-lang/rust/pull/105848/)
228 - [Support strikethrough with single tildes.](https://github.com/rust-lang/rust/pull/111152/) (`~~old~~` vs. `~new~`)
229
230 <a id="1.71.0-Misc"></a>
231
232 Misc
233 ----
234
235 <a id="1.71.0-Compatibility-Notes"></a>
236
237 Compatibility Notes
238 -------------------
239
240 - [Remove structural match from `TypeId`.](https://github.com/rust-lang/rust/pull/103291/)
241 Code that uses a constant `TypeId` in a pattern will potentially be broken.
242 Known cases have already been fixed -- in particular, users of the `log`
243 crate's `kv_unstable` feature should update to `log v0.4.18` or later.
244 - [Add a `sysroot` crate to represent the standard library crates.](https://github.com/rust-lang/rust/pull/108865/)
245 This does not affect stable users, but may require adjustment in tools that build their own standard library.
246 - [Cargo optimizes its usage under `rustup`.](https://github.com/rust-lang/cargo/pull/11917/) When
247 Cargo detects it will run `rustc` pointing to a rustup proxy, it'll try bypassing the proxy and
248 use the underlying binary directly. There are assumptions around the interaction with rustup and
249 `RUSTUP_TOOLCHAIN`. However, it's not expected to affect normal users.
250 - [When querying a package, Cargo tries only the original name, all hyphens, and all underscores to
251 handle misspellings.](https://github.com/rust-lang/cargo/pull/12083/) Previously, Cargo tried each
252 combination of hyphens and underscores, causing excessive requests to crates.io.
253 - Cargo now [disallows `RUSTUP_HOME`](https://github.com/rust-lang/cargo/pull/12101/) and
254 [`RUSTUP_TOOLCHAIN`](https://github.com/rust-lang/cargo/pull/12107/) in the `[env]` configuration
255 table. This is considered to be not a use case Cargo would like to support, since it will likely
256 cause problems or lead to confusion.
257
258 <a id="1.71.0-Internal-Changes"></a>
259
260 Internal Changes
261 ----------------
262
263 These changes do not affect any public interfaces of Rust, but they represent
264 significant improvements to the performance or internals of rustc and related
265 tools.
266
267
268 Version 1.70.0 (2023-06-01)
269 ==========================
270
271 <a id="1.70.0-Language"></a>
272
273 Language
274 --------
275 - [Relax ordering rules for `asm!` operands](https://github.com/rust-lang/rust/pull/105798/)
276 - [Properly allow macro expanded `format_args` invocations to uses captures](https://github.com/rust-lang/rust/pull/106505/)
277 - [Lint ambiguous glob re-exports](https://github.com/rust-lang/rust/pull/107880/)
278 - [Perform const and unsafe checking for expressions in `let _ = expr` position.](https://github.com/rust-lang/rust/pull/102256/)
279
280 <a id="1.70.0-Compiler"></a>
281
282 Compiler
283 --------
284 - [Extend -Cdebuginfo with new options and named aliases](https://github.com/rust-lang/rust/pull/109808/)
285 This provides a smaller version of debuginfo for cases that only need line number information
286 (`-Cdebuginfo=line-tables-only`), which may eventually become the default for `-Cdebuginfo=1`.
287 - [Make `unused_allocation` lint against `Box::new` too](https://github.com/rust-lang/rust/pull/104363/)
288 - [Detect uninhabited types early in const eval](https://github.com/rust-lang/rust/pull/109435/)
289 - [Switch to LLD as default linker for {arm,thumb}v4t-none-eabi](https://github.com/rust-lang/rust/pull/109721/)
290 - [Add tier 3 target `loongarch64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/96971)
291 - [Add tier 3 target for `i586-pc-nto-qnx700` (QNX Neutrino RTOS, version 7.0)](https://github.com/rust-lang/rust/pull/109173/),
292 - [Insert alignment checks for pointer dereferences as debug assertions](https://github.com/rust-lang/rust/pull/98112)
293 This catches undefined behavior at runtime, and may cause existing code to fail.
294
295 Refer to Rust's [platform support page][platform-support-doc]
296 for more information on Rust's tiered platform support.
297
298 <a id="1.70.0-Libraries"></a>
299
300 Libraries
301 ---------
302 - [Document NonZeroXxx layout guarantees](https://github.com/rust-lang/rust/pull/94786/)
303 - [Windows: make `Command` prefer non-verbatim paths](https://github.com/rust-lang/rust/pull/96391/)
304 - [Implement Default for some alloc/core iterators](https://github.com/rust-lang/rust/pull/99929/)
305 - [Fix handling of trailing bare CR in str::lines](https://github.com/rust-lang/rust/pull/100311/)
306 - [allow negative numeric literals in `concat!`](https://github.com/rust-lang/rust/pull/106844/)
307 - [Add documentation about the memory layout of `Cell`](https://github.com/rust-lang/rust/pull/106921/)
308 - [Use `partial_cmp` to implement tuple `lt`/`le`/`ge`/`gt`](https://github.com/rust-lang/rust/pull/108157/)
309 - [Stabilize `atomic_as_ptr`](https://github.com/rust-lang/rust/pull/108419/)
310 - [Stabilize `nonnull_slice_from_raw_parts`](https://github.com/rust-lang/rust/pull/97506/)
311 - [Partial stabilization of `once_cell`](https://github.com/rust-lang/rust/pull/105587/)
312 - [Stabilize `nonzero_min_max`](https://github.com/rust-lang/rust/pull/106633/)
313 - [Flatten/inline format_args!() and (string and int) literal arguments into format_args!()](https://github.com/rust-lang/rust/pull/106824/)
314 - [Stabilize movbe target feature](https://github.com/rust-lang/rust/pull/107711/)
315 - [don't splice from files into pipes in io::copy](https://github.com/rust-lang/rust/pull/108283/)
316 - [Add a builtin unstable `FnPtr` trait that is implemented for all function pointers](https://github.com/rust-lang/rust/pull/108080/)
317 This extends `Debug`, `Pointer`, `Hash`, `PartialEq`, `Eq`, `PartialOrd`, and `Ord`
318 implementations for function pointers with all ABIs.
319
320 <a id="1.70.0-Stabilized-APIs"></a>
321
322 Stabilized APIs
323 ---------------
324
325 - [`NonZero*::MIN/MAX`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI8.html#associatedconstant.MIN)
326 - [`BinaryHeap::retain`](https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#method.retain)
327 - [`Default for std::collections::binary_heap::IntoIter`](https://doc.rust-lang.org/stable/std/collections/binary_heap/struct.IntoIter.html)
328 - [`Default for std::collections::btree_map::{IntoIter, Iter, IterMut}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoIter.html)
329 - [`Default for std::collections::btree_map::{IntoKeys, Keys}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoKeys.html)
330 - [`Default for std::collections::btree_map::{IntoValues, Values}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoValues.html)
331 - [`Default for std::collections::btree_map::Range`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.Range.html)
332 - [`Default for std::collections::btree_set::{IntoIter, Iter}`](https://doc.rust-lang.org/stable/std/collections/btree_set/struct.IntoIter.html)
333 - [`Default for std::collections::btree_set::Range`](https://doc.rust-lang.org/stable/std/collections/btree_set/struct.Range.html)
334 - [`Default for std::collections::linked_list::{IntoIter, Iter, IterMut}`](https://doc.rust-lang.org/stable/alloc/collections/linked_list/struct.IntoIter.html)
335 - [`Default for std::vec::IntoIter`](https://doc.rust-lang.org/stable/alloc/vec/struct.IntoIter.html#impl-Default-for-IntoIter%3CT,+A%3E)
336 - [`Default for std::iter::Chain`](https://doc.rust-lang.org/stable/std/iter/struct.Chain.html)
337 - [`Default for std::iter::Cloned`](https://doc.rust-lang.org/stable/std/iter/struct.Cloned.html)
338 - [`Default for std::iter::Copied`](https://doc.rust-lang.org/stable/std/iter/struct.Copied.html)
339 - [`Default for std::iter::Enumerate`](https://doc.rust-lang.org/stable/std/iter/struct.Enumerate.html)
340 - [`Default for std::iter::Flatten`](https://doc.rust-lang.org/stable/std/iter/struct.Flatten.html)
341 - [`Default for std::iter::Fuse`](https://doc.rust-lang.org/stable/std/iter/struct.Fuse.html)
342 - [`Default for std::iter::Rev`](https://doc.rust-lang.org/stable/std/iter/struct.Rev.html)
343 - [`Default for std::slice::Iter`](https://doc.rust-lang.org/stable/std/slice/struct.Iter.html)
344 - [`Default for std::slice::IterMut`](https://doc.rust-lang.org/stable/std/slice/struct.IterMut.html)
345 - [`Rc::into_inner`](https://doc.rust-lang.org/stable/alloc/rc/struct.Rc.html#method.into_inner)
346 - [`Arc::into_inner`](https://doc.rust-lang.org/stable/alloc/sync/struct.Arc.html#method.into_inner)
347 - [`std::cell::OnceCell`](https://doc.rust-lang.org/stable/std/cell/struct.OnceCell.html)
348 - [`Option::is_some_and`](https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.is_some_and)
349 - [`NonNull::slice_from_raw_parts`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.slice_from_raw_parts)
350 - [`Result::is_ok_and`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.is_ok_and)
351 - [`Result::is_err_and`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.is_err_and)
352 - [`std::sync::atomic::Atomic*::as_ptr`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicU8.html#method.as_ptr)
353 - [`std::io::IsTerminal`](https://doc.rust-lang.org/stable/std/io/trait.IsTerminal.html)
354 - [`std::os::linux::net::SocketAddrExt`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.SocketAddrExt.html)
355 - [`std::os::unix::net::UnixDatagram::bind_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.bind_addr)
356 - [`std::os::unix::net::UnixDatagram::connect_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.connect_addr)
357 - [`std::os::unix::net::UnixDatagram::send_to_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.send_to_addr)
358 - [`std::os::unix::net::UnixListener::bind_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixListener.html#method.bind_addr)
359 - [`std::path::Path::as_mut_os_str`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.as_mut_os_str)
360 - [`std::sync::OnceLock`](https://doc.rust-lang.org/stable/std/sync/struct.OnceLock.html)
361
362 <a id="1.70.0-Cargo"></a>
363
364 Cargo
365 -----
366
367 - [Add `CARGO_PKG_README`](https://github.com/rust-lang/cargo/pull/11645/)
368 - [Make `sparse` the default protocol for crates.io](https://github.com/rust-lang/cargo/pull/11791/)
369 - [Accurately show status when downgrading dependencies](https://github.com/rust-lang/cargo/pull/11839/)
370 - [Use registry.default for login/logout](https://github.com/rust-lang/cargo/pull/11949/)
371 - [Stabilize `cargo logout`](https://github.com/rust-lang/cargo/pull/11950/)
372
373 <a id="1.70.0-Misc"></a>
374
375 Misc
376 ----
377
378 - [Stabilize rustdoc `--test-run-directory`](https://github.com/rust-lang/rust/pull/103682/)
379
380 <a id="1.70.0-Compatibility-Notes"></a>
381
382 Compatibility Notes
383 -------------------
384
385 - [Prevent stable `libtest` from supporting `-Zunstable-options`](https://github.com/rust-lang/rust/pull/109044/)
386 - [Perform const and unsafe checking for expressions in `let _ = expr` position.](https://github.com/rust-lang/rust/pull/102256/)
387 - [WebAssembly targets enable `sign-ext` and `mutable-globals` features in codegen](https://github.com/rust-lang/rust/issues/109807)
388 This may cause incompatibility with older execution environments.
389 - [Insert alignment checks for pointer dereferences as debug assertions](https://github.com/rust-lang/rust/pull/98112)
390 This catches undefined behavior at runtime, and may cause existing code to fail.
391
392 <a id="1.70.0-Internal-Changes"></a>
393
394 Internal Changes
395 ----------------
396
397 These changes do not affect any public interfaces of Rust, but they represent
398 significant improvements to the performance or internals of rustc and related
399 tools.
400
401 - [Upgrade to LLVM 16](https://github.com/rust-lang/rust/pull/109474/)
402 - [Use SipHash-1-3 instead of SipHash-2-4 for StableHasher](https://github.com/rust-lang/rust/pull/107925/)
403
404 Version 1.69.0 (2023-04-20)
405 ==========================
406
407 <a id="1.69.0-Language"></a>
408
409 Language
410 --------
411
412 - [Deriving built-in traits on packed structs works with `Copy` fields.](https://github.com/rust-lang/rust/pull/104429/)
413 - [Stabilize the `cmpxchg16b` target feature on x86 and x86_64.](https://github.com/rust-lang/rust/pull/106774/)
414 - [Improve analysis of trait bounds for associated types.](https://github.com/rust-lang/rust/pull/103695/)
415 - [Allow associated types to be used as union fields.](https://github.com/rust-lang/rust/pull/106938/)
416 - [Allow `Self: Autotrait` bounds on dyn-safe trait methods.](https://github.com/rust-lang/rust/pull/107082/)
417 - [Treat `str` as containing `[u8]` for auto trait purposes.](https://github.com/rust-lang/rust/pull/107941/)
418
419 <a id="1.69.0-Compiler"></a>
420
421 Compiler
422 --------
423
424 - [Upgrade `*-pc-windows-gnu` on CI to mingw-w64 v10 and GCC 12.2.](https://github.com/rust-lang/rust/pull/100178/)
425 - [Rework min_choice algorithm of member constraints.](https://github.com/rust-lang/rust/pull/105300/)
426 - [Support `true` and `false` as boolean flags in compiler arguments.](https://github.com/rust-lang/rust/pull/107043/)
427 - [Default `repr(C)` enums to `c_int` size.](https://github.com/rust-lang/rust/pull/107592/)
428
429 <a id="1.69.0-Libraries"></a>
430
431 Libraries
432 ---------
433
434 - [Implement the unstable `DispatchFromDyn` for cell types, allowing downstream experimentation with custom method receivers.](https://github.com/rust-lang/rust/pull/97373/)
435 - [Document that `fmt::Arguments::as_str()` may return `Some(_)` in more cases after optimization, subject to change.](https://github.com/rust-lang/rust/pull/106823/)
436 - [Implement `AsFd` and `AsRawFd` for `Rc`.](https://github.com/rust-lang/rust/pull/107317/)
437
438 <a id="1.69.0-Stabilized-APIs"></a>
439
440 Stabilized APIs
441 ---------------
442
443 - [`CStr::from_bytes_until_nul`](https://doc.rust-lang.org/stable/core/ffi/struct.CStr.html#method.from_bytes_until_nul)
444 - [`core::ffi::FromBytesUntilNulError`](https://doc.rust-lang.org/stable/core/ffi/struct.FromBytesUntilNulError.html)
445
446 These APIs are now stable in const contexts:
447
448 - [`SocketAddr::new`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.new)
449 - [`SocketAddr::ip`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.ip)
450 - [`SocketAddr::port`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.port)
451 - [`SocketAddr::is_ipv4`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.is_ipv4)
452 - [`SocketAddr::is_ipv6`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.is_ipv6)
453 - [`SocketAddrV4::new`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.new)
454 - [`SocketAddrV4::ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.ip)
455 - [`SocketAddrV4::port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.port)
456 - [`SocketAddrV6::new`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.new)
457 - [`SocketAddrV6::ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.ip)
458 - [`SocketAddrV6::port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.port)
459 - [`SocketAddrV6::flowinfo`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.flowinfo)
460 - [`SocketAddrV6::scope_id`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.scope_id)
461
462 <a id="1.69.0-Cargo"></a>
463
464 Cargo
465 -----
466
467 - [Cargo now suggests `cargo fix` or `cargo clippy --fix` when compilation warnings are auto-fixable.](https://github.com/rust-lang/cargo/pull/11558/)
468 - [Cargo now suggests `cargo add` if you try to install a library crate.](https://github.com/rust-lang/cargo/pull/11410/)
469 - [Cargo now sets the `CARGO_BIN_NAME` environment variable also for binary examples.](https://github.com/rust-lang/cargo/pull/11705/)
470
471 <a id="1.69.0-Rustdoc"></a>
472
473 Rustdoc
474 -----
475
476 - [Vertically compact trait bound formatting.](https://github.com/rust-lang/rust/pull/102842/)
477 - [Only include stable lints in `rustdoc::all` group.](https://github.com/rust-lang/rust/pull/106316/)
478 - [Compute maximum Levenshtein distance based on the query.](https://github.com/rust-lang/rust/pull/107141/)
479 - [Remove inconsistently-present sidebar tooltips.](https://github.com/rust-lang/rust/pull/107490/)
480 - [Search by macro when query ends with `!`.](https://github.com/rust-lang/rust/pull/108143/)
481
482 <a id="1.69.0-Compatibility-Notes"></a>
483
484 Compatibility Notes
485 -------------------
486
487 - [The `rust-analysis` component from `rustup` now only contains a warning placeholder.](https://github.com/rust-lang/rust/pull/101841/) This was primarily intended for RLS, and the corresponding `-Zsave-analysis` flag has been removed from the compiler as well.
488 - [Unaligned references to packed fields are now a hard error.](https://github.com/rust-lang/rust/pull/102513/) This has been a warning since 1.53, and denied by default with a future-compatibility warning since 1.62.
489 - [Update the minimum external LLVM to 14.](https://github.com/rust-lang/rust/pull/107573/)
490 - [Cargo now emits errors on invalid characters in a registry token.](https://github.com/rust-lang/cargo/pull/11600/)
491 - [When `default-features` is set to false of a workspace dependency, and an inherited dependency of a member has `default-features = true`, Cargo will enable default features of that dependency.](https://github.com/rust-lang/cargo/pull/11409/)
492 - [Cargo denies `CARGO_HOME` in the `[env]` configuration table. Cargo itself doesn't pick up this value, but recursive calls to cargo would, which was not intended.](https://github.com/rust-lang/cargo/pull/11644/)
493 - [Debuginfo for build dependencies is now off if not explicitly set. This is expected to improve the overall build time.](https://github.com/rust-lang/cargo/pull/11252/)
494 - [The Rust distribution no longer always includes rustdoc](https://github.com/rust-lang/rust/pull/106886)
495 If `tools = [...]` is set in config.toml, we will respect a missing rustdoc in that list. By
496 default rustdoc remains included. To retain the prior behavior explicitly add `"rustdoc"` to the
497 list.
498
499 <a id="1.69.0-Internal-Changes"></a>
500
501 Internal Changes
502 ----------------
503
504 These changes do not affect any public interfaces of Rust, but they represent
505 significant improvements to the performance or internals of rustc and related
506 tools.
507
508 - [Move `format_args!()` into AST (and expand it during AST lowering)](https://github.com/rust-lang/rust/pull/106745/)
509
510 Version 1.68.2 (2023-03-28)
511 ===========================
512
513 - [Update the GitHub RSA host key bundled within Cargo](https://github.com/rust-lang/cargo/pull/11883).
514 The key was [rotated by GitHub](https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/)
515 on 2023-03-24 after the old one leaked.
516 - [Mark the old GitHub RSA host key as revoked](https://github.com/rust-lang/cargo/pull/11889).
517 This will prevent Cargo from accepting the leaked key even when trusted by
518 the system.
519 - [Add support for `@revoked` and a better error message for `@cert-authority` in Cargo's SSH host key verification](https://github.com/rust-lang/cargo/pull/11635)
520
521 Version 1.68.1 (2023-03-23)
522 ===========================
523
524 - [Fix miscompilation in produced Windows MSVC artifacts](https://github.com/rust-lang/rust/pull/109094)
525 This was introduced by enabling ThinLTO for the distributed rustc which led
526 to miscompilations in the resulting binary. Currently this is believed to be
527 limited to the -Zdylib-lto flag used for rustc compilation, rather than a
528 general bug in ThinLTO, so only rustc artifacts should be affected.
529 - [Fix --enable-local-rust builds](https://github.com/rust-lang/rust/pull/109111/)
530 - [Treat `$prefix-clang` as `clang` in linker detection code](https://github.com/rust-lang/rust/pull/109156)
531 - [Fix panic in compiler code](https://github.com/rust-lang/rust/pull/108162)
532
533 Version 1.68.0 (2023-03-09)
534 ==========================
535
536 <a id="1.68.0-Language"></a>
537
538 Language
539 --------
540
541 - [Stabilize default_alloc_error_handler](https://github.com/rust-lang/rust/pull/102318/)
542 This allows usage of `alloc` on stable without requiring the
543 definition of a handler for allocation failure. Defining custom handlers is still unstable.
544 - [Stabilize `efiapi` calling convention.](https://github.com/rust-lang/rust/pull/105795/)
545 - [Remove implicit promotion for types with drop glue](https://github.com/rust-lang/rust/pull/105085/)
546
547 <a id="1.68.0-Compiler"></a>
548
549 Compiler
550 --------
551
552 - [Change `bindings_with_variant_name` to deny-by-default](https://github.com/rust-lang/rust/pull/104154/)
553 - [Allow .. to be parsed as let initializer](https://github.com/rust-lang/rust/pull/105701/)
554 - [Add `armv7-sony-vita-newlibeabihf` as a tier 3 target](https://github.com/rust-lang/rust/pull/105712/)
555 - [Always check alignment during compile-time const evaluation](https://github.com/rust-lang/rust/pull/104616/)
556 - [Disable "split dwarf inlining" by default.](https://github.com/rust-lang/rust/pull/106709/)
557 - [Add vendor to Fuchsia's target triple](https://github.com/rust-lang/rust/pull/106429/)
558 - [Enable sanitizers for s390x-linux](https://github.com/rust-lang/rust/pull/107127/)
559
560 <a id="1.68.0-Libraries"></a>
561
562 Libraries
563 ---------
564
565 - [Loosen the bound on the Debug implementation of Weak.](https://github.com/rust-lang/rust/pull/90291/)
566 - [Make `std::task::Context` !Send and !Sync](https://github.com/rust-lang/rust/pull/95985/)
567 - [PhantomData layout guarantees](https://github.com/rust-lang/rust/pull/104081/)
568 - [Don't derive Debug for `OnceWith` & `RepeatWith`](https://github.com/rust-lang/rust/pull/104163/)
569 - [Implement DerefMut for PathBuf](https://github.com/rust-lang/rust/pull/105018/)
570 - [Add O(1) `Vec -> VecDeque` conversion guarantee](https://github.com/rust-lang/rust/pull/105128/)
571 - [Leak amplification for peek_mut() to ensure BinaryHeap's invariant is always met](https://github.com/rust-lang/rust/pull/105851/)
572
573 <a id="1.68.0-Stabilized-APIs"></a>
574
575 Stabilized APIs
576 ---------------
577
578 - [`{core,std}::pin::pin!`](https://doc.rust-lang.org/stable/std/pin/macro.pin.html)
579 - [`impl From<bool> for {f32,f64}`](https://doc.rust-lang.org/stable/std/primitive.f32.html#impl-From%3Cbool%3E-for-f32)
580 - [`std::path::MAIN_SEPARATOR_STR`](https://doc.rust-lang.org/stable/std/path/constant.MAIN_SEPARATOR_STR.html)
581 - [`impl DerefMut for PathBuf`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#impl-DerefMut-for-PathBuf)
582
583 These APIs are now stable in const contexts:
584
585 - [`VecDeque::new`](https://doc.rust-lang.org/stable/std/collections/struct.VecDeque.html#method.new)
586
587 <a id="1.68.0-Cargo"></a>
588
589 Cargo
590 -----
591
592 - [Stabilize sparse registry support for crates.io](https://github.com/rust-lang/cargo/pull/11224/)
593 - [`cargo build --verbose` tells you more about why it recompiles.](https://github.com/rust-lang/cargo/pull/11407/)
594 - [Show progress of crates.io index update even `net.git-fetch-with-cli` option enabled](https://github.com/rust-lang/cargo/pull/11579/)
595
596 <a id="1.68.0-Misc"></a>
597
598 Misc
599 ----
600
601 <a id="1.68.0-Compatibility-Notes"></a>
602
603 Compatibility Notes
604 -------------------
605
606 - [Only support Android NDK 25 or newer](https://blog.rust-lang.org/2023/01/09/android-ndk-update-r25.html)
607 - [Add `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` to future-incompat report](https://github.com/rust-lang/rust/pull/103418/)
608 - [Only specify `--target` by default for `-Zgcc-ld=lld` on wasm](https://github.com/rust-lang/rust/pull/101792/)
609 - [Bump `IMPLIED_BOUNDS_ENTAILMENT` to Deny + ReportNow](https://github.com/rust-lang/rust/pull/106465/)
610 - [`std::task::Context` no longer implements Send and Sync](https://github.com/rust-lang/rust/pull/95985)
611
612 <a id="1.68.0-Internal-Changes"></a>
613
614 Internal Changes
615 ----------------
616
617 These changes do not affect any public interfaces of Rust, but they represent
618 significant improvements to the performance or internals of rustc and related
619 tools.
620
621 - [Encode spans relative to the enclosing item](https://github.com/rust-lang/rust/pull/84762/)
622 - [Don't normalize in AstConv](https://github.com/rust-lang/rust/pull/101947/)
623 - [Find the right lower bound region in the scenario of partial order relations](https://github.com/rust-lang/rust/pull/104765/)
624 - [Fix impl block in const expr](https://github.com/rust-lang/rust/pull/104889/)
625 - [Check ADT fields for copy implementations considering regions](https://github.com/rust-lang/rust/pull/105102/)
626 - [rustdoc: simplify JS search routine by not messing with lev distance](https://github.com/rust-lang/rust/pull/105796/)
627 - [Enable ThinLTO for rustc on `x86_64-pc-windows-msvc`](https://github.com/rust-lang/rust/pull/103591/)
628 - [Enable ThinLTO for rustc on `x86_64-apple-darwin`](https://github.com/rust-lang/rust/pull/103647/)
629
630 Version 1.67.1 (2023-02-09)
631 ===========================
632
633 - [Fix interoperability with thin archives.](https://github.com/rust-lang/rust/pull/107360)
634 - [Fix an internal error in the compiler build process.](https://github.com/rust-lang/rust/pull/105624)
635 - [Downgrade `clippy::uninlined_format_args` to pedantic.](https://github.com/rust-lang/rust-clippy/pull/10265)
636
637 Version 1.67.0 (2023-01-26)
638 ==========================
639
640 <a id="1.67.0-Language"></a>
641
642 Language
643 --------
644
645 - [Make `Sized` predicates coinductive, allowing cycles.](https://github.com/rust-lang/rust/pull/100386/)
646 - [`#[must_use]` annotations on `async fn` also affect the `Future::Output`.](https://github.com/rust-lang/rust/pull/100633/)
647 - [Elaborate supertrait obligations when deducing closure signatures.](https://github.com/rust-lang/rust/pull/101834/)
648 - [Invalid literals are no longer an error under `cfg(FALSE)`.](https://github.com/rust-lang/rust/pull/102944/)
649 - [Unreserve braced enum variants in value namespace.](https://github.com/rust-lang/rust/pull/103578/)
650
651 <a id="1.67.0-Compiler"></a>
652
653 Compiler
654 --------
655
656 - [Enable varargs support for calling conventions other than `C` or `cdecl`.](https://github.com/rust-lang/rust/pull/97971/)
657 - [Add new MIR constant propagation based on dataflow analysis.](https://github.com/rust-lang/rust/pull/101168/)
658 - [Optimize field ordering by grouping m\*2^n-sized fields with equivalently aligned ones.](https://github.com/rust-lang/rust/pull/102750/)
659 - [Stabilize native library modifier `verbatim`.](https://github.com/rust-lang/rust/pull/104360/)
660
661 Added, updated, and removed targets:
662
663 - [Add a tier 3 target for PowerPC on AIX](https://github.com/rust-lang/rust/pull/102293/), `powerpc64-ibm-aix`.
664 - [Add a tier 3 target for the Sony PlayStation 1](https://github.com/rust-lang/rust/pull/102689/), `mipsel-sony-psx`.
665 - [Add tier 3 `no_std` targets for the QNX Neutrino RTOS](https://github.com/rust-lang/rust/pull/102701/),
666 `aarch64-unknown-nto-qnx710` and `x86_64-pc-nto-qnx710`.
667 - [Promote UEFI targets to tier 2](https://github.com/rust-lang/rust/pull/103933/), `aarch64-unknown-uefi`, `i686-unknown-uefi`, and `x86_64-unknown-uefi`.
668 - [Remove tier 3 `linuxkernel` targets](https://github.com/rust-lang/rust/pull/104015/) (not used by the actual kernel).
669
670 Refer to Rust's [platform support page][platform-support-doc]
671 for more information on Rust's tiered platform support.
672
673 <a id="1.67.0-Libraries"></a>
674
675 Libraries
676 ---------
677
678 - [Merge `crossbeam-channel` into `std::sync::mpsc`.](https://github.com/rust-lang/rust/pull/93563/)
679 - [Fix inconsistent rounding of 0.5 when formatted to 0 decimal places.](https://github.com/rust-lang/rust/pull/102935/)
680 - [Derive `Eq` and `Hash` for `ControlFlow`.](https://github.com/rust-lang/rust/pull/103084/)
681 - [Don't build `compiler_builtins` with `-C panic=abort`.](https://github.com/rust-lang/rust/pull/103786/)
682
683 <a id="1.67.0-Stabilized-APIs"></a>
684
685 Stabilized APIs
686 ---------------
687
688 - [`{integer}::checked_ilog`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog)
689 - [`{integer}::checked_ilog2`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog2)
690 - [`{integer}::checked_ilog10`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.checked_ilog10)
691 - [`{integer}::ilog`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog)
692 - [`{integer}::ilog2`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog2)
693 - [`{integer}::ilog10`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.ilog10)
694 - [`NonZeroU*::ilog2`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#method.ilog2)
695 - [`NonZeroU*::ilog10`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#method.ilog10)
696 - [`NonZero*::BITS`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroU32.html#associatedconstant.BITS)
697
698 These APIs are now stable in const contexts:
699
700 - [`char::from_u32`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.from_u32)
701 - [`char::from_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.from_digit)
702 - [`char::to_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.to_digit)
703 - [`core::char::from_u32`](https://doc.rust-lang.org/stable/core/char/fn.from_u32.html)
704 - [`core::char::from_digit`](https://doc.rust-lang.org/stable/core/char/fn.from_digit.html)
705
706 <a id="1.67.0-Compatibility-Notes"></a>
707
708 Compatibility Notes
709 -------------------
710
711 - [The layout of `repr(Rust)` types now groups m\*2^n-sized fields with
712 equivalently aligned ones.](https://github.com/rust-lang/rust/pull/102750/)
713 This is intended to be an optimization, but it is also known to increase type
714 sizes in a few cases for the placement of enum tags. As a reminder, the layout
715 of `repr(Rust)` types is an implementation detail, subject to change.
716 - [0.5 now rounds to 0 when formatted to 0 decimal places.](https://github.com/rust-lang/rust/pull/102935/)
717 This makes it consistent with the rest of floating point formatting that
718 rounds ties toward even digits.
719 - [Chains of `&&` and `||` will now drop temporaries from their sub-expressions in
720 evaluation order, left-to-right.](https://github.com/rust-lang/rust/pull/103293/)
721 Previously, it was "twisted" such that the _first_ expression dropped its
722 temporaries _last_, after all of the other expressions dropped in order.
723 - [Underscore suffixes on string literals are now a hard error.](https://github.com/rust-lang/rust/pull/103914/)
724 This has been a future-compatibility warning since 1.20.0.
725 - [Stop passing `-export-dynamic` to `wasm-ld`.](https://github.com/rust-lang/rust/pull/105405/)
726 - [`main` is now mangled as `__main_void` on `wasm32-wasi`.](https://github.com/rust-lang/rust/pull/105468/)
727 - [Cargo now emits an error if there are multiple registries in the configuration
728 with the same index URL.](https://github.com/rust-lang/cargo/pull/10592)
729
730 <a id="1.67.0-Internal-Changes"></a>
731
732 Internal Changes
733 ----------------
734
735 These changes do not affect any public interfaces of Rust, but they represent
736 significant improvements to the performance or internals of rustc and related
737 tools.
738
739 - [Rewrite LLVM's archive writer in Rust.](https://github.com/rust-lang/rust/pull/97485/)
740
741 Version 1.66.1 (2023-01-10)
742 ===========================
743
744 - Added validation of SSH host keys for git URLs in Cargo ([CVE-2022-46176](https://www.cve.org/CVERecord?id=CVE-2022-46176))
745
746 Version 1.66.0 (2022-12-15)
747 ==========================
748
749 Language
750 --------
751 - [Permit specifying explicit discriminants on all `repr(Int)` enums](https://github.com/rust-lang/rust/pull/95710/)
752 ```rust
753 #[repr(u8)]
754 enum Foo {
755 A(u8) = 0,
756 B(i8) = 1,
757 C(bool) = 42,
758 }
759 ```
760 - [Allow transmutes between the same type differing only in lifetimes](https://github.com/rust-lang/rust/pull/101520/)
761 - [Change constant evaluation errors from a deny-by-default lint to a hard error](https://github.com/rust-lang/rust/pull/102091/)
762 - [Trigger `must_use` on `impl Trait` for supertraits](https://github.com/rust-lang/rust/pull/102287/)
763 This makes `impl ExactSizeIterator` respect the existing `#[must_use]` annotation on `Iterator`.
764 - [Allow `..=X` in patterns](https://github.com/rust-lang/rust/pull/102275/)
765 - [Uplift `clippy::for_loops_over_fallibles` lint into rustc](https://github.com/rust-lang/rust/pull/99696/)
766 - [Stabilize `sym` operands in inline assembly](https://github.com/rust-lang/rust/pull/103168/)
767 - [Update to Unicode 15](https://github.com/rust-lang/rust/pull/101912/)
768 - [Opaque types no longer imply lifetime bounds](https://github.com/rust-lang/rust/pull/95474/)
769 This is a soundness fix which may break code that was erroneously relying on this behavior.
770
771 Compiler
772 --------
773 - [Add armv5te-none-eabi and thumbv5te-none-eabi tier 3 targets](https://github.com/rust-lang/rust/pull/101329/)
774 - Refer to Rust's [platform support page][platform-support-doc] for more
775 information on Rust's tiered platform support.
776 - [Add support for linking against macOS universal libraries](https://github.com/rust-lang/rust/pull/98736)
777
778 Libraries
779 ---------
780 - [Fix `#[derive(Default)]` on a generic `#[default]` enum adding unnecessary `Default` bounds](https://github.com/rust-lang/rust/pull/101040/)
781 - [Update to Unicode 15](https://github.com/rust-lang/rust/pull/101821/)
782
783 Stabilized APIs
784 ---------------
785
786 - [`proc_macro::Span::source_text`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.source_text)
787 - [`uX::{checked_add_signed, overflowing_add_signed, saturating_add_signed, wrapping_add_signed}`](https://doc.rust-lang.org/stable/std/primitive.u8.html#method.checked_add_signed)
788 - [`iX::{checked_add_unsigned, overflowing_add_unsigned, saturating_add_unsigned, wrapping_add_unsigned}`](https://doc.rust-lang.org/stable/std/primitive.i8.html#method.checked_add_unsigned)
789 - [`iX::{checked_sub_unsigned, overflowing_sub_unsigned, saturating_sub_unsigned, wrapping_sub_unsigned}`](https://doc.rust-lang.org/stable/std/primitive.i8.html#method.checked_sub_unsigned)
790 - [`BTreeSet::{first, last, pop_first, pop_last}`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeSet.html#method.first)
791 - [`BTreeMap::{first_key_value, last_key_value, first_entry, last_entry, pop_first, pop_last}`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html#method.first_key_value)
792 - [Add `AsFd` implementations for stdio lock types on WASI.](https://github.com/rust-lang/rust/pull/101768/)
793 - [`impl TryFrom<Vec<T>> for Box<[T; N]>`](https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#impl-TryFrom%3CVec%3CT%2C%20Global%3E%3E-for-Box%3C%5BT%3B%20N%5D%2C%20Global%3E)
794 - [`core::hint::black_box`](https://doc.rust-lang.org/stable/std/hint/fn.black_box.html)
795 - [`Duration::try_from_secs_{f32,f64}`](https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.try_from_secs_f32)
796 - [`Option::unzip`](https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.unzip)
797 - [`std::os::fd`](https://doc.rust-lang.org/stable/std/os/fd/index.html)
798
799
800 Rustdoc
801 -------
802
803 - [Add Rustdoc warning for invalid HTML tags in the documentation](https://github.com/rust-lang/rust/pull/101720/)
804
805 Cargo
806 -----
807
808 - [Added `cargo remove` to remove dependencies from Cargo.toml](https://doc.rust-lang.org/nightly/cargo/commands/cargo-remove.html)
809 - [`cargo publish` now waits for the new version to be downloadable before exiting](https://github.com/rust-lang/cargo/pull/11062)
810
811 See [detailed release notes](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-166-2022-12-15) for more.
812
813 Compatibility Notes
814 -------------------
815
816 - [Only apply `ProceduralMasquerade` hack to older versions of `rental`](https://github.com/rust-lang/rust/pull/94063/)
817 - [Don't export `__heap_base` and `__data_end` on wasm32-wasi.](https://github.com/rust-lang/rust/pull/102385/)
818 - [Don't export `__wasm_init_memory` on WebAssembly.](https://github.com/rust-lang/rust/pull/102426/)
819 - [Only export `__tls_*` on wasm32-unknown-unknown.](https://github.com/rust-lang/rust/pull/102440/)
820 - [Don't link to `libresolv` in libstd on Darwin](https://github.com/rust-lang/rust/pull/102766/)
821 - [Update libstd's libc to 0.2.135 (to make `libstd` no longer pull in `libiconv.dylib` on Darwin)](https://github.com/rust-lang/rust/pull/103277/)
822 - [Opaque types no longer imply lifetime bounds](https://github.com/rust-lang/rust/pull/95474/)
823 This is a soundness fix which may break code that was erroneously relying on this behavior.
824 - [Make `order_dependent_trait_objects` show up in future-breakage reports](https://github.com/rust-lang/rust/pull/102635/)
825 - [Change std::process::Command spawning to default to inheriting the parent's signal mask](https://github.com/rust-lang/rust/pull/101077/)
826
827 Internal Changes
828 ----------------
829
830 These changes do not affect any public interfaces of Rust, but they represent
831 significant improvements to the performance or internals of rustc and related
832 tools.
833
834 - [Enable BOLT for LLVM compilation](https://github.com/rust-lang/rust/pull/94381/)
835 - [Enable LTO for rustc_driver.so](https://github.com/rust-lang/rust/pull/101403/)
836
837 Version 1.65.0 (2022-11-03)
838 ==========================
839
840 Language
841 --------
842 - [Error on `as` casts of enums with `#[non_exhaustive]` variants](https://github.com/rust-lang/rust/pull/92744/)
843 - [Stabilize `let else`](https://github.com/rust-lang/rust/pull/93628/)
844 - [Stabilize generic associated types (GATs)](https://github.com/rust-lang/rust/pull/96709/)
845 - [Add lints `let_underscore_drop` and `let_underscore_lock` from Clippy](https://github.com/rust-lang/rust/pull/97739/)
846 - [Stabilize `break`ing from arbitrary labeled blocks ("label-break-value")](https://github.com/rust-lang/rust/pull/99332/)
847 - [Uninitialized integers, floats, and raw pointers are now considered immediate UB](https://github.com/rust-lang/rust/pull/98919/).
848 Usage of `MaybeUninit` is the correct way to work with uninitialized memory.
849 - [Stabilize raw-dylib for Windows x86_64, aarch64, and thumbv7a](https://github.com/rust-lang/rust/pull/99916/)
850 - [Do not allow `Drop` impl on foreign ADTs](https://github.com/rust-lang/rust/pull/99576/)
851
852 Compiler
853 --------
854 - [Stabilize -Csplit-debuginfo on Linux](https://github.com/rust-lang/rust/pull/98051/)
855 - [Use niche-filling optimization even when multiple variants have data](https://github.com/rust-lang/rust/pull/94075/)
856 - [Associated type projections are now verified to be well-formed prior to resolving the underlying type](https://github.com/rust-lang/rust/pull/99217/#issuecomment-1209365630)
857 - [Stringify non-shorthand visibility correctly](https://github.com/rust-lang/rust/pull/100350/)
858 - [Normalize struct field types when unsizing](https://github.com/rust-lang/rust/pull/101831/)
859 - [Update to LLVM 15](https://github.com/rust-lang/rust/pull/99464/)
860 - [Fix aarch64 call abi to correctly zeroext when needed](https://github.com/rust-lang/rust/pull/97800/)
861 - [debuginfo: Generalize C++-like encoding for enums](https://github.com/rust-lang/rust/pull/98393/)
862 - [Add `special_module_name` lint](https://github.com/rust-lang/rust/pull/94467/)
863 - [Add support for generating unique profraw files by default when using `-C instrument-coverage`](https://github.com/rust-lang/rust/pull/100384/)
864 - [Allow dynamic linking for iOS/tvOS targets](https://github.com/rust-lang/rust/pull/100636/)
865
866 New targets:
867
868 - [Add armv4t-none-eabi as a tier 3 target](https://github.com/rust-lang/rust/pull/100244/)
869 - [Add powerpc64-unknown-openbsd and riscv64-unknown-openbsd as tier 3 targets](https://github.com/rust-lang/rust/pull/101025/)
870 - Refer to Rust's [platform support page][platform-support-doc] for more
871 information on Rust's tiered platform support.
872
873 Libraries
874 ---------
875
876 - [Don't generate `PartialEq::ne` in derive(PartialEq)](https://github.com/rust-lang/rust/pull/98655/)
877 - [Windows RNG: Use `BCRYPT_RNG_ALG_HANDLE` by default](https://github.com/rust-lang/rust/pull/101325/)
878 - [Forbid mixing `System` with direct system allocator calls](https://github.com/rust-lang/rust/pull/101394/)
879 - [Document no support for writing to non-blocking stdio/stderr](https://github.com/rust-lang/rust/pull/101416/)
880 - [`std::layout::Layout` size must not overflow `isize::MAX` when rounded up to `align`](https://github.com/rust-lang/rust/pull/95295)
881 This also changes the safety conditions on `Layout::from_size_align_unchecked`.
882
883 Stabilized APIs
884 ---------------
885
886 - [`std::backtrace::Backtrace`](https://doc.rust-lang.org/stable/std/backtrace/struct.Backtrace.html)
887 - [`Bound::as_ref`](https://doc.rust-lang.org/stable/std/ops/enum.Bound.html#method.as_ref)
888 - [`std::io::read_to_string`](https://doc.rust-lang.org/stable/std/io/fn.read_to_string.html)
889 - [`<*const T>::cast_mut`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.cast_mut)
890 - [`<*mut T>::cast_const`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.cast_const)
891
892 These APIs are now stable in const contexts:
893
894 - [`<*const T>::offset_from`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from)
895 - [`<*mut T>::offset_from`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from)
896
897 Cargo
898 -----
899
900 - [Apply GitHub fast path even for partial hashes](https://github.com/rust-lang/cargo/pull/10807/)
901 - [Do not add home bin path to PATH if it's already there](https://github.com/rust-lang/cargo/pull/11023/)
902 - [Take priority into account within the pending queue](https://github.com/rust-lang/cargo/pull/11032/).
903 This slightly optimizes job scheduling by Cargo, with typically small improvements on larger crate graph builds.
904
905 Compatibility Notes
906 -------------------
907
908 - [`std::layout::Layout` size must not overflow `isize::MAX` when rounded up to `align`](https://github.com/rust-lang/rust/pull/95295).
909 This also changes the safety conditions on `Layout::from_size_align_unchecked`.
910 - [`PollFn` now only implements `Unpin` if the closure is `Unpin`](https://github.com/rust-lang/rust/pull/102737).
911 This is a possible breaking change if users were relying on the blanket unpin implementation.
912 See discussion on the PR for details of why this change was made.
913 - [Drop ExactSizeIterator impl from std::char::EscapeAscii](https://github.com/rust-lang/rust/pull/99880)
914 This is a backwards-incompatible change to the standard library's surface
915 area, but is unlikely to affect real world usage.
916 - [Do not consider a single repeated lifetime eligible for elision in the return type](https://github.com/rust-lang/rust/pull/103450)
917 This behavior was unintentionally changed in 1.64.0, and this release reverts that change by making this an error again.
918 - [Reenable disabled early syntax gates as future-incompatibility lints](https://github.com/rust-lang/rust/pull/99935/)
919 - [Update the minimum external LLVM to 13](https://github.com/rust-lang/rust/pull/100460/)
920 - [Don't duplicate file descriptors into stdio fds](https://github.com/rust-lang/rust/pull/101426/)
921 - [Sunset RLS](https://github.com/rust-lang/rust/pull/100863/)
922 - [Deny usage of `#![cfg_attr(..., crate_type = ...)]` to set the crate type](https://github.com/rust-lang/rust/pull/99784/)
923 This strengthens the forward compatibility lint deprecated_cfg_attr_crate_type_name to deny.
924 - [`llvm-has-rust-patches` allows setting the build system to treat the LLVM as having Rust-specific patches](https://github.com/rust-lang/rust/pull/101072)
925 This option may need to be set for distributions that are building Rust with a patched LLVM via `llvm-config`, not the built-in LLVM.
926 - Combining three or more languages (e.g. Objective C, C++ and Rust) into one binary may hit linker limitations when using `lld`. For more information, see [issue 102754][102754].
927
928 [102754]: https://github.com/rust-lang/rust/issues/102754
929
930 Internal Changes
931 ----------------
932
933 These changes do not affect any public interfaces of Rust, but they represent
934 significant improvements to the performance or internals of rustc and related
935 tools.
936
937 - [Add `x.sh` and `x.ps1` shell scripts](https://github.com/rust-lang/rust/pull/99992/)
938 - [compiletest: use target cfg instead of hard-coded tables](https://github.com/rust-lang/rust/pull/100260/)
939 - [Use object instead of LLVM for reading bitcode from rlibs](https://github.com/rust-lang/rust/pull/98100/)
940 - [Enable MIR inlining for optimized compilations](https://github.com/rust-lang/rust/pull/91743)
941 This provides a 3-10% improvement in compiletimes for real world crates. See [perf results](https://perf.rust-lang.org/compare.html?start=aedf78e56b2279cc869962feac5153b6ba7001ed&end=0075bb4fad68e64b6d1be06bf2db366c30bc75e1&stat=instructions:u).
942
943 Version 1.64.0 (2022-09-22)
944 ===========================
945
946 Language
947 --------
948 - [Unions with mutable references or tuples of allowed types are now allowed](https://github.com/rust-lang/rust/pull/97995/)
949 - It is now considered valid to deallocate memory pointed to by a shared reference `&T` [if every byte in `T` is inside an `UnsafeCell`](https://github.com/rust-lang/rust/pull/98017/)
950 - Unused tuple struct fields are now warned against in an allow-by-default lint, [`unused_tuple_struct_fields`](https://github.com/rust-lang/rust/pull/95977/), similar to the existing warning for unused struct fields. This lint will become warn-by-default in the future.
951
952 Compiler
953 --------
954 - [Add Nintendo Switch as tier 3 target](https://github.com/rust-lang/rust/pull/88991/)
955 - Refer to Rust's [platform support page][platform-support-doc] for more
956 information on Rust's tiered platform support.
957 - [Only compile `#[used]` as llvm.compiler.used for ELF targets](https://github.com/rust-lang/rust/pull/93718/)
958 - [Add the `--diagnostic-width` compiler flag to define the terminal width.](https://github.com/rust-lang/rust/pull/95635/)
959 - [Add support for link-flavor `rust-lld` for iOS, tvOS and watchOS](https://github.com/rust-lang/rust/pull/98771/)
960
961 Libraries
962 ---------
963 - [Remove restrictions on compare-exchange memory ordering.](https://github.com/rust-lang/rust/pull/98383/)
964 - You can now `write!` or `writeln!` into an `OsString`: [Implement `fmt::Write` for `OsString`](https://github.com/rust-lang/rust/pull/97915/)
965 - [Make RwLockReadGuard covariant](https://github.com/rust-lang/rust/pull/96820/)
966 - [Implement `FusedIterator` for `std::net::[Into]Incoming`](https://github.com/rust-lang/rust/pull/97300/)
967 - [`impl<T: AsRawFd> AsRawFd for {Arc,Box}<T>`](https://github.com/rust-lang/rust/pull/97437/)
968 - [`ptr::copy` and `ptr::swap` are doing untyped copies](https://github.com/rust-lang/rust/pull/97712/)
969 - [Add cgroupv1 support to `available_parallelism`](https://github.com/rust-lang/rust/pull/97925/)
970 - [Mitigate many incorrect uses of `mem::uninitialized`](https://github.com/rust-lang/rust/pull/99182/)
971
972 Stabilized APIs
973 ---------------
974
975 - [`future::IntoFuture`](https://doc.rust-lang.org/stable/std/future/trait.IntoFuture.html)
976 - [`future::poll_fn`](https://doc.rust-lang.org/stable/std/future/fn.poll_fn.html)
977 - [`task::ready!`](https://doc.rust-lang.org/stable/std/task/macro.ready.html)
978 - [`num::NonZero*::checked_mul`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.checked_mul)
979 - [`num::NonZero*::checked_pow`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.checked_pow)
980 - [`num::NonZero*::saturating_mul`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.saturating_mul)
981 - [`num::NonZero*::saturating_pow`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.saturating_pow)
982 - [`num::NonZeroI*::abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.abs)
983 - [`num::NonZeroI*::checked_abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.checked_abs)
984 - [`num::NonZeroI*::overflowing_abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.overflowing_abs)
985 - [`num::NonZeroI*::saturating_abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.saturating_abs)
986 - [`num::NonZeroI*::unsigned_abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.unsigned_abs)
987 - [`num::NonZeroI*::wrapping_abs`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroIsize.html#method.wrapping_abs)
988 - [`num::NonZeroU*::checked_add`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.checked_add)
989 - [`num::NonZeroU*::checked_next_power_of_two`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.checked_next_power_of_two)
990 - [`num::NonZeroU*::saturating_add`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroUsize.html#method.saturating_add)
991 - [`os::unix::process::CommandExt::process_group`](https://doc.rust-lang.org/stable/std/os/unix/process/trait.CommandExt.html#tymethod.process_group)
992 - [`os::windows::fs::FileTypeExt::is_symlink_dir`](https://doc.rust-lang.org/stable/std/os/windows/fs/trait.FileTypeExt.html#tymethod.is_symlink_dir)
993 - [`os::windows::fs::FileTypeExt::is_symlink_file`](https://doc.rust-lang.org/stable/std/os/windows/fs/trait.FileTypeExt.html#tymethod.is_symlink_file)
994
995 These types were previously stable in `std::ffi`, but are now also available in `core` and `alloc`:
996
997 - [`core::ffi::CStr`](https://doc.rust-lang.org/stable/core/ffi/struct.CStr.html)
998 - [`core::ffi::FromBytesWithNulError`](https://doc.rust-lang.org/stable/core/ffi/struct.FromBytesWithNulError.html)
999 - [`alloc::ffi::CString`](https://doc.rust-lang.org/stable/alloc/ffi/struct.CString.html)
1000 - [`alloc::ffi::FromVecWithNulError`](https://doc.rust-lang.org/stable/alloc/ffi/struct.FromVecWithNulError.html)
1001 - [`alloc::ffi::IntoStringError`](https://doc.rust-lang.org/stable/alloc/ffi/struct.IntoStringError.html)
1002 - [`alloc::ffi::NulError`](https://doc.rust-lang.org/stable/alloc/ffi/struct.NulError.html)
1003
1004 These types were previously stable in `std::os::raw`, but are now also available in `core::ffi` and `std::ffi`:
1005
1006 - [`ffi::c_char`](https://doc.rust-lang.org/stable/std/ffi/type.c_char.html)
1007 - [`ffi::c_double`](https://doc.rust-lang.org/stable/std/ffi/type.c_double.html)
1008 - [`ffi::c_float`](https://doc.rust-lang.org/stable/std/ffi/type.c_float.html)
1009 - [`ffi::c_int`](https://doc.rust-lang.org/stable/std/ffi/type.c_int.html)
1010 - [`ffi::c_long`](https://doc.rust-lang.org/stable/std/ffi/type.c_long.html)
1011 - [`ffi::c_longlong`](https://doc.rust-lang.org/stable/std/ffi/type.c_longlong.html)
1012 - [`ffi::c_schar`](https://doc.rust-lang.org/stable/std/ffi/type.c_schar.html)
1013 - [`ffi::c_short`](https://doc.rust-lang.org/stable/std/ffi/type.c_short.html)
1014 - [`ffi::c_uchar`](https://doc.rust-lang.org/stable/std/ffi/type.c_uchar.html)
1015 - [`ffi::c_uint`](https://doc.rust-lang.org/stable/std/ffi/type.c_uint.html)
1016 - [`ffi::c_ulong`](https://doc.rust-lang.org/stable/std/ffi/type.c_ulong.html)
1017 - [`ffi::c_ulonglong`](https://doc.rust-lang.org/stable/std/ffi/type.c_ulonglong.html)
1018 - [`ffi::c_ushort`](https://doc.rust-lang.org/stable/std/ffi/type.c_ushort.html)
1019
1020 These APIs are now usable in const contexts:
1021
1022 - [`slice::from_raw_parts`](https://doc.rust-lang.org/stable/core/slice/fn.from_raw_parts.html)
1023
1024 Cargo
1025 -----
1026 - [Packages can now inherit settings from the workspace so that the settings
1027 can be centralized in one place.](https://github.com/rust-lang/cargo/pull/10859) See
1028 [`workspace.package`](https://doc.rust-lang.org/nightly/cargo/reference/workspaces.html#the-workspacepackage-table)
1029 and
1030 [`workspace.dependencies`](https://doc.rust-lang.org/nightly/cargo/reference/workspaces.html#the-workspacedependencies-table)
1031 for more details on how to define these common settings.
1032 - [Cargo commands can now accept multiple `--target` flags to build for
1033 multiple targets at once](https://github.com/rust-lang/cargo/pull/10766), and the
1034 [`build.target`](https://doc.rust-lang.org/nightly/cargo/reference/config.html#buildtarget)
1035 config option may now take an array of multiple targets.
1036 - [The `--jobs` argument can now take a negative number to count backwards from
1037 the max CPUs.](https://github.com/rust-lang/cargo/pull/10844)
1038 - [`cargo add` will now update `Cargo.lock`.](https://github.com/rust-lang/cargo/pull/10902)
1039 - [Added](https://github.com/rust-lang/cargo/pull/10838) the
1040 [`--crate-type`](https://doc.rust-lang.org/nightly/cargo/commands/cargo-rustc.html#option-cargo-rustc---crate-type)
1041 flag to `cargo rustc` to override the crate type.
1042 - [Significantly improved the performance fetching git dependencies from GitHub
1043 when using a hash in the `rev` field.](https://github.com/rust-lang/cargo/pull/10079)
1044
1045 Misc
1046 ----
1047 - [The `rust-analyzer` rustup component is now available on the stable channel.](https://github.com/rust-lang/rust/pull/98640/)
1048
1049 Compatibility Notes
1050 -------------------
1051 - The minimum required versions for all `-linux-gnu` targets are now at least kernel 3.2 and glibc 2.17, for targets that previously supported older versions: [Increase the minimum linux-gnu versions](https://github.com/rust-lang/rust/pull/95026/)
1052 - [Network primitives are now implemented with the ideal Rust layout, not the C system layout](https://github.com/rust-lang/rust/pull/78802/). This can cause problems when transmuting the types.
1053 - [Add assertion that `transmute_copy`'s `U` is not larger than `T`](https://github.com/rust-lang/rust/pull/98839/)
1054 - [A soundness bug in `BTreeMap` was fixed](https://github.com/rust-lang/rust/pull/99413/) that allowed data it was borrowing to be dropped before the container.
1055 - [The Drop behavior of C-like enums cast to ints has changed](https://github.com/rust-lang/rust/pull/96862/). These are already discouraged by a compiler warning.
1056 - [Relate late-bound closure lifetimes to parent fn in NLL](https://github.com/rust-lang/rust/pull/98835/)
1057 - [Errors at const-eval time are now in future incompatibility reports](https://github.com/rust-lang/rust/pull/97743/)
1058 - On the `thumbv6m-none-eabi` target, some incorrect `asm!` statements were erroneously accepted if they used the high registers (r8 to r14) as an input/output operand. [This is no longer accepted](https://github.com/rust-lang/rust/pull/99155/).
1059 - [`impl Trait` was accidentally accepted as the associated type value of return-position `impl Trait`](https://github.com/rust-lang/rust/pull/97346/), without fulfilling all the trait bounds of that associated type, as long as the hidden type satisfies said bounds. This has been fixed.
1060
1061 Internal Changes
1062 ----------------
1063
1064 These changes do not affect any public interfaces of Rust, but they represent
1065 significant improvements to the performance or internals of rustc and related
1066 tools.
1067
1068 - Windows builds now use profile-guided optimization, providing 10-20% improvements to compiler performance: [Utilize PGO for windows x64 rustc dist builds](https://github.com/rust-lang/rust/pull/96978/)
1069 - [Stop keeping metadata in memory before writing it to disk](https://github.com/rust-lang/rust/pull/96544/)
1070 - [compiletest: strip debuginfo by default for mode=ui](https://github.com/rust-lang/rust/pull/98140/)
1071 - Many improvements to generated code for derives, including performance improvements:
1072 - [Don't use match-destructuring for derived ops on structs.](https://github.com/rust-lang/rust/pull/98446/)
1073 - [Many small deriving cleanups](https://github.com/rust-lang/rust/pull/98741/)
1074 - [More derive output improvements](https://github.com/rust-lang/rust/pull/98758/)
1075 - [Clarify deriving code](https://github.com/rust-lang/rust/pull/98915/)
1076 - [Final derive output improvements](https://github.com/rust-lang/rust/pull/99046/)
1077 - [Stop injecting `#[allow(unused_qualifications)]` in generated `derive` implementations](https://github.com/rust-lang/rust/pull/99485/)
1078 - [Improve `derive(Debug)`](https://github.com/rust-lang/rust/pull/98190/)
1079 - [Bump to clap 3](https://github.com/rust-lang/rust/pull/98213/)
1080 - [fully move dropck to mir](https://github.com/rust-lang/rust/pull/98641/)
1081 - [Optimize `Vec::insert` for the case where `index == len`.](https://github.com/rust-lang/rust/pull/98755/)
1082 - [Convert rust-analyzer to an in-tree tool](https://github.com/rust-lang/rust/pull/99603/)
1083
1084 Version 1.63.0 (2022-08-11)
1085 ==========================
1086
1087 Language
1088 --------
1089 - [Remove migrate borrowck mode for pre-NLL errors.][95565]
1090 - [Modify MIR building to drop repeat expressions with length zero.][95953]
1091 - [Remove label/lifetime shadowing warnings.][96296]
1092 - [Allow explicit generic arguments in the presence of `impl Trait` args.][96868]
1093 - [Make `cenum_impl_drop_cast` warnings deny-by-default.][97652]
1094 - [Prevent unwinding when `-C panic=abort` is used regardless of declared ABI.][96959]
1095 - [lub: don't bail out due to empty binders.][97867]
1096
1097 Compiler
1098 --------
1099 - [Stabilize the `bundle` native library modifier,][95818] also removing the
1100 deprecated `static-nobundle` linking kind.
1101 - [Add Apple WatchOS compile targets\*.][95243]
1102 - [Add a Windows application manifest to rustc-main.][96737]
1103
1104 \* Refer to Rust's [platform support page][platform-support-doc] for more
1105 information on Rust's tiered platform support.
1106
1107 Libraries
1108 ---------
1109 - [Implement `Copy`, `Clone`, `PartialEq` and `Eq` for `core::fmt::Alignment`.][94530]
1110 - [Extend `ptr::null` and `null_mut` to all thin (including extern) types.][94954]
1111 - [`impl Read and Write for VecDeque<u8>`.][95632]
1112 - [STD support for the Nintendo 3DS.][95897]
1113 - [Use rounding in float to Duration conversion methods.][96051]
1114 - [Make write/print macros eagerly drop temporaries.][96455]
1115 - [Implement internal traits that enable `[OsStr]::join`.][96881]
1116 - [Implement `Hash` for `core::alloc::Layout`.][97034]
1117 - [Add capacity documentation for `OsString`.][97202]
1118 - [Put a bound on collection misbehavior.][97316]
1119 - [Make `std::mem::needs_drop` accept `?Sized`.][97675]
1120 - [`impl Termination for Infallible` and then make the `Result` impls of `Termination` more generic.][97803]
1121 - [Document Rust's stance on `/proc/self/mem`.][97837]
1122
1123 Stabilized APIs
1124 ---------------
1125
1126 - [`array::from_fn`]
1127 - [`Box::into_pin`]
1128 - [`BinaryHeap::try_reserve`]
1129 - [`BinaryHeap::try_reserve_exact`]
1130 - [`OsString::try_reserve`]
1131 - [`OsString::try_reserve_exact`]
1132 - [`PathBuf::try_reserve`]
1133 - [`PathBuf::try_reserve_exact`]
1134 - [`Path::try_exists`]
1135 - [`Ref::filter_map`]
1136 - [`RefMut::filter_map`]
1137 - [`NonNull::<[T]>::len`][`NonNull::<slice>::len`]
1138 - [`ToOwned::clone_into`]
1139 - [`Ipv6Addr::to_ipv4_mapped`]
1140 - [`unix::io::AsFd`]
1141 - [`unix::io::BorrowedFd<'fd>`]
1142 - [`unix::io::OwnedFd`]
1143 - [`windows::io::AsHandle`]
1144 - [`windows::io::BorrowedHandle<'handle>`]
1145 - [`windows::io::OwnedHandle`]
1146 - [`windows::io::HandleOrInvalid`]
1147 - [`windows::io::HandleOrNull`]
1148 - [`windows::io::InvalidHandleError`]
1149 - [`windows::io::NullHandleError`]
1150 - [`windows::io::AsSocket`]
1151 - [`windows::io::BorrowedSocket<'handle>`]
1152 - [`windows::io::OwnedSocket`]
1153 - [`thread::scope`]
1154 - [`thread::Scope`]
1155 - [`thread::ScopedJoinHandle`]
1156
1157 These APIs are now usable in const contexts:
1158
1159 - [`array::from_ref`]
1160 - [`slice::from_ref`]
1161 - [`intrinsics::copy`]
1162 - [`intrinsics::copy_nonoverlapping`]
1163 - [`<*const T>::copy_to`]
1164 - [`<*const T>::copy_to_nonoverlapping`]
1165 - [`<*mut T>::copy_to`]
1166 - [`<*mut T>::copy_to_nonoverlapping`]
1167 - [`<*mut T>::copy_from`]
1168 - [`<*mut T>::copy_from_nonoverlapping`]
1169 - [`str::from_utf8`]
1170 - [`Utf8Error::error_len`]
1171 - [`Utf8Error::valid_up_to`]
1172 - [`Condvar::new`]
1173 - [`Mutex::new`]
1174 - [`RwLock::new`]
1175
1176 Cargo
1177 -----
1178 - [Stabilize the `--config path` command-line argument.][cargo/10755]
1179 - [Expose rust-version in the environment as `CARGO_PKG_RUST_VERSION`.][cargo/10713]
1180
1181 Compatibility Notes
1182 -------------------
1183
1184 - [`#[link]` attributes are now checked more strictly,][96885] which may introduce
1185 errors for invalid attribute arguments that were previously ignored.
1186 - [Rounding is now used when converting a float to a `Duration`.][96051] The converted
1187 duration can differ slightly from what it was.
1188
1189 Internal Changes
1190 ----------------
1191
1192 These changes provide no direct user facing benefits, but represent significant
1193 improvements to the internals and overall performance of rustc
1194 and related tools.
1195
1196 - [Prepare Rust for LLVM opaque pointers.][94214]
1197
1198 [94214]: https://github.com/rust-lang/rust/pull/94214/
1199 [94530]: https://github.com/rust-lang/rust/pull/94530/
1200 [94954]: https://github.com/rust-lang/rust/pull/94954/
1201 [95243]: https://github.com/rust-lang/rust/pull/95243/
1202 [95565]: https://github.com/rust-lang/rust/pull/95565/
1203 [95632]: https://github.com/rust-lang/rust/pull/95632/
1204 [95818]: https://github.com/rust-lang/rust/pull/95818/
1205 [95897]: https://github.com/rust-lang/rust/pull/95897/
1206 [95953]: https://github.com/rust-lang/rust/pull/95953/
1207 [96051]: https://github.com/rust-lang/rust/pull/96051/
1208 [96296]: https://github.com/rust-lang/rust/pull/96296/
1209 [96455]: https://github.com/rust-lang/rust/pull/96455/
1210 [96737]: https://github.com/rust-lang/rust/pull/96737/
1211 [96868]: https://github.com/rust-lang/rust/pull/96868/
1212 [96881]: https://github.com/rust-lang/rust/pull/96881/
1213 [96885]: https://github.com/rust-lang/rust/pull/96885/
1214 [96959]: https://github.com/rust-lang/rust/pull/96959/
1215 [97034]: https://github.com/rust-lang/rust/pull/97034/
1216 [97202]: https://github.com/rust-lang/rust/pull/97202/
1217 [97316]: https://github.com/rust-lang/rust/pull/97316/
1218 [97652]: https://github.com/rust-lang/rust/pull/97652/
1219 [97675]: https://github.com/rust-lang/rust/pull/97675/
1220 [97803]: https://github.com/rust-lang/rust/pull/97803/
1221 [97837]: https://github.com/rust-lang/rust/pull/97837/
1222 [97867]: https://github.com/rust-lang/rust/pull/97867/
1223 [cargo/10713]: https://github.com/rust-lang/cargo/pull/10713/
1224 [cargo/10755]: https://github.com/rust-lang/cargo/pull/10755/
1225
1226 [`array::from_fn`]: https://doc.rust-lang.org/stable/std/array/fn.from_fn.html
1227 [`Box::into_pin`]: https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.into_pin
1228 [`BinaryHeap::try_reserve_exact`]: https://doc.rust-lang.org/stable/alloc/collections/binary_heap/struct.BinaryHeap.html#method.try_reserve_exact
1229 [`BinaryHeap::try_reserve`]: https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#method.try_reserve
1230 [`OsString::try_reserve`]: https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.try_reserve
1231 [`OsString::try_reserve_exact`]: https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.try_reserve_exact
1232 [`PathBuf::try_reserve`]: https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.try_reserve
1233 [`PathBuf::try_reserve_exact`]: https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.try_reserve_exact
1234 [`Path::try_exists`]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.try_exists
1235 [`Ref::filter_map`]: https://doc.rust-lang.org/stable/std/cell/struct.Ref.html#method.filter_map
1236 [`RefMut::filter_map`]: https://doc.rust-lang.org/stable/std/cell/struct.RefMut.html#method.filter_map
1237 [`NonNull::<slice>::len`]: https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.len
1238 [`ToOwned::clone_into`]: https://doc.rust-lang.org/stable/std/borrow/trait.ToOwned.html#method.clone_into
1239 [`Ipv6Addr::to_ipv4_mapped`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.to_ipv4_mapped
1240 [`unix::io::AsFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.AsFd.html
1241 [`unix::io::BorrowedFd<'fd>`]: https://doc.rust-lang.org/stable/std/os/unix/io/struct.BorrowedFd.html
1242 [`unix::io::OwnedFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/struct.OwnedFd.html
1243 [`windows::io::AsHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html
1244 [`windows::io::BorrowedHandle<'handle>`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.BorrowedHandle.html
1245 [`windows::io::OwnedHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html
1246 [`windows::io::HandleOrInvalid`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.HandleOrInvalid.html
1247 [`windows::io::HandleOrNull`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.HandleOrNull.html
1248 [`windows::io::InvalidHandleError`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.InvalidHandleError.html
1249 [`windows::io::NullHandleError`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.NullHandleError.html
1250 [`windows::io::AsSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html
1251 [`windows::io::BorrowedSocket<'handle>`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.BorrowedSocket.html
1252 [`windows::io::OwnedSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedSocket.html
1253 [`thread::scope`]: https://doc.rust-lang.org/stable/std/thread/fn.scope.html
1254 [`thread::Scope`]: https://doc.rust-lang.org/stable/std/thread/struct.Scope.html
1255 [`thread::ScopedJoinHandle`]: https://doc.rust-lang.org/stable/std/thread/struct.ScopedJoinHandle.html
1256
1257 [`array::from_ref`]: https://doc.rust-lang.org/stable/std/array/fn.from_ref.html
1258 [`slice::from_ref`]: https://doc.rust-lang.org/stable/std/slice/fn.from_ref.html
1259 [`intrinsics::copy`]: https://doc.rust-lang.org/stable/std/intrinsics/fn.copy.html
1260 [`intrinsics::copy_nonoverlapping`]: https://doc.rust-lang.org/stable/std/intrinsics/fn.copy_nonoverlapping.html
1261 [`<*const T>::copy_to`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to
1262 [`<*const T>::copy_to_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to_nonoverlapping
1263 [`<*mut T>::copy_to`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to-1
1264 [`<*mut T>::copy_to_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to_nonoverlapping-1
1265 [`<*mut T>::copy_from`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_from
1266 [`<*mut T>::copy_from_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_from_nonoverlapping
1267 [`str::from_utf8`]: https://doc.rust-lang.org/stable/std/str/fn.from_utf8.html
1268 [`Utf8Error::error_len`]: https://doc.rust-lang.org/stable/std/str/struct.Utf8Error.html#method.error_len
1269 [`Utf8Error::valid_up_to`]: https://doc.rust-lang.org/stable/std/str/struct.Utf8Error.html#method.valid_up_to
1270 [`Condvar::new`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.new
1271 [`Mutex::new`]: https://doc.rust-lang.org/stable/std/sync/struct.Mutex.html#method.new
1272 [`RwLock::new`]: https://doc.rust-lang.org/stable/std/sync/struct.RwLock.html#method.new
1273
1274 Version 1.62.1 (2022-07-19)
1275 ==========================
1276
1277 Rust 1.62.1 addresses a few recent regressions in the compiler and standard
1278 library, and also mitigates a CPU vulnerability on Intel SGX.
1279
1280 * [The compiler fixed unsound function coercions involving `impl Trait` return types.][98608]
1281 * [The compiler fixed an incremental compilation bug with `async fn` lifetimes.][98890]
1282 * [Windows added a fallback for overlapped I/O in synchronous reads and writes.][98950]
1283 * [The `x86_64-fortanix-unknown-sgx` target added a mitigation for the
1284 MMIO stale data vulnerability][98126], advisory [INTEL-SA-00615].
1285
1286 [98608]: https://github.com/rust-lang/rust/issues/98608
1287 [98890]: https://github.com/rust-lang/rust/issues/98890
1288 [98950]: https://github.com/rust-lang/rust/pull/98950
1289 [98126]: https://github.com/rust-lang/rust/pull/98126
1290 [INTEL-SA-00615]: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00615.html
1291
1292 Version 1.62.0 (2022-06-30)
1293 ==========================
1294
1295 Language
1296 --------
1297
1298 - [Stabilize `#[derive(Default)]` on enums with a `#[default]` variant][94457]
1299 - [Teach flow sensitive checks that visibly uninhabited call expressions never return][93313]
1300 - [Fix constants not getting dropped if part of a diverging expression][94775]
1301 - [Support unit struct/enum variant in destructuring assignment][95380]
1302 - [Remove mutable_borrow_reservation_conflict lint and allow the code pattern][96268]
1303 - [`const` functions may now specify `extern "C"` or `extern "Rust"`][95346]
1304
1305 Compiler
1306 --------
1307
1308 - [linker: Stop using whole-archive on dependencies of dylibs][96436]
1309 - [Make `unaligned_references` lint deny-by-default][95372]
1310 This lint is also a future compatibility lint, and is expected to eventually
1311 become a hard error.
1312 - [Only add codegen backend to dep info if -Zbinary-dep-depinfo is used][93969]
1313 - [Reject `#[thread_local]` attribute on non-static items][95006]
1314 - [Add tier 3 `aarch64-pc-windows-gnullvm` and `x86_64-pc-windows-gnullvm` targets\*][94872]
1315 - [Implement a lint to warn about unused macro rules][96150]
1316 - [Promote `x86_64-unknown-none` target to Tier 2\*][95705]
1317
1318 \* Refer to Rust's [platform support page][platform-support-doc] for more
1319 information on Rust's tiered platform support.
1320
1321 Libraries
1322 ---------
1323
1324 - [Windows: Use a pipe relay for chaining pipes][95841]
1325 - [Replace Linux Mutex and Condvar with futex based ones.][95035]
1326 - [Replace RwLock by a futex based one on Linux][95801]
1327 - [std: directly use pthread in UNIX parker implementation][96393]
1328
1329 Stabilized APIs
1330 ---------------
1331
1332 - [`bool::then_some`]
1333 - [`f32::total_cmp`]
1334 - [`f64::total_cmp`]
1335 - [`Stdin::lines`]
1336 - [`windows::CommandExt::raw_arg`]
1337 - [`impl<T: Default> Default for AssertUnwindSafe<T>`]
1338 - [`From<Rc<str>> for Rc<[u8]>`][rc-u8-from-str]
1339 - [`From<Arc<str>> for Arc<[u8]>`][arc-u8-from-str]
1340 - [`FusedIterator for EncodeWide`]
1341 - [RDM intrinsics on aarch64][stdarch/1285]
1342
1343 Clippy
1344 ------
1345
1346 - [Create clippy lint against unexpectedly late drop for temporaries in match scrutinee expressions][94206]
1347
1348 Cargo
1349 -----
1350
1351 - Added the `cargo add` command for adding dependencies to `Cargo.toml` from
1352 the command-line.
1353 [docs](https://doc.rust-lang.org/nightly/cargo/commands/cargo-add.html)
1354 - Package ID specs now support `name@version` syntax in addition to the
1355 previous `name:version` to align with the behavior in `cargo add` and other
1356 tools. `cargo install` and `cargo yank` also now support this syntax so the
1357 version does not need to passed as a separate flag.
1358 - The `git` and `registry` directories in Cargo's home directory (usually
1359 `~/.cargo`) are now marked as cache directories so that they are not
1360 included in backups or content indexing (on Windows).
1361 - Added automatic `@` argfile support, which will use "response files" if the
1362 command-line to `rustc` exceeds the operating system's limit.
1363
1364 Compatibility Notes
1365 -------------------
1366
1367 - `cargo test` now passes `--target` to `rustdoc` if the specified target is
1368 the same as the host target.
1369 [#10594](https://github.com/rust-lang/cargo/pull/10594)
1370 - [rustdoc: doctests are now run on unexported `macro_rules!` macros, matching other private items][96630]
1371 - [rustdoc: Remove .woff font files][96279]
1372 - [Enforce Copy bounds for repeat elements while considering lifetimes][95819]
1373 - [Windows: Fix potential unsoundness by aborting if `File` reads or writes cannot
1374 complete synchronously][95469].
1375
1376 Internal Changes
1377 ----------------
1378
1379 - [Unify ReentrantMutex implementations across all platforms][96042]
1380
1381 These changes provide no direct user facing benefits, but represent significant
1382 improvements to the internals and overall performance of rustc
1383 and related tools.
1384
1385 [93313]: https://github.com/rust-lang/rust/pull/93313/
1386 [93969]: https://github.com/rust-lang/rust/pull/93969/
1387 [94206]: https://github.com/rust-lang/rust/pull/94206/
1388 [94457]: https://github.com/rust-lang/rust/pull/94457/
1389 [94775]: https://github.com/rust-lang/rust/pull/94775/
1390 [94872]: https://github.com/rust-lang/rust/pull/94872/
1391 [95006]: https://github.com/rust-lang/rust/pull/95006/
1392 [95035]: https://github.com/rust-lang/rust/pull/95035/
1393 [95346]: https://github.com/rust-lang/rust/pull/95346/
1394 [95372]: https://github.com/rust-lang/rust/pull/95372/
1395 [95380]: https://github.com/rust-lang/rust/pull/95380/
1396 [95431]: https://github.com/rust-lang/rust/pull/95431/
1397 [95469]: https://github.com/rust-lang/rust/pull/95469/
1398 [95705]: https://github.com/rust-lang/rust/pull/95705/
1399 [95801]: https://github.com/rust-lang/rust/pull/95801/
1400 [95819]: https://github.com/rust-lang/rust/pull/95819/
1401 [95841]: https://github.com/rust-lang/rust/pull/95841/
1402 [96042]: https://github.com/rust-lang/rust/pull/96042/
1403 [96150]: https://github.com/rust-lang/rust/pull/96150/
1404 [96268]: https://github.com/rust-lang/rust/pull/96268/
1405 [96279]: https://github.com/rust-lang/rust/pull/96279/
1406 [96393]: https://github.com/rust-lang/rust/pull/96393/
1407 [96436]: https://github.com/rust-lang/rust/pull/96436/
1408 [96557]: https://github.com/rust-lang/rust/pull/96557/
1409 [96630]: https://github.com/rust-lang/rust/pull/96630/
1410
1411 [`bool::then_some`]: https://doc.rust-lang.org/stable/std/primitive.bool.html#method.then_some
1412 [`f32::total_cmp`]: https://doc.rust-lang.org/stable/std/primitive.f32.html#method.total_cmp
1413 [`f64::total_cmp`]: https://doc.rust-lang.org/stable/std/primitive.f64.html#method.total_cmp
1414 [`Stdin::lines`]: https://doc.rust-lang.org/stable/std/io/struct.Stdin.html#method.lines
1415 [`impl<T: Default> Default for AssertUnwindSafe<T>`]: https://doc.rust-lang.org/stable/std/panic/struct.AssertUnwindSafe.html#impl-Default
1416 [rc-u8-from-str]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#impl-From%3CRc%3Cstr%3E%3E
1417 [arc-u8-from-str]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#impl-From%3CArc%3Cstr%3E%3E
1418 [stdarch/1285]: https://github.com/rust-lang/stdarch/pull/1285
1419 [`windows::CommandExt::raw_arg`]: https://doc.rust-lang.org/stable/std/os/windows/process/trait.CommandExt.html#tymethod.raw_arg
1420 [`FusedIterator for EncodeWide`]: https://doc.rust-lang.org/stable/std/os/windows/ffi/struct.EncodeWide.html#impl-FusedIterator
1421
1422 Version 1.61.0 (2022-05-19)
1423 ==========================
1424
1425 Language
1426 --------
1427
1428 - [`const fn` signatures can now include generic trait bounds][93827]
1429 - [`const fn` signatures can now use `impl Trait` in argument and return position][93827]
1430 - [Function pointers can now be created, cast, and passed around in a `const fn`][93827]
1431 - [Recursive calls can now set the value of a function's opaque `impl Trait` return type][94081]
1432
1433 Compiler
1434 --------
1435
1436 - [Linking modifier syntax in `#[link]` attributes and on the command line, as well as the `whole-archive` modifier specifically, are now supported][93901]
1437 - [The `char` type is now described as UTF-32 in debuginfo][89887]
1438 - The [`#[target_feature]`][target_feature] attribute [can now be used with aarch64 features][90621]
1439 - X86 [`#[target_feature = "adx"]` is now stable][93745]
1440
1441 Libraries
1442 ---------
1443
1444 - [`ManuallyDrop<T>` is now documented to have the same layout as `T`][88375]
1445 - [`#[ignore = "…"]` messages are printed when running tests][92714]
1446 - [Consistently show absent stdio handles on Windows as NULL handles][93263]
1447 - [Make `std::io::stdio::lock()` return `'static` handles.][93965] Previously, the creation of locked handles to stdin/stdout/stderr would borrow the handles being locked, which prevented writing `let out = std::io::stdout().lock();` because `out` would outlive the return value of `stdout()`. Such code now works, eliminating a common pitfall that affected many Rust users.
1448 - [`Vec::from_raw_parts` is now less restrictive about its inputs][95016]
1449 - [`std::thread::available_parallelism` now takes cgroup quotas into account.][92697] Since `available_parallelism` is often used to create a thread pool for parallel computation, which may be CPU-bound for performance, `available_parallelism` will return a value consistent with the ability to use that many threads continuously, if possible. For instance, in a container with 8 virtual CPUs but quotas only allowing for 50% usage, `available_parallelism` will return 4.
1450
1451 Stabilized APIs
1452 ---------------
1453
1454 - [`Pin::static_mut`]
1455 - [`Pin::static_ref`]
1456 - [`Vec::retain_mut`]
1457 - [`VecDeque::retain_mut`]
1458 - [`Write` for `Cursor<[u8; N]>`][cursor-write-array]
1459 - [`std::os::unix::net::SocketAddr::from_pathname`]
1460 - [`std::process::ExitCode`] and [`std::process::Termination`]. The stabilization of these two APIs now makes it possible for programs to return errors from `main` with custom exit codes.
1461 - [`std::thread::JoinHandle::is_finished`]
1462
1463 These APIs are now usable in const contexts:
1464
1465 - [`<*const T>::offset` and `<*mut T>::offset`][ptr-offset]
1466 - [`<*const T>::wrapping_offset` and `<*mut T>::wrapping_offset`][ptr-wrapping_offset]
1467 - [`<*const T>::add` and `<*mut T>::add`][ptr-add]
1468 - [`<*const T>::sub` and `<*mut T>::sub`][ptr-sub]
1469 - [`<*const T>::wrapping_add` and `<*mut T>::wrapping_add`][ptr-wrapping_add]
1470 - [`<*const T>::wrapping_sub` and `<*mut T>::wrapping_sub`][ptr-wrapping_sub]
1471 - [`<[T]>::as_mut_ptr`][slice-as_mut_ptr]
1472 - [`<[T]>::as_ptr_range`][slice-as_ptr_range]
1473 - [`<[T]>::as_mut_ptr_range`][slice-as_mut_ptr_range]
1474
1475 Cargo
1476 -----
1477
1478 No feature changes, but see compatibility notes.
1479
1480 Compatibility Notes
1481 -------------------
1482
1483 - Previously native static libraries were linked as `whole-archive` in some cases, but now rustc tries not to use `whole-archive` unless explicitly requested. This [change][93901] may result in linking errors in some cases. To fix such errors, native libraries linked from the command line, build scripts, or [`#[link]` attributes][link-attr] need to
1484 - (more common) either be reordered to respect dependencies between them (if `a` depends on `b` then `a` should go first and `b` second)
1485 - (less common) or be updated to use the [`+whole-archive`] modifier.
1486 - [Catching a second unwind from FFI code while cleaning up from a Rust panic now causes the process to abort][92911]
1487 - [Proc macros no longer see `ident` matchers wrapped in groups][92472]
1488 - [The number of `#` in `r#` raw string literals is now required to be less than 256][95251]
1489 - [When checking that a dyn type satisfies a trait bound, supertrait bounds are now enforced][92285]
1490 - [`cargo vendor` now only accepts one value for each `--sync` flag][cargo/10448]
1491 - [`cfg` predicates in `all()` and `any()` are always evaluated to detect errors, instead of short-circuiting.][94295] The compatibility considerations here arise in nightly-only code that used the short-circuiting behavior of `all` to write something like `cfg(all(feature = "nightly", syntax-requiring-nightly))`, which will now fail to compile. Instead, use either `cfg_attr(feature = "nightly", ...)` or nested uses of `cfg`.
1492 - [bootstrap: static-libstdcpp is now enabled by default, and can now be disabled when llvm-tools is enabled][94832]
1493
1494 Internal Changes
1495 ----------------
1496
1497 These changes provide no direct user facing benefits, but represent significant
1498 improvements to the internals and overall performance of rustc
1499 and related tools.
1500
1501 - [debuginfo: Refactor debuginfo generation for types][94261]
1502 - [Remove the everybody loops pass][93913]
1503
1504 [88375]: https://github.com/rust-lang/rust/pull/88375/
1505 [89887]: https://github.com/rust-lang/rust/pull/89887/
1506 [90621]: https://github.com/rust-lang/rust/pull/90621/
1507 [92285]: https://github.com/rust-lang/rust/pull/92285/
1508 [92472]: https://github.com/rust-lang/rust/pull/92472/
1509 [92697]: https://github.com/rust-lang/rust/pull/92697/
1510 [92714]: https://github.com/rust-lang/rust/pull/92714/
1511 [92911]: https://github.com/rust-lang/rust/pull/92911/
1512 [93263]: https://github.com/rust-lang/rust/pull/93263/
1513 [93745]: https://github.com/rust-lang/rust/pull/93745/
1514 [93827]: https://github.com/rust-lang/rust/pull/93827/
1515 [93901]: https://github.com/rust-lang/rust/pull/93901/
1516 [93913]: https://github.com/rust-lang/rust/pull/93913/
1517 [93965]: https://github.com/rust-lang/rust/pull/93965/
1518 [94081]: https://github.com/rust-lang/rust/pull/94081/
1519 [94261]: https://github.com/rust-lang/rust/pull/94261/
1520 [94295]: https://github.com/rust-lang/rust/pull/94295/
1521 [94832]: https://github.com/rust-lang/rust/pull/94832/
1522 [95016]: https://github.com/rust-lang/rust/pull/95016/
1523 [95251]: https://github.com/rust-lang/rust/pull/95251/
1524 [`+whole-archive`]: https://doc.rust-lang.org/stable/rustc/command-line-arguments.html#linking-modifiers-whole-archive
1525 [`Pin::static_mut`]: https://doc.rust-lang.org/stable/std/pin/struct.Pin.html#method.static_mut
1526 [`Pin::static_ref`]: https://doc.rust-lang.org/stable/std/pin/struct.Pin.html#method.static_ref
1527 [`Vec::retain_mut`]: https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.retain_mut
1528 [`VecDeque::retain_mut`]: https://doc.rust-lang.org/stable/std/collections/struct.VecDeque.html#method.retain_mut
1529 [`std::os::unix::net::SocketAddr::from_pathname`]: https://doc.rust-lang.org/stable/std/os/unix/net/struct.SocketAddr.html#method.from_pathname
1530 [`std::process::ExitCode`]: https://doc.rust-lang.org/stable/std/process/struct.ExitCode.html
1531 [`std::process::Termination`]: https://doc.rust-lang.org/stable/std/process/trait.Termination.html
1532 [`std::thread::JoinHandle::is_finished`]: https://doc.rust-lang.org/stable/std/thread/struct.JoinHandle.html#method.is_finished
1533 [cargo/10448]: https://github.com/rust-lang/cargo/pull/10448/
1534 [cursor-write-array]: https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#impl-Write-4
1535 [link-attr]: https://doc.rust-lang.org/stable/reference/items/external-blocks.html#the-link-attribute
1536 [ptr-add]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.add
1537 [ptr-offset]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset
1538 [ptr-sub]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.sub
1539 [ptr-wrapping_add]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_add
1540 [ptr-wrapping_offset]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_offset
1541 [ptr-wrapping_sub]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_sub
1542 [slice-as_mut_ptr]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_mut_ptr
1543 [slice-as_mut_ptr_range]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_mut_ptr_range
1544 [slice-as_ptr_range]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_ptr_range
1545 [target_feature]: https://doc.rust-lang.org/reference/attributes/codegen.html#the-target_feature-attribute
1546
1547
1548 Version 1.60.0 (2022-04-07)
1549 ==========================
1550
1551 Language
1552 --------
1553 - [Stabilize `#[cfg(panic = "...")]` for either `"unwind"` or `"abort"`.][93658]
1554 - [Stabilize `#[cfg(target_has_atomic = "...")]` for each integer size and `"ptr"`.][93824]
1555
1556 Compiler
1557 --------
1558 - [Enable combining `+crt-static` and `relocation-model=pic` on `x86_64-unknown-linux-gnu`][86374]
1559 - [Fixes wrong `unreachable_pub` lints on nested and glob public reexport][87487]
1560 - [Stabilize `-Z instrument-coverage` as `-C instrument-coverage`][90132]
1561 - [Stabilize `-Z print-link-args` as `--print link-args`][91606]
1562 - [Add new Tier 3 target `mips64-openwrt-linux-musl`\*][92300]
1563 - [Add new Tier 3 target `armv7-unknown-linux-uclibceabi` (softfloat)\*][92383]
1564 - [Fix invalid removal of newlines from doc comments][92357]
1565 - [Add kernel target for RustyHermit][92670]
1566 - [Deny mixing bin crate type with lib crate types][92933]
1567 - [Make rustc use `RUST_BACKTRACE=full` by default][93566]
1568 - [Upgrade to LLVM 14][93577]
1569
1570 \* Refer to Rust's [platform support page][platform-support-doc] for more
1571 information on Rust's tiered platform support.
1572
1573 Libraries
1574 ---------
1575 - [Guarantee call order for `sort_by_cached_key`][89621]
1576 - [Improve `Duration::try_from_secs_f32`/`f64` accuracy by directly processing exponent and mantissa][90247]
1577 - [Make `Instant::{duration_since, elapsed, sub}` saturating][89926]
1578 - [Remove non-monotonic clocks workarounds in `Instant::now`][89926]
1579 - [Make `BuildHasherDefault`, `iter::Empty` and `future::Pending` covariant][92630]
1580
1581 Stabilized APIs
1582 ---------------
1583 - [`Arc::new_cyclic`][arc_new_cyclic]
1584 - [`Rc::new_cyclic`][rc_new_cyclic]
1585 - [`slice::EscapeAscii`][slice_escape_ascii]
1586 - [`<[u8]>::escape_ascii`][slice_u8_escape_ascii]
1587 - [`u8::escape_ascii`][u8_escape_ascii]
1588 - [`Vec::spare_capacity_mut`][vec_spare_capacity_mut]
1589 - [`MaybeUninit::assume_init_drop`][assume_init_drop]
1590 - [`MaybeUninit::assume_init_read`][assume_init_read]
1591 - [`i8::abs_diff`][i8_abs_diff]
1592 - [`i16::abs_diff`][i16_abs_diff]
1593 - [`i32::abs_diff`][i32_abs_diff]
1594 - [`i64::abs_diff`][i64_abs_diff]
1595 - [`i128::abs_diff`][i128_abs_diff]
1596 - [`isize::abs_diff`][isize_abs_diff]
1597 - [`u8::abs_diff`][u8_abs_diff]
1598 - [`u16::abs_diff`][u16_abs_diff]
1599 - [`u32::abs_diff`][u32_abs_diff]
1600 - [`u64::abs_diff`][u64_abs_diff]
1601 - [`u128::abs_diff`][u128_abs_diff]
1602 - [`usize::abs_diff`][usize_abs_diff]
1603 - [`Display for io::ErrorKind`][display_error_kind]
1604 - [`From<u8> for ExitCode`][from_u8_exit_code]
1605 - [`Not for !` (the "never" type)][not_never]
1606 - [_Op_`Assign<$t> for Wrapping<$t>`][wrapping_assign_ops]
1607 - [`arch::is_aarch64_feature_detected!`][is_aarch64_feature_detected]
1608
1609 Cargo
1610 -----
1611 - [Port cargo from `toml-rs` to `toml_edit`][cargo/10086]
1612 - [Stabilize `-Ztimings` as `--timings`][cargo/10245]
1613 - [Stabilize namespaced and weak dependency features.][cargo/10269]
1614 - [Accept more `cargo:rustc-link-arg-*` types from build script output.][cargo/10274]
1615 - [cargo-new should not add ignore rule on Cargo.lock inside subdirs][cargo/10379]
1616
1617 Misc
1618 ----
1619 - [Ship docs on Tier 2 platforms by reusing the closest Tier 1 platform docs][92800]
1620 - [Drop rustc-docs from complete profile][93742]
1621 - [bootstrap: tidy up flag handling for llvm build][93918]
1622
1623 Compatibility Notes
1624 -------------------
1625 - [Remove compiler-rt linking hack on Android][83822]
1626 - [Mitigations for platforms with non-monotonic clocks have been removed from
1627 `Instant::now`][89926]. On platforms that don't provide monotonic clocks, an
1628 instant is not guaranteed to be greater than an earlier instant anymore.
1629 - [`Instant::{duration_since, elapsed, sub}` do not panic anymore on underflow,
1630 saturating to `0` instead][89926]. In the real world the panic happened mostly
1631 on platforms with buggy monotonic clock implementations rather than catching
1632 programming errors like reversing the start and end times. Such programming
1633 errors will now results in `0` rather than a panic.
1634 - In a future release we're planning to increase the baseline requirements for
1635 the Linux kernel to version 3.2, and for glibc to version 2.17. We'd love
1636 your feedback in [PR #95026][95026].
1637
1638 Internal Changes
1639 ----------------
1640
1641 These changes provide no direct user facing benefits, but represent significant
1642 improvements to the internals and overall performance of rustc
1643 and related tools.
1644
1645 - [Switch all libraries to the 2021 edition][92068]
1646
1647 [83822]: https://github.com/rust-lang/rust/pull/83822
1648 [86374]: https://github.com/rust-lang/rust/pull/86374
1649 [87487]: https://github.com/rust-lang/rust/pull/87487
1650 [89621]: https://github.com/rust-lang/rust/pull/89621
1651 [89926]: https://github.com/rust-lang/rust/pull/89926
1652 [90132]: https://github.com/rust-lang/rust/pull/90132
1653 [90247]: https://github.com/rust-lang/rust/pull/90247
1654 [91606]: https://github.com/rust-lang/rust/pull/91606
1655 [92068]: https://github.com/rust-lang/rust/pull/92068
1656 [92300]: https://github.com/rust-lang/rust/pull/92300
1657 [92357]: https://github.com/rust-lang/rust/pull/92357
1658 [92383]: https://github.com/rust-lang/rust/pull/92383
1659 [92630]: https://github.com/rust-lang/rust/pull/92630
1660 [92670]: https://github.com/rust-lang/rust/pull/92670
1661 [92800]: https://github.com/rust-lang/rust/pull/92800
1662 [92933]: https://github.com/rust-lang/rust/pull/92933
1663 [93566]: https://github.com/rust-lang/rust/pull/93566
1664 [93577]: https://github.com/rust-lang/rust/pull/93577
1665 [93658]: https://github.com/rust-lang/rust/pull/93658
1666 [93742]: https://github.com/rust-lang/rust/pull/93742
1667 [93824]: https://github.com/rust-lang/rust/pull/93824
1668 [93918]: https://github.com/rust-lang/rust/pull/93918
1669 [95026]: https://github.com/rust-lang/rust/pull/95026
1670
1671 [cargo/10086]: https://github.com/rust-lang/cargo/pull/10086
1672 [cargo/10245]: https://github.com/rust-lang/cargo/pull/10245
1673 [cargo/10269]: https://github.com/rust-lang/cargo/pull/10269
1674 [cargo/10274]: https://github.com/rust-lang/cargo/pull/10274
1675 [cargo/10379]: https://github.com/rust-lang/cargo/pull/10379
1676
1677 [arc_new_cyclic]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#method.new_cyclic
1678 [rc_new_cyclic]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#method.new_cyclic
1679 [slice_escape_ascii]: https://doc.rust-lang.org/stable/std/slice/struct.EscapeAscii.html
1680 [slice_u8_escape_ascii]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.escape_ascii
1681 [u8_escape_ascii]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.escape_ascii
1682 [vec_spare_capacity_mut]: https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.spare_capacity_mut
1683 [assume_init_drop]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init_drop
1684 [assume_init_read]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init_read
1685 [i8_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.abs_diff
1686 [i16_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.abs_diff
1687 [i32_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.abs_diff
1688 [i64_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.abs_diff
1689 [i128_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.abs_diff
1690 [isize_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.abs_diff
1691 [u8_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.abs_diff
1692 [u16_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.abs_diff
1693 [u32_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.abs_diff
1694 [u64_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.abs_diff
1695 [u128_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.abs_diff
1696 [usize_abs_diff]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.abs_diff
1697 [display_error_kind]: https://doc.rust-lang.org/stable/std/io/enum.ErrorKind.html#impl-Display
1698 [from_u8_exit_code]: https://doc.rust-lang.org/stable/std/process/struct.ExitCode.html#impl-From%3Cu8%3E
1699 [not_never]: https://doc.rust-lang.org/stable/std/primitive.never.html#impl-Not
1700 [wrapping_assign_ops]: https://doc.rust-lang.org/stable/std/num/struct.Wrapping.html#trait-implementations
1701 [is_aarch64_feature_detected]: https://doc.rust-lang.org/stable/std/arch/macro.is_aarch64_feature_detected.html
1702
1703 Version 1.59.0 (2022-02-24)
1704 ==========================
1705
1706 Language
1707 --------
1708
1709 - [Stabilize default arguments for const parameters and remove the ordering restriction for type and const parameters][90207]
1710 - [Stabilize destructuring assignment][90521]
1711 - [Relax private in public lint on generic bounds and where clauses of trait impls][90586]
1712 - [Stabilize asm! and global_asm! for x86, x86_64, ARM, Aarch64, and RISC-V][91728]
1713
1714 Compiler
1715 --------
1716
1717 - [Stabilize new symbol mangling format, leaving it opt-in (-Csymbol-mangling-version=v0)][90128]
1718 - [Emit LLVM optimization remarks when enabled with `-Cremark`][90833]
1719 - [Fix sparc64 ABI for aggregates with floating point members][91003]
1720 - [Warn when a `#[test]`-like built-in attribute macro is present multiple times.][91172]
1721 - [Add support for riscv64gc-unknown-freebsd][91284]
1722 - [Stabilize `-Z emit-future-incompat` as `--json future-incompat`][91535]
1723 - [Soft disable incremental compilation][94124]
1724
1725 This release disables incremental compilation, unless the user has explicitly
1726 opted in via the newly added RUSTC_FORCE_INCREMENTAL=1 environment variable.
1727 This is due to a known and relatively frequently occurring bug in incremental
1728 compilation, which causes builds to issue internal compiler errors. This
1729 particular bug is already fixed on nightly, but that fix has not yet rolled out
1730 to stable and is deemed too risky for a direct stable backport.
1731
1732 As always, we encourage users to test with nightly and report bugs so that we
1733 can track failures and fix issues earlier.
1734
1735 See [94124] for more details.
1736
1737 [94124]: https://github.com/rust-lang/rust/issues/94124
1738
1739 Libraries
1740 ---------
1741
1742 - [Remove unnecessary bounds for some Hash{Map,Set} methods][91593]
1743
1744 Stabilized APIs
1745 ---------------
1746
1747 - [`std::thread::available_parallelism`][available_parallelism]
1748 - [`Result::copied`][result-copied]
1749 - [`Result::cloned`][result-cloned]
1750 - [`arch::asm!`][asm]
1751 - [`arch::global_asm!`][global_asm]
1752 - [`ops::ControlFlow::is_break`][is_break]
1753 - [`ops::ControlFlow::is_continue`][is_continue]
1754 - [`TryFrom<char> for u8`][try_from_char_u8]
1755 - [`char::TryFromCharError`][try_from_char_err]
1756 implementing `Clone`, `Debug`, `Display`, `PartialEq`, `Copy`, `Eq`, `Error`
1757 - [`iter::zip`][zip]
1758 - [`NonZeroU8::is_power_of_two`][is_power_of_two8]
1759 - [`NonZeroU16::is_power_of_two`][is_power_of_two16]
1760 - [`NonZeroU32::is_power_of_two`][is_power_of_two32]
1761 - [`NonZeroU64::is_power_of_two`][is_power_of_two64]
1762 - [`NonZeroU128::is_power_of_two`][is_power_of_two128]
1763 - [`NonZeroUsize::is_power_of_two`][is_power_of_two_usize]
1764 - [`DoubleEndedIterator for ToLowercase`][lowercase]
1765 - [`DoubleEndedIterator for ToUppercase`][uppercase]
1766 - [`TryFrom<&mut [T]> for [T; N]`][tryfrom_ref_arr]
1767 - [`UnwindSafe for Once`][unwindsafe_once]
1768 - [`RefUnwindSafe for Once`][refunwindsafe_once]
1769 - [armv8 neon intrinsics for aarch64][stdarch/1266]
1770
1771 Const-stable:
1772
1773 - [`mem::MaybeUninit::as_ptr`][muninit_ptr]
1774 - [`mem::MaybeUninit::assume_init`][muninit_init]
1775 - [`mem::MaybeUninit::assume_init_ref`][muninit_init_ref]
1776 - [`ffi::CStr::from_bytes_with_nul_unchecked`][cstr_from_bytes]
1777
1778 Cargo
1779 -----
1780
1781 - [Stabilize the `strip` profile option][cargo/10088]
1782 - [Stabilize future-incompat-report][cargo/10165]
1783 - [Support abbreviating `--release` as `-r`][cargo/10133]
1784 - [Support `term.quiet` configuration][cargo/10152]
1785 - [Remove `--host` from cargo {publish,search,login}][cargo/10145]
1786
1787 Compatibility Notes
1788 -------------------
1789
1790 - [Refactor weak symbols in std::sys::unix][90846]
1791 This may add new, versioned, symbols when building with a newer glibc, as the
1792 standard library uses weak linkage rather than dynamically attempting to load
1793 certain symbols at runtime.
1794 - [Deprecate crate_type and crate_name nested inside `#![cfg_attr]`][83744]
1795 This adds a future compatibility lint to supporting the use of cfg_attr
1796 wrapping either crate_type or crate_name specification within Rust files;
1797 it is recommended that users migrate to setting the equivalent command line
1798 flags.
1799 - [Remove effect of `#[no_link]` attribute on name resolution][92034]
1800 This may expose new names, leading to conflicts with preexisting names in a
1801 given namespace and a compilation failure.
1802 - [Cargo will document libraries before binaries.][cargo/10172]
1803 - [Respect doc=false in dependencies, not just the root crate][cargo/10201]
1804 - [Weaken guarantee around advancing underlying iterators in zip][83791]
1805 - [Make split_inclusive() on an empty slice yield an empty output][89825]
1806 - [Update std::env::temp_dir to use GetTempPath2 on Windows when available.][89999]
1807 - [unreachable! was updated to match other formatting macro behavior on Rust 2021][92137]
1808
1809 Internal Changes
1810 ----------------
1811
1812 These changes provide no direct user facing benefits, but represent significant
1813 improvements to the internals and overall performance of rustc
1814 and related tools.
1815
1816 - [Fix many cases of normalization-related ICEs][91255]
1817 - [Replace dominators algorithm with simple Lengauer-Tarjan][85013]
1818 - [Store liveness in interval sets for region inference][90637]
1819
1820 - [Remove `in_band_lifetimes` from the compiler and standard library, in preparation for removing this
1821 unstable feature.][91867]
1822
1823 [91867]: https://github.com/rust-lang/rust/issues/91867
1824 [83744]: https://github.com/rust-lang/rust/pull/83744/
1825 [83791]: https://github.com/rust-lang/rust/pull/83791/
1826 [85013]: https://github.com/rust-lang/rust/pull/85013/
1827 [89825]: https://github.com/rust-lang/rust/pull/89825/
1828 [89999]: https://github.com/rust-lang/rust/pull/89999/
1829 [90128]: https://github.com/rust-lang/rust/pull/90128/
1830 [90207]: https://github.com/rust-lang/rust/pull/90207/
1831 [90521]: https://github.com/rust-lang/rust/pull/90521/
1832 [90586]: https://github.com/rust-lang/rust/pull/90586/
1833 [90637]: https://github.com/rust-lang/rust/pull/90637/
1834 [90833]: https://github.com/rust-lang/rust/pull/90833/
1835 [90846]: https://github.com/rust-lang/rust/pull/90846/
1836 [91003]: https://github.com/rust-lang/rust/pull/91003/
1837 [91172]: https://github.com/rust-lang/rust/pull/91172/
1838 [91255]: https://github.com/rust-lang/rust/pull/91255/
1839 [91284]: https://github.com/rust-lang/rust/pull/91284/
1840 [91535]: https://github.com/rust-lang/rust/pull/91535/
1841 [91593]: https://github.com/rust-lang/rust/pull/91593/
1842 [91728]: https://github.com/rust-lang/rust/pull/91728/
1843 [91878]: https://github.com/rust-lang/rust/pull/91878/
1844 [91896]: https://github.com/rust-lang/rust/pull/91896/
1845 [91926]: https://github.com/rust-lang/rust/pull/91926/
1846 [91984]: https://github.com/rust-lang/rust/pull/91984/
1847 [92020]: https://github.com/rust-lang/rust/pull/92020/
1848 [92034]: https://github.com/rust-lang/rust/pull/92034/
1849 [92137]: https://github.com/rust-lang/rust/pull/92137/
1850 [92483]: https://github.com/rust-lang/rust/pull/92483/
1851 [cargo/10088]: https://github.com/rust-lang/cargo/pull/10088/
1852 [cargo/10133]: https://github.com/rust-lang/cargo/pull/10133/
1853 [cargo/10145]: https://github.com/rust-lang/cargo/pull/10145/
1854 [cargo/10152]: https://github.com/rust-lang/cargo/pull/10152/
1855 [cargo/10165]: https://github.com/rust-lang/cargo/pull/10165/
1856 [cargo/10172]: https://github.com/rust-lang/cargo/pull/10172/
1857 [cargo/10201]: https://github.com/rust-lang/cargo/pull/10201/
1858 [cargo/10269]: https://github.com/rust-lang/cargo/pull/10269/
1859
1860 [cstr_from_bytes]: https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.from_bytes_with_nul_unchecked
1861 [muninit_ptr]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.as_ptr
1862 [muninit_init]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init
1863 [muninit_init_ref]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init_ref
1864 [unwindsafe_once]: https://doc.rust-lang.org/stable/std/sync/struct.Once.html#impl-UnwindSafe
1865 [refunwindsafe_once]: https://doc.rust-lang.org/stable/std/sync/struct.Once.html#impl-RefUnwindSafe
1866 [tryfrom_ref_arr]: https://doc.rust-lang.org/stable/std/convert/trait.TryFrom.html#impl-TryFrom%3C%26%27_%20mut%20%5BT%5D%3E
1867 [lowercase]: https://doc.rust-lang.org/stable/std/char/struct.ToLowercase.html#impl-DoubleEndedIterator
1868 [uppercase]: https://doc.rust-lang.org/stable/std/char/struct.ToUppercase.html#impl-DoubleEndedIterator
1869 [try_from_char_err]: https://doc.rust-lang.org/stable/std/char/struct.TryFromCharError.html
1870 [available_parallelism]: https://doc.rust-lang.org/stable/std/thread/fn.available_parallelism.html
1871 [result-copied]: https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.copied
1872 [result-cloned]: https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.cloned
1873 [asm]: https://doc.rust-lang.org/stable/core/arch/macro.asm.html
1874 [global_asm]: https://doc.rust-lang.org/stable/core/arch/macro.global_asm.html
1875 [is_break]: https://doc.rust-lang.org/stable/std/ops/enum.ControlFlow.html#method.is_break
1876 [is_continue]: https://doc.rust-lang.org/stable/std/ops/enum.ControlFlow.html#method.is_continue
1877 [try_from_char_u8]: https://doc.rust-lang.org/stable/std/primitive.char.html#impl-TryFrom%3Cchar%3E
1878 [zip]: https://doc.rust-lang.org/stable/std/iter/fn.zip.html
1879 [is_power_of_two8]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroU8.html#method.is_power_of_two
1880 [is_power_of_two16]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroU16.html#method.is_power_of_two
1881 [is_power_of_two32]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroU32.html#method.is_power_of_two
1882 [is_power_of_two64]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroU64.html#method.is_power_of_two
1883 [is_power_of_two128]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroU128.html#method.is_power_of_two
1884 [is_power_of_two_usize]: https://doc.rust-lang.org/stable/core/num/struct.NonZeroUsize.html#method.is_power_of_two
1885 [stdarch/1266]: https://github.com/rust-lang/stdarch/pull/1266
1886
1887 Version 1.58.1 (2022-01-20)
1888 ===========================
1889
1890 * Fix race condition in `std::fs::remove_dir_all` ([CVE-2022-21658])
1891 * [Handle captured arguments in the `useless_format` Clippy lint][clippy/8295]
1892 * [Move `non_send_fields_in_send_ty` Clippy lint to nursery][clippy/8075]
1893 * [Fix wrong error message displayed when some imports are missing][91254]
1894 * [Fix rustfmt not formatting generated files from stdin][92912]
1895
1896 [CVE-2022-21658]: https://www.cve.org/CVERecord?id=CVE-2022-21658
1897 [91254]: https://github.com/rust-lang/rust/pull/91254
1898 [92912]: https://github.com/rust-lang/rust/pull/92912
1899 [clippy/8075]: https://github.com/rust-lang/rust-clippy/pull/8075
1900 [clippy/8295]: https://github.com/rust-lang/rust-clippy/pull/8295
1901
1902 Version 1.58.0 (2022-01-13)
1903 ==========================
1904
1905 Language
1906 --------
1907
1908 - [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.
1909 - [`*const T` pointers can now be dereferenced in const contexts.][89551]
1910 - [The rules for when a generic struct implements `Unsize` have been relaxed.][90417]
1911
1912 Compiler
1913 --------
1914
1915 - [Add LLVM CFI support to the Rust compiler][89652]
1916 - [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. Note that this release only includes support in rustc, not directly in cargo.
1917 - [Add support for LLVM coverage mapping format versions 5 and 6][91207]
1918 - [Emit LLVM optimization remarks when enabled with `-Cremark`][90833]
1919 - [Update the minimum external LLVM to 12][90175]
1920 - [Add `x86_64-unknown-none` at Tier 3*][89062]
1921 - [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.
1922 - [Don't abort compilation after giving a lint error][87337]
1923 - [Error messages point at the source of trait bound obligations in more places][89580]
1924
1925 \* Refer to Rust's [platform support page][platform-support-doc] for more
1926 information on Rust's tiered platform support.
1927
1928 Libraries
1929 ---------
1930
1931 - [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.
1932 - [Paths are automatically canonicalized on Windows for operations that support it][89174]
1933 - [Re-enable debug checks for `copy` and `copy_nonoverlapping`][90041]
1934 - [Implement `RefUnwindSafe` for `Rc<T>`][87467]
1935 - [Make RSplit<T, P>: Clone not require T: Clone][90117]
1936 - [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).
1937
1938 Stabilized APIs
1939 ---------------
1940
1941 - [`Metadata::is_symlink`]
1942 - [`Path::is_symlink`]
1943 - [`{integer}::saturating_div`]
1944 - [`Option::unwrap_unchecked`]
1945 - [`Result::unwrap_unchecked`]
1946 - [`Result::unwrap_err_unchecked`]
1947 - [`File::options`]
1948
1949 These APIs are now usable in const contexts:
1950
1951 - [`Duration::new`]
1952 - [`Duration::checked_add`]
1953 - [`Duration::saturating_add`]
1954 - [`Duration::checked_sub`]
1955 - [`Duration::saturating_sub`]
1956 - [`Duration::checked_mul`]
1957 - [`Duration::saturating_mul`]
1958 - [`Duration::checked_div`]
1959
1960 Cargo
1961 -----
1962
1963 - [Add --message-format for install command][cargo/10107]
1964 - [Warn when alias shadows external subcommand][cargo/10082]
1965
1966 Rustdoc
1967 -------
1968
1969 - [Show all Deref implementations recursively in rustdoc][90183]
1970 - [Use computed visibility in rustdoc][88447]
1971
1972 Compatibility Notes
1973 -------------------
1974
1975 - [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.
1976 - Windows: [`std::process::Command` will no longer search the current directory for executables.][87704]
1977 - [All proc-macro backward-compatibility lints are now deny-by-default.][88041]
1978 - [proc_macro: Append .0 to unsuffixed float if it would otherwise become int token][90297]
1979 - [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.
1980 - [rustdoc now rejects some unexpected semicolons in doctests][91026]
1981
1982 Internal Changes
1983 ----------------
1984
1985 These changes provide no direct user facing benefits, but represent significant
1986 improvements to the internals and overall performance of rustc
1987 and related tools.
1988
1989 - [Implement coherence checks for negative trait impls][90104]
1990 - [Add rustc lint, warning when iterating over hashmaps][89558]
1991 - [Optimize live point computation][90491]
1992 - [Enable verification for 1/32nd of queries loaded from disk][90361]
1993 - [Implement version of normalize_erasing_regions that allows for normalization failure][91255]
1994
1995 [87337]: https://github.com/rust-lang/rust/pull/87337/
1996 [87467]: https://github.com/rust-lang/rust/pull/87467/
1997 [87704]: https://github.com/rust-lang/rust/pull/87704/
1998 [88041]: https://github.com/rust-lang/rust/pull/88041/
1999 [88447]: https://github.com/rust-lang/rust/pull/88447/
2000 [88601]: https://github.com/rust-lang/rust/pull/88601/
2001 [89062]: https://github.com/rust-lang/rust/pull/89062/
2002 [89174]: https://github.com/rust-lang/rust/pull/89174/
2003 [89551]: https://github.com/rust-lang/rust/pull/89551/
2004 [89558]: https://github.com/rust-lang/rust/pull/89558/
2005 [89580]: https://github.com/rust-lang/rust/pull/89580/
2006 [89652]: https://github.com/rust-lang/rust/pull/89652/
2007 [90041]: https://github.com/rust-lang/rust/pull/90041/
2008 [90058]: https://github.com/rust-lang/rust/pull/90058/
2009 [90104]: https://github.com/rust-lang/rust/pull/90104/
2010 [90117]: https://github.com/rust-lang/rust/pull/90117/
2011 [90175]: https://github.com/rust-lang/rust/pull/90175/
2012 [90183]: https://github.com/rust-lang/rust/pull/90183/
2013 [90297]: https://github.com/rust-lang/rust/pull/90297/
2014 [90329]: https://github.com/rust-lang/rust/pull/90329/
2015 [90361]: https://github.com/rust-lang/rust/pull/90361/
2016 [90417]: https://github.com/rust-lang/rust/pull/90417/
2017 [90473]: https://github.com/rust-lang/rust/pull/90473/
2018 [90491]: https://github.com/rust-lang/rust/pull/90491/
2019 [90733]: https://github.com/rust-lang/rust/pull/90733/
2020 [90833]: https://github.com/rust-lang/rust/pull/90833/
2021 [90846]: https://github.com/rust-lang/rust/pull/90846/
2022 [91026]: https://github.com/rust-lang/rust/pull/91026/
2023 [91207]: https://github.com/rust-lang/rust/pull/91207/
2024 [91255]: https://github.com/rust-lang/rust/pull/91255/
2025 [cargo/10082]: https://github.com/rust-lang/cargo/pull/10082/
2026 [cargo/10107]: https://github.com/rust-lang/cargo/pull/10107/
2027 [`Metadata::is_symlink`]: https://doc.rust-lang.org/stable/std/fs/struct.Metadata.html#method.is_symlink
2028 [`Path::is_symlink`]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.is_symlink
2029 [`{integer}::saturating_div`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.saturating_div
2030 [`Option::unwrap_unchecked`]: https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.unwrap_unchecked
2031 [`Result::unwrap_unchecked`]: https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.unwrap_unchecked
2032 [`Result::unwrap_err_unchecked`]: https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.unwrap_err_unchecked
2033 [`File::options`]: https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.options
2034 [`Duration::new`]: https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.new
2035
2036 Version 1.57.0 (2021-12-02)
2037 ==========================
2038
2039 Language
2040 --------
2041
2042 - [Macro attributes may follow `#[derive]` and will see the original (pre-`cfg`) input.][87220]
2043 - [Accept curly-brace macros in expressions, like `m!{ .. }.method()` and `m!{ .. }?`.][88690]
2044 - [Allow panicking in constant evaluation.][89508]
2045 - [Ignore derived `Clone` and `Debug` implementations during dead code analysis.][85200]
2046
2047 Compiler
2048 --------
2049
2050 - [Create more accurate debuginfo for vtables.][89597]
2051 - [Add `armv6k-nintendo-3ds` at Tier 3\*.][88529]
2052 - [Add `armv7-unknown-linux-uclibceabihf` at Tier 3\*.][88952]
2053 - [Add `m68k-unknown-linux-gnu` at Tier 3\*.][88321]
2054 - [Add SOLID targets at Tier 3\*:][86191] `aarch64-kmc-solid_asp3`, `armv7a-kmc-solid_asp3-eabi`, `armv7a-kmc-solid_asp3-eabihf`
2055
2056 \* Refer to Rust's [platform support page][platform-support-doc] for more
2057 information on Rust's tiered platform support.
2058
2059 Libraries
2060 ---------
2061
2062 - [Avoid allocations and copying in `Vec::leak`][89337]
2063 - [Add `#[repr(i8)]` to `Ordering`][89507]
2064 - [Optimize `File::read_to_end` and `read_to_string`][89582]
2065 - [Update to Unicode 14.0][89614]
2066 - [Many more functions are marked `#[must_use]`][89692], producing a warning
2067 when ignoring their return value. This helps catch mistakes such as expecting
2068 a function to mutate a value in place rather than return a new value.
2069
2070 Stabilised APIs
2071 ---------------
2072
2073 - [`[T; N]::as_mut_slice`][`array::as_mut_slice`]
2074 - [`[T; N]::as_slice`][`array::as_slice`]
2075 - [`collections::TryReserveError`]
2076 - [`HashMap::try_reserve`]
2077 - [`HashSet::try_reserve`]
2078 - [`String::try_reserve`]
2079 - [`String::try_reserve_exact`]
2080 - [`Vec::try_reserve`]
2081 - [`Vec::try_reserve_exact`]
2082 - [`VecDeque::try_reserve`]
2083 - [`VecDeque::try_reserve_exact`]
2084 - [`Iterator::map_while`]
2085 - [`iter::MapWhile`]
2086 - [`proc_macro::is_available`]
2087 - [`Command::get_program`]
2088 - [`Command::get_args`]
2089 - [`Command::get_envs`]
2090 - [`Command::get_current_dir`]
2091 - [`CommandArgs`]
2092 - [`CommandEnvs`]
2093
2094 These APIs are now usable in const contexts:
2095
2096 - [`hint::unreachable_unchecked`]
2097
2098 Cargo
2099 -----
2100
2101 - [Stabilize custom profiles][cargo/9943]
2102
2103 Compatibility notes
2104 -------------------
2105
2106 - [Ignore derived `Clone` and `Debug` implementations during dead code analysis.][85200]
2107 This will break some builds that set `#![deny(dead_code)]`.
2108
2109 Internal changes
2110 ----------------
2111 These changes provide no direct user facing benefits, but represent significant
2112 improvements to the internals and overall performance of rustc
2113 and related tools.
2114
2115 - [Added an experimental backend for codegen with `libgccjit`.][87260]
2116
2117 [85200]: https://github.com/rust-lang/rust/pull/85200/
2118 [86191]: https://github.com/rust-lang/rust/pull/86191/
2119 [87220]: https://github.com/rust-lang/rust/pull/87220/
2120 [87260]: https://github.com/rust-lang/rust/pull/87260/
2121 [88321]: https://github.com/rust-lang/rust/pull/88321/
2122 [88529]: https://github.com/rust-lang/rust/pull/88529/
2123 [88690]: https://github.com/rust-lang/rust/pull/88690/
2124 [88952]: https://github.com/rust-lang/rust/pull/88952/
2125 [89337]: https://github.com/rust-lang/rust/pull/89337/
2126 [89507]: https://github.com/rust-lang/rust/pull/89507/
2127 [89508]: https://github.com/rust-lang/rust/pull/89508/
2128 [89582]: https://github.com/rust-lang/rust/pull/89582/
2129 [89597]: https://github.com/rust-lang/rust/pull/89597/
2130 [89614]: https://github.com/rust-lang/rust/pull/89614/
2131 [89692]: https://github.com/rust-lang/rust/issues/89692/
2132 [cargo/9943]: https://github.com/rust-lang/cargo/pull/9943/
2133 [`array::as_mut_slice`]: https://doc.rust-lang.org/std/primitive.array.html#method.as_mut_slice
2134 [`array::as_slice`]: https://doc.rust-lang.org/std/primitive.array.html#method.as_slice
2135 [`collections::TryReserveError`]: https://doc.rust-lang.org/std/collections/struct.TryReserveError.html
2136 [`HashMap::try_reserve`]: https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.try_reserve
2137 [`HashSet::try_reserve`]: https://doc.rust-lang.org/std/collections/hash_set/struct.HashSet.html#method.try_reserve
2138 [`String::try_reserve`]: https://doc.rust-lang.org/alloc/string/struct.String.html#method.try_reserve
2139 [`String::try_reserve_exact`]: https://doc.rust-lang.org/alloc/string/struct.String.html#method.try_reserve_exact
2140 [`Vec::try_reserve`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve
2141 [`Vec::try_reserve_exact`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve_exact
2142 [`VecDeque::try_reserve`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.try_reserve
2143 [`VecDeque::try_reserve_exact`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.try_reserve_exact
2144 [`Iterator::map_while`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.map_while
2145 [`iter::MapWhile`]: https://doc.rust-lang.org/std/iter/struct.MapWhile.html
2146 [`proc_macro::is_available`]: https://doc.rust-lang.org/proc_macro/fn.is_available.html
2147 [`Command::get_program`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_program
2148 [`Command::get_args`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_args
2149 [`Command::get_envs`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_envs
2150 [`Command::get_current_dir`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_current_dir
2151 [`CommandArgs`]: https://doc.rust-lang.org/std/process/struct.CommandArgs.html
2152 [`CommandEnvs`]: https://doc.rust-lang.org/std/process/struct.CommandEnvs.html
2153
2154 Version 1.56.1 (2021-11-01)
2155 ===========================
2156
2157 - New lints to detect the presence of bidirectional-override Unicode
2158 codepoints in the compiled source code ([CVE-2021-42574])
2159
2160 [CVE-2021-42574]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42574
2161
2162 Version 1.56.0 (2021-10-21)
2163 ========================
2164
2165 Language
2166 --------
2167
2168 - [The 2021 Edition is now stable.][rust#88100]
2169 See [the edition guide][rust-2021-edition-guide] for more details.
2170 - [The pattern in `binding @ pattern` can now also introduce new bindings.][rust#85305]
2171 - [Union field access is permitted in `const fn`.][rust#85769]
2172
2173 [rust-2021-edition-guide]: https://doc.rust-lang.org/nightly/edition-guide/rust-2021/index.html
2174
2175 Compiler
2176 --------
2177
2178 - [Upgrade to LLVM 13.][rust#87570]
2179 - [Support memory, address, and thread sanitizers on aarch64-unknown-freebsd.][rust#88023]
2180 - [Allow specifying a deployment target version for all iOS targets][rust#87699]
2181 - [Warnings can be forced on with `--force-warn`.][rust#87472]
2182 This feature is primarily intended for usage by `cargo fix`, rather than end users.
2183 - [Promote `aarch64-apple-ios-sim` to Tier 2\*.][rust#87760]
2184 - [Add `powerpc-unknown-freebsd` at Tier 3\*.][rust#87370]
2185 - [Add `riscv32imc-esp-espidf` at Tier 3\*.][rust#87666]
2186
2187 \* Refer to Rust's [platform support page][platform-support-doc] for more
2188 information on Rust's tiered platform support.
2189
2190 Libraries
2191 ---------
2192
2193 - [Allow writing of incomplete UTF-8 sequences via stdout/stderr on Windows.][rust#83342]
2194 The Windows console still requires valid Unicode, but this change allows
2195 splitting a UTF-8 character across multiple write calls. This allows, for
2196 instance, programs that just read and write data buffers (e.g. copying a file
2197 to stdout) without regard for Unicode or character boundaries.
2198 - [Prefer `AtomicU{64,128}` over Mutex for Instant backsliding protection.][rust#83093]
2199 For this use case, atomics scale much better under contention.
2200 - [Implement `Extend<(A, B)>` for `(Extend<A>, Extend<B>)`][rust#85835]
2201 - [impl Default, Copy, Clone for std::io::Sink and std::io::Empty][rust#86744]
2202 - [`impl From<[(K, V); N]>` for all collections.][rust#84111]
2203 - [Remove `P: Unpin` bound on impl Future for Pin.][rust#81363]
2204 - [Treat invalid environment variable names as nonexistent.][rust#86183]
2205 Previously, the environment functions would panic if given a variable name
2206 with an internal null character or equal sign (`=`). Now, these functions will
2207 just treat such names as nonexistent variables, since the OS cannot represent
2208 the existence of a variable with such a name.
2209
2210 Stabilised APIs
2211 ---------------
2212
2213 - [`std::os::unix::fs::chroot`]
2214 - [`UnsafeCell::raw_get`]
2215 - [`BufWriter::into_parts`]
2216 - [`core::panic::{UnwindSafe, RefUnwindSafe, AssertUnwindSafe}`]
2217 These APIs were previously stable in `std`, but are now also available in `core`.
2218 - [`Vec::shrink_to`]
2219 - [`String::shrink_to`]
2220 - [`OsString::shrink_to`]
2221 - [`PathBuf::shrink_to`]
2222 - [`BinaryHeap::shrink_to`]
2223 - [`VecDeque::shrink_to`]
2224 - [`HashMap::shrink_to`]
2225 - [`HashSet::shrink_to`]
2226
2227 These APIs are now usable in const contexts:
2228
2229 - [`std::mem::transmute`]
2230 - [`[T]::first`][`slice::first`]
2231 - [`[T]::split_first`][`slice::split_first`]
2232 - [`[T]::last`][`slice::last`]
2233 - [`[T]::split_last`][`slice::split_last`]
2234
2235 Cargo
2236 -----
2237
2238 - [Cargo supports specifying a minimum supported Rust version in Cargo.toml.][`rust-version`]
2239 This has no effect at present on dependency version selection.
2240 We encourage crates to specify their minimum supported Rust version, and we encourage CI systems
2241 that support Rust code to include a crate's specified minimum version in the test matrix for that
2242 crate by default.
2243
2244 Compatibility notes
2245 -------------------
2246
2247 - [Update to new argument parsing rules on Windows.][rust#87580]
2248 This adjusts Rust's standard library to match the behavior of the standard
2249 libraries for C/C++. The rules have changed slightly over time, and this PR
2250 brings us to the latest set of rules (changed in 2008).
2251 - [Disallow the aapcs calling convention on aarch64][rust#88399]
2252 This was already not supported by LLVM; this change surfaces this lack of
2253 support with a better error message.
2254 - [Make `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` warn by default][rust#87385]
2255 - [Warn when an escaped newline skips multiple lines.][rust#87671]
2256 - [Calls to `libc::getpid` / `std::process::id` from `Command::pre_exec`
2257 may return different values on glibc <= 2.24.][rust#81825]
2258 Rust now invokes the `clone3` system call directly, when available, to use new functionality
2259 available via that system call. Older versions of glibc cache the result of `getpid`, and only
2260 update that cache when calling glibc's clone/fork functions, so a direct system call bypasses
2261 that cache update. glibc 2.25 and newer no longer cache `getpid` for exactly this reason.
2262
2263 Internal changes
2264 ----------------
2265 These changes provide no direct user facing benefits, but represent significant
2266 improvements to the internals and overall performance of rustc
2267 and related tools.
2268
2269 - [LLVM is compiled with PGO in published x86_64-unknown-linux-gnu artifacts.][rust#88069]
2270 This improves the performance of most Rust builds.
2271 - [Unify representation of macros in internal data structures.][rust#88019]
2272 This change fixes a host of bugs with the handling of macros by the compiler,
2273 as well as rustdoc.
2274
2275 [`std::os::unix::fs::chroot`]: https://doc.rust-lang.org/stable/std/os/unix/fs/fn.chroot.html
2276 [`UnsafeCell::raw_get`]: https://doc.rust-lang.org/stable/std/cell/struct.UnsafeCell.html#method.raw_get
2277 [`BufWriter::into_parts`]: https://doc.rust-lang.org/stable/std/io/struct.BufWriter.html#method.into_parts
2278 [`core::panic::{UnwindSafe, RefUnwindSafe, AssertUnwindSafe}`]: https://github.com/rust-lang/rust/pull/84662
2279 [`Vec::shrink_to`]: https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.shrink_to
2280 [`String::shrink_to`]: https://doc.rust-lang.org/stable/std/string/struct.String.html#method.shrink_to
2281 [`OsString::shrink_to`]: https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.shrink_to
2282 [`PathBuf::shrink_to`]: https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.shrink_to
2283 [`BinaryHeap::shrink_to`]: https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#method.shrink_to
2284 [`VecDeque::shrink_to`]: https://doc.rust-lang.org/stable/std/collections/struct.VecDeque.html#method.shrink_to
2285 [`HashMap::shrink_to`]: https://doc.rust-lang.org/stable/std/collections/hash_map/struct.HashMap.html#method.shrink_to
2286 [`HashSet::shrink_to`]: https://doc.rust-lang.org/stable/std/collections/hash_set/struct.HashSet.html#method.shrink_to
2287 [`std::mem::transmute`]: https://doc.rust-lang.org/stable/std/mem/fn.transmute.html
2288 [`slice::first`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.first
2289 [`slice::split_first`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_first
2290 [`slice::last`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.last
2291 [`slice::split_last`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_last
2292 [`rust-version`]: https://doc.rust-lang.org/nightly/cargo/reference/manifest.html#the-rust-version-field
2293 [rust#87671]: https://github.com/rust-lang/rust/pull/87671
2294 [rust#86183]: https://github.com/rust-lang/rust/pull/86183
2295 [rust#87385]: https://github.com/rust-lang/rust/pull/87385
2296 [rust#88100]: https://github.com/rust-lang/rust/pull/88100
2297 [rust#85305]: https://github.com/rust-lang/rust/pull/85305
2298 [rust#88069]: https://github.com/rust-lang/rust/pull/88069
2299 [rust#87472]: https://github.com/rust-lang/rust/pull/87472
2300 [rust#87699]: https://github.com/rust-lang/rust/pull/87699
2301 [rust#87570]: https://github.com/rust-lang/rust/pull/87570
2302 [rust#88023]: https://github.com/rust-lang/rust/pull/88023
2303 [rust#87760]: https://github.com/rust-lang/rust/pull/87760
2304 [rust#87370]: https://github.com/rust-lang/rust/pull/87370
2305 [rust#87580]: https://github.com/rust-lang/rust/pull/87580
2306 [rust#83342]: https://github.com/rust-lang/rust/pull/83342
2307 [rust#83093]: https://github.com/rust-lang/rust/pull/83093
2308 [rust#85835]: https://github.com/rust-lang/rust/pull/85835
2309 [rust#86744]: https://github.com/rust-lang/rust/pull/86744
2310 [rust#81363]: https://github.com/rust-lang/rust/pull/81363
2311 [rust#84111]: https://github.com/rust-lang/rust/pull/84111
2312 [rust#85769]: https://github.com/rust-lang/rust/pull/85769#issuecomment-854363720
2313 [rust#88399]: https://github.com/rust-lang/rust/pull/88399
2314 [rust#81825]: https://github.com/rust-lang/rust/pull/81825#issuecomment-808406918
2315 [rust#88019]: https://github.com/rust-lang/rust/pull/88019
2316 [rust#87666]: https://github.com/rust-lang/rust/pull/87666
2317
2318 Version 1.55.0 (2021-09-09)
2319 ============================
2320
2321 Language
2322 --------
2323 - [You can now write open "from" range patterns (`X..`), which will start at `X` and
2324 will end at the maximum value of the integer.][83918]
2325 - [You can now explicitly import the prelude of different editions
2326 through `std::prelude` (e.g. `use std::prelude::rust_2021::*;`).][86294]
2327
2328 Compiler
2329 --------
2330 - [Added tier 3\* support for `powerpc64le-unknown-freebsd`.][83572]
2331
2332 \* Refer to Rust's [platform support page][platform-support-doc] for more
2333 information on Rust's tiered platform support.
2334
2335 Libraries
2336 ---------
2337
2338 - [Updated std's float parsing to use the Eisel-Lemire algorithm.][86761]
2339 These improvements should in general provide faster string parsing of floats,
2340 no longer reject certain valid floating point values, and reduce
2341 the produced code size for non-stripped artifacts.
2342 - [`string::Drain` now implements `AsRef<str>` and `AsRef<[u8]>`.][86858]
2343
2344 Stabilised APIs
2345 ---------------
2346
2347 - [`Bound::cloned`]
2348 - [`Drain::as_str`]
2349 - [`IntoInnerError::into_error`]
2350 - [`IntoInnerError::into_parts`]
2351 - [`MaybeUninit::assume_init_mut`]
2352 - [`MaybeUninit::assume_init_ref`]
2353 - [`MaybeUninit::write`]
2354 - [`array::map`]
2355 - [`ops::ControlFlow`]
2356 - [`x86::_bittest`]
2357 - [`x86::_bittestandcomplement`]
2358 - [`x86::_bittestandreset`]
2359 - [`x86::_bittestandset`]
2360 - [`x86_64::_bittest64`]
2361 - [`x86_64::_bittestandcomplement64`]
2362 - [`x86_64::_bittestandreset64`]
2363 - [`x86_64::_bittestandset64`]
2364
2365 The following previously stable functions are now `const`.
2366
2367 - [`str::from_utf8_unchecked`]
2368
2369
2370 Cargo
2371 -----
2372 - [Cargo will now deduplicate compiler diagnostics to the terminal when invoking
2373 rustc in parallel such as when using `cargo test`.][cargo/9675]
2374 - [The package definition in `cargo metadata` now includes the `"default_run"`
2375 field from the manifest.][cargo/9550]
2376 - [Added `cargo d` as an alias for `cargo doc`.][cargo/9680]
2377 - [Added `{lib}` as formatting option for `cargo tree` to print the `"lib_name"`
2378 of packages.][cargo/9663]
2379
2380 Rustdoc
2381 -------
2382 - [Added "Go to item on exact match" search option.][85876]
2383 - [The "Implementors" section on traits no longer shows redundant
2384 method definitions.][85970]
2385 - [Trait implementations are toggled open by default.][86260] This should make the
2386 implementations more searchable by tools like `CTRL+F` in your browser.
2387 - [Intra-doc links should now correctly resolve associated items (e.g. methods)
2388 through type aliases.][86334]
2389 - [Traits which are marked with `#[doc(hidden)]` will no longer appear in the
2390 "Trait Implementations" section.][86513]
2391
2392
2393 Compatibility Notes
2394 -------------------
2395 - [std functions that return an `io::Error` will no longer use the
2396 `ErrorKind::Other` variant.][85746] This is to better reflect that these
2397 kinds of errors could be categorised [into newer more specific `ErrorKind`
2398 variants][79965], and that they do not represent a user error.
2399 - [Using environment variable names with `process::Command` on Windows now
2400 behaves as expected.][85270] Previously using environment variables with
2401 `Command` would cause them to be ASCII-uppercased.
2402 - [Rustdoc will now warn on using rustdoc lints that aren't prefixed
2403 with `rustdoc::`][86849]
2404 - `RUSTFLAGS` is no longer set for build scripts. Build scripts
2405 should use `CARGO_ENCODED_RUSTFLAGS` instead. See the
2406 [documentation](https://doc.rust-lang.org/nightly/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts)
2407 for more details.
2408
2409 [86849]: https://github.com/rust-lang/rust/pull/86849
2410 [86513]: https://github.com/rust-lang/rust/pull/86513
2411 [86334]: https://github.com/rust-lang/rust/pull/86334
2412 [86260]: https://github.com/rust-lang/rust/pull/86260
2413 [85970]: https://github.com/rust-lang/rust/pull/85970
2414 [85876]: https://github.com/rust-lang/rust/pull/85876
2415 [83572]: https://github.com/rust-lang/rust/pull/83572
2416 [86294]: https://github.com/rust-lang/rust/pull/86294
2417 [86858]: https://github.com/rust-lang/rust/pull/86858
2418 [86761]: https://github.com/rust-lang/rust/pull/86761
2419 [85746]: https://github.com/rust-lang/rust/pull/85746
2420 [85270]: https://github.com/rust-lang/rust/pull/85270
2421 [83918]: https://github.com/rust-lang/rust/pull/83918
2422 [79965]: https://github.com/rust-lang/rust/pull/79965
2423 [cargo/9663]: https://github.com/rust-lang/cargo/pull/9663
2424 [cargo/9675]: https://github.com/rust-lang/cargo/pull/9675
2425 [cargo/9550]: https://github.com/rust-lang/cargo/pull/9550
2426 [cargo/9680]: https://github.com/rust-lang/cargo/pull/9680
2427 [`array::map`]: https://doc.rust-lang.org/stable/std/primitive.array.html#method.map
2428 [`Bound::cloned`]: https://doc.rust-lang.org/stable/std/ops/enum.Bound.html#method.cloned
2429 [`Drain::as_str`]: https://doc.rust-lang.org/stable/std/string/struct.Drain.html#method.as_str
2430 [`IntoInnerError::into_error`]: https://doc.rust-lang.org/stable/std/io/struct.IntoInnerError.html#method.into_error
2431 [`IntoInnerError::into_parts`]: https://doc.rust-lang.org/stable/std/io/struct.IntoInnerError.html#method.into_parts
2432 [`MaybeUninit::assume_init_mut`]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init_mut
2433 [`MaybeUninit::assume_init_ref`]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.assume_init_ref
2434 [`MaybeUninit::write`]: https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.write
2435 [`ops::ControlFlow`]: https://doc.rust-lang.org/stable/std/ops/enum.ControlFlow.html
2436 [`str::from_utf8_unchecked`]: https://doc.rust-lang.org/stable/std/str/fn.from_utf8_unchecked.html
2437 [`x86::_bittest`]: https://doc.rust-lang.org/stable/core/arch/x86/fn._bittest.html
2438 [`x86::_bittestandcomplement`]: https://doc.rust-lang.org/stable/core/arch/x86/fn._bittestandcomplement.html
2439 [`x86::_bittestandreset`]: https://doc.rust-lang.org/stable/core/arch/x86/fn._bittestandreset.html
2440 [`x86::_bittestandset`]: https://doc.rust-lang.org/stable/core/arch/x86/fn._bittestandset.html
2441 [`x86_64::_bittest64`]: https://doc.rust-lang.org/stable/core/arch/x86_64/fn._bittest64.html
2442 [`x86_64::_bittestandcomplement64`]: https://doc.rust-lang.org/stable/core/arch/x86_64/fn._bittestandcomplement64.html
2443 [`x86_64::_bittestandreset64`]: https://doc.rust-lang.org/stable/core/arch/x86_64/fn._bittestandreset64.html
2444 [`x86_64::_bittestandset64`]: https://doc.rust-lang.org/stable/core/arch/x86_64/fn._bittestandset64.html
2445
2446
2447 Version 1.54.0 (2021-07-29)
2448 ============================
2449
2450 Language
2451 -----------------------
2452
2453 - [You can now use macros for values in some built-in attributes.][83366]
2454 This primarily allows you to call macros within the `#[doc]` attribute. For
2455 example, to include external documentation in your crate, you can now write
2456 the following:
2457 ```rust
2458 #![doc = include_str!("README.md")]
2459 ```
2460
2461 - [You can now cast between unsized slice types (and types which contain
2462 unsized slices) in `const fn`.][85078]
2463 - [You can now use multiple generic lifetimes with `impl Trait` where the
2464 lifetimes don't explicitly outlive another.][84701] In code this means
2465 that you can now have `impl Trait<'a, 'b>` where as before you could
2466 only have `impl Trait<'a, 'b> where 'b: 'a`.
2467
2468 Compiler
2469 -----------------------
2470
2471 - [Rustc will now search for custom JSON targets in
2472 `/lib/rustlib/<target-triple>/target.json` where `/` is the "sysroot"
2473 directory.][83800] You can find your sysroot directory by running
2474 `rustc --print sysroot`.
2475 - [Added `wasm` as a `target_family` for WebAssembly platforms.][84072]
2476 - [You can now use `#[target_feature]` on safe functions when targeting
2477 WebAssembly platforms.][84988]
2478 - [Improved debugger output for enums on Windows MSVC platforms.][85292]
2479 - [Added tier 3\* support for `bpfel-unknown-none`
2480 and `bpfeb-unknown-none`.][79608]
2481 - [`-Zmutable-noalias=yes`][82834] is enabled by default when using LLVM 12 or above.
2482
2483 \* Refer to Rust's [platform support page][platform-support-doc] for more
2484 information on Rust's tiered platform support.
2485
2486 Libraries
2487 -----------------------
2488
2489 - [`panic::panic_any` will now `#[track_caller]`.][85745]
2490 - [Added `OutOfMemory` as a variant of `io::ErrorKind`.][84744]
2491 - [ `proc_macro::Literal` now implements `FromStr`.][84717]
2492 - [The implementations of vendor intrinsics in core::arch have been
2493 significantly refactored.][83278] The main user-visible changes are
2494 a 50% reduction in the size of libcore.rlib and stricter validation
2495 of constant operands passed to intrinsics. The latter is technically
2496 a breaking change, but allows Rust to more closely match the C vendor
2497 intrinsics API.
2498
2499 Stabilized APIs
2500 ---------------
2501
2502 - [`BTreeMap::into_keys`]
2503 - [`BTreeMap::into_values`]
2504 - [`HashMap::into_keys`]
2505 - [`HashMap::into_values`]
2506 - [`arch::wasm32`]
2507 - [`VecDeque::binary_search`]
2508 - [`VecDeque::binary_search_by`]
2509 - [`VecDeque::binary_search_by_key`]
2510 - [`VecDeque::partition_point`]
2511
2512 Cargo
2513 -----
2514
2515 - [Added the `--prune <spec>` option to `cargo-tree` to remove a package from
2516 the dependency graph.][cargo/9520]
2517 - [Added the `--depth` option to `cargo-tree` to print only to a certain depth
2518 in the tree ][cargo/9499]
2519 - [Added the `no-proc-macro` value to `cargo-tree --edges` to hide procedural
2520 macro dependencies.][cargo/9488]
2521 - [A new environment variable named `CARGO_TARGET_TMPDIR` is available.][cargo/9375]
2522 This variable points to a directory that integration tests and benches
2523 can use as a "scratchpad" for testing filesystem operations.
2524
2525 Compatibility Notes
2526 -------------------
2527 - [Mixing Option and Result via `?` is no longer permitted in closures for inferred types.][86831]
2528 - [Previously unsound code is no longer permitted where different constructors in branches
2529 could require different lifetimes.][85574]
2530 - As previously mentioned the [`std::arch` intrinsics now uses stricter const checking][83278]
2531 than before and may reject some previously accepted code.
2532 - [`i128` multiplication on Cortex M0+ platforms currently unconditionally causes overflow
2533 when compiled with `codegen-units = 1`.][86063]
2534
2535 [85574]: https://github.com/rust-lang/rust/issues/85574
2536 [86831]: https://github.com/rust-lang/rust/issues/86831
2537 [86063]: https://github.com/rust-lang/rust/issues/86063
2538 [79608]: https://github.com/rust-lang/rust/pull/79608
2539 [84988]: https://github.com/rust-lang/rust/pull/84988
2540 [84701]: https://github.com/rust-lang/rust/pull/84701
2541 [84072]: https://github.com/rust-lang/rust/pull/84072
2542 [85745]: https://github.com/rust-lang/rust/pull/85745
2543 [84744]: https://github.com/rust-lang/rust/pull/84744
2544 [85078]: https://github.com/rust-lang/rust/pull/85078
2545 [84717]: https://github.com/rust-lang/rust/pull/84717
2546 [83800]: https://github.com/rust-lang/rust/pull/83800
2547 [83366]: https://github.com/rust-lang/rust/pull/83366
2548 [83278]: https://github.com/rust-lang/rust/pull/83278
2549 [85292]: https://github.com/rust-lang/rust/pull/85292
2550 [82834]: https://github.com/rust-lang/rust/pull/82834
2551 [cargo/9520]: https://github.com/rust-lang/cargo/pull/9520
2552 [cargo/9499]: https://github.com/rust-lang/cargo/pull/9499
2553 [cargo/9488]: https://github.com/rust-lang/cargo/pull/9488
2554 [cargo/9375]: https://github.com/rust-lang/cargo/pull/9375
2555 [`BTreeMap::into_keys`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#method.into_keys
2556 [`BTreeMap::into_values`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#method.into_values
2557 [`HashMap::into_keys`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.into_keys
2558 [`HashMap::into_values`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.into_values
2559 [`arch::wasm32`]: https://doc.rust-lang.org/core/arch/wasm32/index.html
2560 [`VecDeque::binary_search`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.binary_search
2561 [`VecDeque::binary_search_by`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.binary_search_by
2562
2563 [`VecDeque::binary_search_by_key`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.binary_search_by_key
2564
2565 [`VecDeque::partition_point`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.partition_point
2566
2567 Version 1.53.0 (2021-06-17)
2568 ============================
2569
2570 Language
2571 -----------------------
2572 - [You can now use unicode for identifiers.][83799] This allows multilingual
2573 identifiers but still doesn't allow glyphs that are not considered characters
2574 such as `◆` or `🦀`. More specifically you can now use any identifier that
2575 matches the UAX #31 "Unicode Identifier and Pattern Syntax" standard. This
2576 is the same standard as languages like Python, however Rust uses NFC
2577 normalization which may be different from other languages.
2578 - [You can now specify "or patterns" inside pattern matches.][79278]
2579 Previously you could only use `|` (OR) on complete patterns. E.g.
2580 ```rust
2581 let x = Some(2u8);
2582 // Before
2583 matches!(x, Some(1) | Some(2));
2584 // Now
2585 matches!(x, Some(1 | 2));
2586 ```
2587 - [Added the `:pat_param` `macro_rules!` matcher.][83386] This matcher
2588 has the same semantics as the `:pat` matcher. This is to allow `:pat`
2589 to change semantics to being a pattern fragment in a future edition.
2590
2591 Compiler
2592 -----------------------
2593 - [Updated the minimum external LLVM version to LLVM 10.][83387]
2594 - [Added Tier 3\* support for the `wasm64-unknown-unknown` target.][80525]
2595 - [Improved debuginfo for closures and async functions on Windows MSVC.][83941]
2596
2597 \* Refer to Rust's [platform support page][platform-support-doc] for more
2598 information on Rust's tiered platform support.
2599
2600 Libraries
2601 -----------------------
2602 - [Abort messages will now forward to `android_set_abort_message` on
2603 Android platforms when available.][81469]
2604 - [`slice::IterMut<'_, T>` now implements `AsRef<[T]>`][82771]
2605 - [Arrays of any length now implement `IntoIterator`.][84147]
2606 Currently calling `.into_iter()` as a method on an array will
2607 return `impl Iterator<Item=&T>`, but this may change in a
2608 future edition to change `Item` to `T`. Calling `IntoIterator::into_iter`
2609 directly on arrays will provide `impl Iterator<Item=T>` as expected.
2610 - [`leading_zeros`, and `trailing_zeros` are now available on all
2611 `NonZero` integer types.][84082]
2612 - [`{f32, f64}::from_str` now parse and print special values
2613 (`NaN`, `-0`) according to IEEE 754.][78618]
2614 - [You can now index into slices using `(Bound<usize>, Bound<usize>)`.][77704]
2615 - [Add the `BITS` associated constant to all numeric types.][82565]
2616
2617 Stabilised APIs
2618 ---------------
2619 - [`AtomicBool::fetch_update`]
2620 - [`AtomicPtr::fetch_update`]
2621 - [`BTreeMap::retain`]
2622 - [`BTreeSet::retain`]
2623 - [`BufReader::seek_relative`]
2624 - [`DebugStruct::non_exhaustive`]
2625 - [`Duration::MAX`]
2626 - [`Duration::ZERO`]
2627 - [`Duration::is_zero`]
2628 - [`Duration::saturating_add`]
2629 - [`Duration::saturating_mul`]
2630 - [`Duration::saturating_sub`]
2631 - [`ErrorKind::Unsupported`]
2632 - [`Option::insert`]
2633 - [`Ordering::is_eq`]
2634 - [`Ordering::is_ge`]
2635 - [`Ordering::is_gt`]
2636 - [`Ordering::is_le`]
2637 - [`Ordering::is_lt`]
2638 - [`Ordering::is_ne`]
2639 - [`OsStr::is_ascii`]
2640 - [`OsStr::make_ascii_lowercase`]
2641 - [`OsStr::make_ascii_uppercase`]
2642 - [`OsStr::to_ascii_lowercase`]
2643 - [`OsStr::to_ascii_uppercase`]
2644 - [`Peekable::peek_mut`]
2645 - [`Rc::decrement_strong_count`]
2646 - [`Rc::increment_strong_count`]
2647 - [`Vec::extend_from_within`]
2648 - [`array::from_mut`]
2649 - [`array::from_ref`]
2650 - [`cmp::max_by_key`]
2651 - [`cmp::max_by`]
2652 - [`cmp::min_by_key`]
2653 - [`cmp::min_by`]
2654 - [`f32::is_subnormal`]
2655 - [`f64::is_subnormal`]
2656
2657 Cargo
2658 -----------------------
2659 - [Cargo now supports git repositories where the default `HEAD` branch is not
2660 "master".][cargo/9392] This also includes a switch to the version 3 `Cargo.lock` format
2661 which can handle default branches correctly.
2662 - [macOS targets now default to `unpacked` split-debuginfo.][cargo/9298]
2663 - [The `authors` field is no longer included in `Cargo.toml` for new
2664 projects.][cargo/9282]
2665
2666 Rustdoc
2667 -----------------------
2668 - [Added the `rustdoc::bare_urls` lint that warns when you have URLs
2669 without hyperlinks.][81764]
2670
2671 Compatibility Notes
2672 -------------------
2673 - [Implement token-based handling of attributes during expansion][82608]
2674 - [`Ipv4::from_str` will now reject octal format IP addresses in addition
2675 to rejecting hexadecimal IP addresses.][83652] The octal format can lead
2676 to confusion and potential security vulnerabilities and [is no
2677 longer recommended][ietf6943].
2678 - [The added `BITS` constant may conflict with external definitions.][85667]
2679 In particular, this was known to be a problem in the `lexical-core` crate,
2680 but they have published fixes for semantic versions 0.4 through 0.7. To
2681 update this dependency alone, use `cargo update -p lexical-core`.
2682 - Incremental compilation remains off by default, unless one uses the `RUSTC_FORCE_INCREMENTAL=1` environment variable added in 1.52.1.
2683
2684 Internal Only
2685 -------------
2686 These changes provide no direct user facing benefits, but represent significant
2687 improvements to the internals and overall performance of rustc and
2688 related tools.
2689
2690 - [Rework the `std::sys::windows::alloc` implementation.][83065]
2691 - [rustdoc: Don't enter an infer_ctxt in get_blanket_impls for impls that aren't blanket impls.][82864]
2692 - [rustdoc: Only look at blanket impls in `get_blanket_impls`][83681]
2693 - [Rework rustdoc const type][82873]
2694
2695 [85667]: https://github.com/rust-lang/rust/pull/85667
2696 [83386]: https://github.com/rust-lang/rust/pull/83386
2697 [82771]: https://github.com/rust-lang/rust/pull/82771
2698 [84147]: https://github.com/rust-lang/rust/pull/84147
2699 [84082]: https://github.com/rust-lang/rust/pull/84082
2700 [83799]: https://github.com/rust-lang/rust/pull/83799
2701 [83681]: https://github.com/rust-lang/rust/pull/83681
2702 [83652]: https://github.com/rust-lang/rust/pull/83652
2703 [83387]: https://github.com/rust-lang/rust/pull/83387
2704 [82873]: https://github.com/rust-lang/rust/pull/82873
2705 [82864]: https://github.com/rust-lang/rust/pull/82864
2706 [82608]: https://github.com/rust-lang/rust/pull/82608
2707 [82565]: https://github.com/rust-lang/rust/pull/82565
2708 [80525]: https://github.com/rust-lang/rust/pull/80525
2709 [79278]: https://github.com/rust-lang/rust/pull/79278
2710 [78618]: https://github.com/rust-lang/rust/pull/78618
2711 [77704]: https://github.com/rust-lang/rust/pull/77704
2712 [83941]: https://github.com/rust-lang/rust/pull/83941
2713 [83065]: https://github.com/rust-lang/rust/pull/83065
2714 [81764]: https://github.com/rust-lang/rust/pull/81764
2715 [81469]: https://github.com/rust-lang/rust/pull/81469
2716 [cargo/9298]: https://github.com/rust-lang/cargo/pull/9298
2717 [cargo/9282]: https://github.com/rust-lang/cargo/pull/9282
2718 [cargo/9392]: https://github.com/rust-lang/cargo/pull/9392
2719 [`AtomicBool::fetch_update`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicBool.html#method.fetch_update
2720 [`AtomicPtr::fetch_update`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicPtr.html#method.fetch_update
2721 [`BTreeMap::retain`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#method.retain
2722 [`BTreeSet::retain`]: https://doc.rust-lang.org/std/collections/struct.BTreeSet.html#method.retain
2723 [`BufReader::seek_relative`]: https://doc.rust-lang.org/std/io/struct.BufReader.html#method.seek_relative
2724 [`DebugStruct::non_exhaustive`]: https://doc.rust-lang.org/std/fmt/struct.DebugStruct.html#method.finish_non_exhaustive
2725 [`Duration::MAX`]: https://doc.rust-lang.org/std/time/struct.Duration.html#associatedconstant.MAX
2726 [`Duration::ZERO`]: https://doc.rust-lang.org/std/time/struct.Duration.html#associatedconstant.ZERO
2727 [`Duration::is_zero`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.is_zero
2728 [`Duration::saturating_add`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.saturating_add
2729 [`Duration::saturating_mul`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.saturating_mul
2730 [`Duration::saturating_sub`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.saturating_sub
2731 [`ErrorKind::Unsupported`]: https://doc.rust-lang.org/std/io/enum.ErrorKind.html#variant.Unsupported
2732 [`Option::insert`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.insert
2733 [`Ordering::is_eq`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_eq
2734 [`Ordering::is_ge`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_ge
2735 [`Ordering::is_gt`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_gt
2736 [`Ordering::is_le`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_le
2737 [`Ordering::is_lt`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_lt
2738 [`Ordering::is_ne`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.is_ne
2739 [`OsStr::is_ascii`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.is_ascii
2740 [`OsStr::make_ascii_lowercase`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.make_ascii_lowercase
2741 [`OsStr::make_ascii_uppercase`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.make_ascii_uppercase
2742 [`OsStr::to_ascii_lowercase`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.to_ascii_lowercase
2743 [`OsStr::to_ascii_uppercase`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.to_ascii_uppercase
2744 [`Peekable::peek_mut`]: https://doc.rust-lang.org/std/iter/struct.Peekable.html#method.peek_mut
2745 [`Rc::decrement_strong_count`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.decrement_strong_count
2746 [`Rc::increment_strong_count`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.increment_strong_count
2747 [`Vec::extend_from_within`]: https://doc.rust-lang.org/beta/std/vec/struct.Vec.html#method.extend_from_within
2748 [`array::from_mut`]: https://doc.rust-lang.org/beta/std/array/fn.from_mut.html
2749 [`array::from_ref`]: https://doc.rust-lang.org/beta/std/array/fn.from_ref.html
2750 [`cmp::max_by_key`]: https://doc.rust-lang.org/beta/std/cmp/fn.max_by_key.html
2751 [`cmp::max_by`]: https://doc.rust-lang.org/beta/std/cmp/fn.max_by.html
2752 [`cmp::min_by_key`]: https://doc.rust-lang.org/beta/std/cmp/fn.min_by_key.html
2753 [`cmp::min_by`]: https://doc.rust-lang.org/beta/std/cmp/fn.min_by.html
2754 [`f32::is_subnormal`]: https://doc.rust-lang.org/std/primitive.f32.html#method.is_subnormal
2755 [`f64::is_subnormal`]: https://doc.rust-lang.org/std/primitive.f64.html#method.is_subnormal
2756 [ietf6943]: https://datatracker.ietf.org/doc/html/rfc6943#section-3.1.1
2757
2758
2759 Version 1.52.1 (2021-05-10)
2760 ============================
2761
2762 This release disables incremental compilation, unless the user has explicitly
2763 opted in via the newly added RUSTC_FORCE_INCREMENTAL=1 environment variable.
2764
2765 This is due to the widespread, and frequently occurring, breakage encountered by
2766 Rust users due to newly enabled incremental verification in 1.52.0. Notably,
2767 Rust users **should** upgrade to 1.52.0 or 1.52.1: the bugs that are detected by
2768 newly added incremental verification are still present in past stable versions,
2769 and are not yet fixed on any channel. These bugs can lead to miscompilation of
2770 Rust binaries.
2771
2772 These problems only affect incremental builds, so release builds with Cargo
2773 should not be affected unless the user has explicitly opted into incremental.
2774 Debug and check builds are affected.
2775
2776 See [84970] for more details.
2777
2778 [84970]: https://github.com/rust-lang/rust/issues/84970
2779
2780 Version 1.52.0 (2021-05-06)
2781 ============================
2782
2783 Language
2784 --------
2785 - [Added the `unsafe_op_in_unsafe_fn` lint, which checks whether the unsafe code
2786 in an `unsafe fn` is wrapped in a `unsafe` block.][79208] This lint
2787 is allowed by default, and may become a warning or hard error in a
2788 future edition.
2789 - [You can now cast mutable references to arrays to a pointer of the same type as
2790 the element.][81479]
2791
2792 Compiler
2793 --------
2794 - [Upgraded the default LLVM to LLVM 12.][81451]
2795
2796 Added tier 3\* support for the following targets.
2797
2798 - [`s390x-unknown-linux-musl`][82166]
2799 - [`riscv32gc-unknown-linux-musl` & `riscv64gc-unknown-linux-musl`][82202]
2800 - [`powerpc-unknown-openbsd`][82733]
2801
2802 \* Refer to Rust's [platform support page][platform-support-doc] for more
2803 information on Rust's tiered platform support.
2804
2805 Libraries
2806 ---------
2807 - [`OsString` now implements `Extend` and `FromIterator`.][82121]
2808 - [`cmp::Reverse` now has `#[repr(transparent)]` representation.][81879]
2809 - [`Arc<impl Error>` now implements `error::Error`.][80553]
2810 - [All integer division and remainder operations are now `const`.][80962]
2811
2812 Stabilised APIs
2813 -------------
2814 - [`Arguments::as_str`]
2815 - [`char::MAX`]
2816 - [`char::REPLACEMENT_CHARACTER`]
2817 - [`char::UNICODE_VERSION`]
2818 - [`char::decode_utf16`]
2819 - [`char::from_digit`]
2820 - [`char::from_u32_unchecked`]
2821 - [`char::from_u32`]
2822 - [`slice::partition_point`]
2823 - [`str::rsplit_once`]
2824 - [`str::split_once`]
2825
2826 The following previously stable APIs are now `const`.
2827
2828 - [`char::len_utf8`]
2829 - [`char::len_utf16`]
2830 - [`char::to_ascii_uppercase`]
2831 - [`char::to_ascii_lowercase`]
2832 - [`char::eq_ignore_ascii_case`]
2833 - [`u8::to_ascii_uppercase`]
2834 - [`u8::to_ascii_lowercase`]
2835 - [`u8::eq_ignore_ascii_case`]
2836
2837 Rustdoc
2838 -------
2839 - [Rustdoc lints are now treated as a tool lint, meaning that
2840 lints are now prefixed with `rustdoc::` (e.g. `#[warn(rustdoc::broken_intra_doc_links)]`).][80527]
2841 Using the old style is still allowed, and will become a warning in
2842 a future release.
2843 - [Rustdoc now supports argument files.][82261]
2844 - [Rustdoc now generates smart punctuation for documentation.][79423]
2845 - [You can now use "task lists" in Rustdoc Markdown.][81766] E.g.
2846 ```markdown
2847 - [x] Complete
2848 - [ ] Todo
2849 ```
2850
2851 Misc
2852 ----
2853 - [You can now pass multiple filters to tests.][81356] E.g.
2854 `cargo test -- foo bar` will run all tests that match `foo` and `bar`.
2855 - [Rustup now distributes PDB symbols for the `std` library on Windows,
2856 allowing you to see `std` symbols when debugging.][82218]
2857
2858 Internal Only
2859 -------------
2860 These changes provide no direct user facing benefits, but represent significant
2861 improvements to the internals and overall performance of rustc and
2862 related tools.
2863
2864 - [Check the result cache before the DepGraph when ensuring queries][81855]
2865 - [Try fast_reject::simplify_type in coherence before doing full check][81744]
2866 - [Only store a LocalDefId in some HIR nodes][81611]
2867 - [Store HIR attributes in a side table][79519]
2868
2869 Compatibility Notes
2870 -------------------
2871 - [Cargo build scripts are now forbidden from setting `RUSTC_BOOTSTRAP`.][cargo/9181]
2872 - [Removed support for the `x86_64-rumprun-netbsd` target.][82594]
2873 - [Deprecated the `x86_64-sun-solaris` target in favor of `x86_64-pc-solaris`.][82216]
2874 - [Rustdoc now only accepts `,`, ` `, and `\t` as delimiters for specifying
2875 languages in code blocks.][78429]
2876 - [Rustc now catches more cases of `pub_use_of_private_extern_crate`][80763]
2877 - [Changes in how proc macros handle whitespace may lead to panics when used
2878 with older `proc-macro-hack` versions. A `cargo update` should be sufficient to fix this in all cases.][84136]
2879 - [Turn `#[derive]` into a regular macro attribute][79078]
2880
2881 [84136]: https://github.com/rust-lang/rust/issues/84136
2882 [80763]: https://github.com/rust-lang/rust/pull/80763
2883 [82166]: https://github.com/rust-lang/rust/pull/82166
2884 [82121]: https://github.com/rust-lang/rust/pull/82121
2885 [81879]: https://github.com/rust-lang/rust/pull/81879
2886 [82261]: https://github.com/rust-lang/rust/pull/82261
2887 [82218]: https://github.com/rust-lang/rust/pull/82218
2888 [82216]: https://github.com/rust-lang/rust/pull/82216
2889 [82202]: https://github.com/rust-lang/rust/pull/82202
2890 [81855]: https://github.com/rust-lang/rust/pull/81855
2891 [81766]: https://github.com/rust-lang/rust/pull/81766
2892 [81744]: https://github.com/rust-lang/rust/pull/81744
2893 [81611]: https://github.com/rust-lang/rust/pull/81611
2894 [81479]: https://github.com/rust-lang/rust/pull/81479
2895 [81451]: https://github.com/rust-lang/rust/pull/81451
2896 [81356]: https://github.com/rust-lang/rust/pull/81356
2897 [80962]: https://github.com/rust-lang/rust/pull/80962
2898 [80553]: https://github.com/rust-lang/rust/pull/80553
2899 [80527]: https://github.com/rust-lang/rust/pull/80527
2900 [79519]: https://github.com/rust-lang/rust/pull/79519
2901 [79423]: https://github.com/rust-lang/rust/pull/79423
2902 [79208]: https://github.com/rust-lang/rust/pull/79208
2903 [78429]: https://github.com/rust-lang/rust/pull/78429
2904 [82733]: https://github.com/rust-lang/rust/pull/82733
2905 [82594]: https://github.com/rust-lang/rust/pull/82594
2906 [79078]: https://github.com/rust-lang/rust/pull/79078
2907 [cargo/9181]: https://github.com/rust-lang/cargo/pull/9181
2908 [`char::MAX`]: https://doc.rust-lang.org/std/primitive.char.html#associatedconstant.MAX
2909 [`char::REPLACEMENT_CHARACTER`]: https://doc.rust-lang.org/std/primitive.char.html#associatedconstant.REPLACEMENT_CHARACTER
2910 [`char::UNICODE_VERSION`]: https://doc.rust-lang.org/std/primitive.char.html#associatedconstant.UNICODE_VERSION
2911 [`char::decode_utf16`]: https://doc.rust-lang.org/std/primitive.char.html#method.decode_utf16
2912 [`char::from_u32`]: https://doc.rust-lang.org/std/primitive.char.html#method.from_u32
2913 [`char::from_u32_unchecked`]: https://doc.rust-lang.org/std/primitive.char.html#method.from_u32_unchecked
2914 [`char::from_digit`]: https://doc.rust-lang.org/std/primitive.char.html#method.from_digit
2915 [`Peekable::next_if`]: https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if
2916 [`Peekable::next_if_eq`]: https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if_eq
2917 [`Arguments::as_str`]: https://doc.rust-lang.org/stable/std/fmt/struct.Arguments.html#method.as_str
2918 [`str::split_once`]: https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_once
2919 [`str::rsplit_once`]: https://doc.rust-lang.org/stable/std/primitive.str.html#method.rsplit_once
2920 [`slice::partition_point`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.partition_point
2921 [`char::len_utf8`]: https://doc.rust-lang.org/stable/std/primitive.char.html#method.len_utf8
2922 [`char::len_utf16`]: https://doc.rust-lang.org/stable/std/primitive.char.html#method.len_utf16
2923 [`char::to_ascii_uppercase`]: https://doc.rust-lang.org/stable/std/primitive.char.html#method.to_ascii_uppercase
2924 [`char::to_ascii_lowercase`]: https://doc.rust-lang.org/stable/std/primitive.char.html#method.to_ascii_lowercase
2925 [`char::eq_ignore_ascii_case`]: https://doc.rust-lang.org/stable/std/primitive.char.html#method.eq_ignore_ascii_case
2926 [`u8::to_ascii_uppercase`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.to_ascii_uppercase
2927 [`u8::to_ascii_lowercase`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.to_ascii_lowercase
2928 [`u8::eq_ignore_ascii_case`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.eq_ignore_ascii_case
2929
2930 Version 1.51.0 (2021-03-25)
2931 ============================
2932
2933 Language
2934 --------
2935 - [You can now parameterize items such as functions, traits, and `struct`s by constant
2936 values in addition to by types and lifetimes.][79135] Also known as "const generics"
2937 E.g. you can now write the following. Note: Only values of primitive integers,
2938 `bool`, or `char` types are currently permitted.
2939 ```rust
2940 struct GenericArray<T, const LENGTH: usize> {
2941 inner: [T; LENGTH]
2942 }
2943
2944 impl<T, const LENGTH: usize> GenericArray<T, LENGTH> {
2945 const fn last(&self) -> Option<&T> {
2946 if LENGTH == 0 {
2947 None
2948 } else {
2949 Some(&self.inner[LENGTH - 1])
2950 }
2951 }
2952 }
2953 ```
2954
2955
2956 Compiler
2957 --------
2958
2959 - [Added the `-Csplit-debuginfo` codegen option for macOS platforms.][79570]
2960 This option controls whether debug information is split across multiple files
2961 or packed into a single file. **Note** This option is unstable on other platforms.
2962 - [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`,
2963 `aarch64-unknown-linux-gnu_ilp32`, and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455]
2964 - [Added tier 3 support for `i386-unknown-linux-gnu` and `i486-unknown-linux-gnu` targets.][80662]
2965 - [The `target-cpu=native` option will now detect individual features of CPUs.][80749]
2966
2967 \* Refer to Rust's [platform support page][platform-support-doc] for more
2968 information on Rust's tiered platform support.
2969
2970 Libraries
2971 ---------
2972
2973 - [`Box::downcast` is now also implemented for any `dyn Any + Send + Sync` object.][80945]
2974 - [`str` now implements `AsMut<str>`.][80279]
2975 - [`u64` and `u128` now implement `From<char>`.][79502]
2976 - [`Error` is now implemented for `&T` where `T` implements `Error`.][75180]
2977 - [`Poll::{map_ok, map_err}` are now implemented for `Poll<Option<Result<T, E>>>`.][80968]
2978 - [`unsigned_abs` is now implemented for all signed integer types.][80959]
2979 - [`io::Empty` now implements `io::Seek`.][78044]
2980 - [`rc::Weak<T>` and `sync::Weak<T>`'s methods such as `as_ptr` are now implemented for
2981 `T: ?Sized` types.][80764]
2982 - [`Div` and `Rem` by their `NonZero` variant is now implemented for all unsigned integers.][79134]
2983
2984
2985 Stabilized APIs
2986 ---------------
2987
2988 - [`Arc::decrement_strong_count`]
2989 - [`Arc::increment_strong_count`]
2990 - [`Once::call_once_force`]
2991 - [`Peekable::next_if_eq`]
2992 - [`Peekable::next_if`]
2993 - [`Seek::stream_position`]
2994 - [`array::IntoIter`]
2995 - [`panic::panic_any`]
2996 - [`ptr::addr_of!`]
2997 - [`ptr::addr_of_mut!`]
2998 - [`slice::fill_with`]
2999 - [`slice::split_inclusive_mut`]
3000 - [`slice::split_inclusive`]
3001 - [`slice::strip_prefix`]
3002 - [`slice::strip_suffix`]
3003 - [`str::split_inclusive`]
3004 - [`sync::OnceState`]
3005 - [`task::Wake`]
3006 - [`VecDeque::range`]
3007 - [`VecDeque::range_mut`]
3008
3009 Cargo
3010 -----
3011 - [Added the `split-debuginfo` profile option to control the -Csplit-debuginfo
3012 codegen option.][cargo/9112]
3013 - [Added the `resolver` field to `Cargo.toml` to enable the new feature resolver
3014 and CLI option behavior.][cargo/8997] Version 2 of the feature resolver will try
3015 to avoid unifying features of dependencies where that unification could be unwanted.
3016 Such as using the same dependency with a `std` feature in a build scripts and
3017 proc-macros, while using the `no-std` feature in the final binary. See the
3018 [Cargo book documentation][feature-resolver@2.0] for more information on the feature.
3019
3020 Rustdoc
3021 -------
3022
3023 - [Rustdoc will now include documentation for methods available from _nested_ `Deref` traits.][80653]
3024 - [You can now provide a `--default-theme` flag which sets the default theme to use for
3025 documentation.][79642]
3026
3027 Various improvements to intra-doc links:
3028
3029 - [You can link to non-path primitives such as `slice`.][80181]
3030 - [You can link to associated items.][74489]
3031 - [You can now include generic parameters when linking to items, like `Vec<T>`.][76934]
3032
3033 Misc
3034 ----
3035 - [You can now pass `--include-ignored` to tests (e.g. with
3036 `cargo test -- --include-ignored`) to include testing tests marked `#[ignore]`.][80053]
3037
3038 Compatibility Notes
3039 -------------------
3040
3041 - [WASI platforms no longer use the `wasm-bindgen` ABI, and instead use the wasm32 ABI.][79998]
3042 - [`rustc` no longer promotes division, modulo and indexing operations to `const` that
3043 could fail.][80579]
3044 - [The minimum version of glibc for the following platforms has been bumped to version 2.31
3045 for the distributed artifacts.][81521]
3046 - `armv5te-unknown-linux-gnueabi`
3047 - `sparc64-unknown-linux-gnu`
3048 - `thumbv7neon-unknown-linux-gnueabihf`
3049 - `armv7-unknown-linux-gnueabi`
3050 - `x86_64-unknown-linux-gnux32`
3051 - [`atomic::spin_loop_hint` has been deprecated.][80966] It's recommended to use `hint::spin_loop` instead.
3052
3053 Internal Only
3054 -------------
3055
3056 - [Consistently avoid constructing optimized MIR when not doing codegen][80718]
3057
3058 [79135]: https://github.com/rust-lang/rust/pull/79135
3059 [74489]: https://github.com/rust-lang/rust/pull/74489
3060 [76934]: https://github.com/rust-lang/rust/pull/76934
3061 [79570]: https://github.com/rust-lang/rust/pull/79570
3062 [80181]: https://github.com/rust-lang/rust/pull/80181
3063 [79642]: https://github.com/rust-lang/rust/pull/79642
3064 [80945]: https://github.com/rust-lang/rust/pull/80945
3065 [80279]: https://github.com/rust-lang/rust/pull/80279
3066 [80053]: https://github.com/rust-lang/rust/pull/80053
3067 [79502]: https://github.com/rust-lang/rust/pull/79502
3068 [75180]: https://github.com/rust-lang/rust/pull/75180
3069 [81521]: https://github.com/rust-lang/rust/pull/81521
3070 [80968]: https://github.com/rust-lang/rust/pull/80968
3071 [80959]: https://github.com/rust-lang/rust/pull/80959
3072 [80718]: https://github.com/rust-lang/rust/pull/80718
3073 [80653]: https://github.com/rust-lang/rust/pull/80653
3074 [80579]: https://github.com/rust-lang/rust/pull/80579
3075 [79998]: https://github.com/rust-lang/rust/pull/79998
3076 [78044]: https://github.com/rust-lang/rust/pull/78044
3077 [81455]: https://github.com/rust-lang/rust/pull/81455
3078 [80764]: https://github.com/rust-lang/rust/pull/80764
3079 [80749]: https://github.com/rust-lang/rust/pull/80749
3080 [80662]: https://github.com/rust-lang/rust/pull/80662
3081 [79134]: https://github.com/rust-lang/rust/pull/79134
3082 [80966]: https://github.com/rust-lang/rust/pull/80966
3083 [cargo/8997]: https://github.com/rust-lang/cargo/pull/8997
3084 [cargo/9112]: https://github.com/rust-lang/cargo/pull/9112
3085 [feature-resolver@2.0]: https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2
3086 [`Once::call_once_force`]: https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.call_once_force
3087 [`sync::OnceState`]: https://doc.rust-lang.org/stable/std/sync/struct.OnceState.html
3088 [`panic::panic_any`]: https://doc.rust-lang.org/stable/std/panic/fn.panic_any.html
3089 [`slice::strip_prefix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_prefix
3090 [`slice::strip_suffix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_suffix
3091 [`Arc::increment_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.increment_strong_count
3092 [`Arc::decrement_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.decrement_strong_count
3093 [`slice::fill_with`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.fill_with
3094 [`ptr::addr_of!`]: https://doc.rust-lang.org/nightly/std/ptr/macro.addr_of.html
3095 [`ptr::addr_of_mut!`]: https://doc.rust-lang.org/nightly/std/ptr/macro.addr_of_mut.html
3096 [`array::IntoIter`]: https://doc.rust-lang.org/nightly/std/array/struct.IntoIter.html
3097 [`slice::split_inclusive`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_inclusive
3098 [`slice::split_inclusive_mut`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_inclusive_mut
3099 [`str::split_inclusive`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_inclusive
3100 [`task::Wake`]: https://doc.rust-lang.org/nightly/std/task/trait.Wake.html
3101 [`Seek::stream_position`]: https://doc.rust-lang.org/nightly/std/io/trait.Seek.html#method.stream_position
3102 [`Peekable::next_if`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if
3103 [`Peekable::next_if_eq`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if_eq
3104 [`VecDeque::range`]: https://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.range
3105 [`VecDeque::range_mut`]: https://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.range_mut
3106
3107 Version 1.50.0 (2021-02-11)
3108 ============================
3109
3110 Language
3111 -----------------------
3112 - [You can now use `const` values for `x` in `[x; N]` array expressions.][79270]
3113 This has been technically possible since 1.38.0, as it was unintentionally stabilized.
3114 - [Assignments to `ManuallyDrop<T>` union fields are now considered safe.][78068]
3115
3116 Compiler
3117 -----------------------
3118 - [Added tier 3\* support for the `armv5te-unknown-linux-uclibceabi` target.][78142]
3119 - [Added tier 3 support for the `aarch64-apple-ios-macabi` target.][77484]
3120 - [The `x86_64-unknown-freebsd` is now built with the full toolset.][79484]
3121 - [Dropped support for all cloudabi targets.][78439]
3122
3123 \* Refer to Rust's [platform support page][platform-support-doc] for more
3124 information on Rust's tiered platform support.
3125
3126 Libraries
3127 -----------------------
3128
3129 - [`proc_macro::Punct` now implements `PartialEq<char>`.][78636]
3130 - [`ops::{Index, IndexMut}` are now implemented for fixed sized arrays of any length.][74989]
3131 - [On Unix platforms, the `std::fs::File` type now has a "niche" of `-1`.][74699]
3132 This value cannot be a valid file descriptor, and now means `Option<File>` takes
3133 up the same amount of space as `File`.
3134
3135 Stabilized APIs
3136 ---------------
3137
3138 - [`bool::then`]
3139 - [`btree_map::Entry::or_insert_with_key`]
3140 - [`f32::clamp`]
3141 - [`f64::clamp`]
3142 - [`hash_map::Entry::or_insert_with_key`]
3143 - [`Ord::clamp`]
3144 - [`RefCell::take`]
3145 - [`slice::fill`]
3146 - [`UnsafeCell::get_mut`]
3147
3148 The following previously stable methods are now `const`.
3149
3150 - [`IpAddr::is_ipv4`]
3151 - [`IpAddr::is_ipv6`]
3152 - [`IpAddr::is_unspecified`]
3153 - [`IpAddr::is_loopback`]
3154 - [`IpAddr::is_multicast`]
3155 - [`Ipv4Addr::octets`]
3156 - [`Ipv4Addr::is_loopback`]
3157 - [`Ipv4Addr::is_private`]
3158 - [`Ipv4Addr::is_link_local`]
3159 - [`Ipv4Addr::is_multicast`]
3160 - [`Ipv4Addr::is_broadcast`]
3161 - [`Ipv4Addr::is_documentation`]
3162 - [`Ipv4Addr::to_ipv6_compatible`]
3163 - [`Ipv4Addr::to_ipv6_mapped`]
3164 - [`Ipv6Addr::segments`]
3165 - [`Ipv6Addr::is_unspecified`]
3166 - [`Ipv6Addr::is_loopback`]
3167 - [`Ipv6Addr::is_multicast`]
3168 - [`Ipv6Addr::to_ipv4`]
3169 - [`Layout::size`]
3170 - [`Layout::align`]
3171 - [`Layout::from_size_align`]
3172 - `pow` for all integer types.
3173 - `checked_pow` for all integer types.
3174 - `saturating_pow` for all integer types.
3175 - `wrapping_pow` for all integer types.
3176 - `next_power_of_two` for all unsigned integer types.
3177 - `checked_next_power_of_two` for all unsigned integer types.
3178
3179 Cargo
3180 -----------------------
3181
3182 - [Added the `[build.rustc-workspace-wrapper]` option.][cargo/8976]
3183 This option sets a wrapper to execute instead of `rustc`, for workspace members only.
3184 - [`cargo:rerun-if-changed` will now, if provided a directory, scan the entire
3185 contents of that directory for changes.][cargo/8973]
3186 - [Added the `--workspace` flag to the `cargo update` command.][cargo/8725]
3187
3188 Misc
3189 ----
3190
3191 - [The search results tab and the help button are focusable with keyboard in rustdoc.][79896]
3192 - [Running tests will now print the total time taken to execute.][75752]
3193
3194 Compatibility Notes
3195 -------------------
3196
3197 - [The `compare_and_swap` method on atomics has been deprecated.][79261] It's
3198 recommended to use the `compare_exchange` and `compare_exchange_weak` methods instead.
3199 - [Changes in how `TokenStream`s are checked have fixed some cases where you could write
3200 unhygenic `macro_rules!` macros.][79472]
3201 - [`#![test]` as an inner attribute is now considered unstable like other inner macro
3202 attributes, and reports an error by default through the `soft_unstable` lint.][79003]
3203 - [Overriding a `forbid` lint at the same level that it was set is now a hard error.][78864]
3204 - [You can no longer intercept `panic!` calls by supplying your own macro.][78343] It's
3205 recommended to use the `#[panic_handler]` attribute to provide your own implementation.
3206 - [Semi-colons after item statements (e.g. `struct Foo {};`) now produce a warning.][78296]
3207
3208 [74989]: https://github.com/rust-lang/rust/pull/74989
3209 [79261]: https://github.com/rust-lang/rust/pull/79261
3210 [79896]: https://github.com/rust-lang/rust/pull/79896
3211 [79484]: https://github.com/rust-lang/rust/pull/79484
3212 [79472]: https://github.com/rust-lang/rust/pull/79472
3213 [79270]: https://github.com/rust-lang/rust/pull/79270
3214 [79003]: https://github.com/rust-lang/rust/pull/79003
3215 [78864]: https://github.com/rust-lang/rust/pull/78864
3216 [78636]: https://github.com/rust-lang/rust/pull/78636
3217 [78439]: https://github.com/rust-lang/rust/pull/78439
3218 [78343]: https://github.com/rust-lang/rust/pull/78343
3219 [78296]: https://github.com/rust-lang/rust/pull/78296
3220 [78068]: https://github.com/rust-lang/rust/pull/78068
3221 [75752]: https://github.com/rust-lang/rust/pull/75752
3222 [74699]: https://github.com/rust-lang/rust/pull/74699
3223 [78142]: https://github.com/rust-lang/rust/pull/78142
3224 [77484]: https://github.com/rust-lang/rust/pull/77484
3225 [cargo/8976]: https://github.com/rust-lang/cargo/pull/8976
3226 [cargo/8973]: https://github.com/rust-lang/cargo/pull/8973
3227 [cargo/8725]: https://github.com/rust-lang/cargo/pull/8725
3228 [`IpAddr::is_ipv4`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_ipv4
3229 [`IpAddr::is_ipv6`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_ipv6
3230 [`IpAddr::is_unspecified`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_unspecified
3231 [`IpAddr::is_loopback`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_loopback
3232 [`IpAddr::is_multicast`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_multicast
3233 [`Ipv4Addr::octets`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.octets
3234 [`Ipv4Addr::is_loopback`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_loopback
3235 [`Ipv4Addr::is_private`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_private
3236 [`Ipv4Addr::is_link_local`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_link_local
3237 [`Ipv4Addr::is_multicast`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_multicast
3238 [`Ipv4Addr::is_broadcast`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_broadcast
3239 [`Ipv4Addr::is_documentation`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.is_documentation
3240 [`Ipv4Addr::to_ipv6_compatible`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.to_ipv6_compatible
3241 [`Ipv4Addr::to_ipv6_mapped`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.to_ipv6_mapped
3242 [`Ipv6Addr::segments`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.segments
3243 [`Ipv6Addr::is_unspecified`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.is_unspecified
3244 [`Ipv6Addr::is_loopback`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.is_loopback
3245 [`Ipv6Addr::is_multicast`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.is_multicast
3246 [`Ipv6Addr::to_ipv4`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.to_ipv4
3247 [`Layout::align`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.align
3248 [`Layout::from_size_align`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.from_size_align
3249 [`Layout::size`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.size
3250 [`Ord::clamp`]: https://doc.rust-lang.org/stable/std/cmp/trait.Ord.html#method.clamp
3251 [`RefCell::take`]: https://doc.rust-lang.org/stable/std/cell/struct.RefCell.html#method.take
3252 [`UnsafeCell::get_mut`]: https://doc.rust-lang.org/stable/std/cell/struct.UnsafeCell.html#method.get_mut
3253 [`bool::then`]: https://doc.rust-lang.org/stable/std/primitive.bool.html#method.then
3254 [`btree_map::Entry::or_insert_with_key`]: https://doc.rust-lang.org/stable/std/collections/btree_map/enum.Entry.html#method.or_insert_with_key
3255 [`f32::clamp`]: https://doc.rust-lang.org/stable/std/primitive.f32.html#method.clamp
3256 [`f64::clamp`]: https://doc.rust-lang.org/stable/std/primitive.f64.html#method.clamp
3257 [`hash_map::Entry::or_insert_with_key`]: https://doc.rust-lang.org/stable/std/collections/hash_map/enum.Entry.html#method.or_insert_with_key
3258 [`slice::fill`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.fill
3259
3260
3261 Version 1.49.0 (2020-12-31)
3262 ============================
3263
3264 Language
3265 -----------------------
3266
3267 - [Unions can now implement `Drop`, and you can now have a field in a union
3268 with `ManuallyDrop<T>`.][77547]
3269 - [You can now cast uninhabited enums to integers.][76199]
3270 - [You can now bind by reference and by move in patterns.][76119] This
3271 allows you to selectively borrow individual components of a type. E.g.
3272 ```rust
3273 #[derive(Debug)]
3274 struct Person {
3275 name: String,
3276 age: u8,
3277 }
3278
3279 let person = Person {
3280 name: String::from("Alice"),
3281 age: 20,
3282 };
3283
3284 // `name` is moved out of person, but `age` is referenced.
3285 let Person { name, ref age } = person;
3286 println!("{} {}", name, age);
3287 ```
3288
3289 Compiler
3290 -----------------------
3291
3292 - [Added tier 1\* support for `aarch64-unknown-linux-gnu`.][78228]
3293 - [Added tier 2 support for `aarch64-apple-darwin`.][75991]
3294 - [Added tier 2 support for `aarch64-pc-windows-msvc`.][75914]
3295 - [Added tier 3 support for `mipsel-unknown-none`.][78676]
3296 - [Raised the minimum supported LLVM version to LLVM 9.][78848]
3297 - [Output from threads spawned in tests is now captured.][78227]
3298 - [Change os and vendor values to "none" and "unknown" for some targets][78951]
3299
3300 \* Refer to Rust's [platform support page][platform-support-doc] for more
3301 information on Rust's tiered platform support.
3302
3303 Libraries
3304 -----------------------
3305
3306 - [`RangeInclusive` now checks for exhaustion when calling `contains` and indexing.][78109]
3307 - [`ToString::to_string` now no longer shrinks the internal buffer in the default implementation.][77997]
3308
3309 Stabilized APIs
3310 ---------------
3311
3312 - [`slice::select_nth_unstable`]
3313 - [`slice::select_nth_unstable_by`]
3314 - [`slice::select_nth_unstable_by_key`]
3315
3316 The following previously stable methods are now `const`.
3317
3318 - [`Poll::is_ready`]
3319 - [`Poll::is_pending`]
3320
3321 Cargo
3322 -----------------------
3323 - [Building a crate with `cargo-package` should now be independently reproducible.][cargo/8864]
3324 - [`cargo-tree` now marks proc-macro crates.][cargo/8765]
3325 - [Added `CARGO_PRIMARY_PACKAGE` build-time environment variable.][cargo/8758] This
3326 variable will be set if the crate being built is one the user selected to build, either
3327 with `-p` or through defaults.
3328 - [You can now use glob patterns when specifying packages & targets.][cargo/8752]
3329
3330
3331 Compatibility Notes
3332 -------------------
3333
3334 - [Demoted `i686-unknown-freebsd` from host tier 2 to target tier 2 support.][78746]
3335 - [Macros that end with a semi-colon are now treated as statements even if they expand to nothing.][78376]
3336 - [Rustc will now check for the validity of some built-in attributes on enum variants.][77015]
3337 Previously such invalid or unused attributes could be ignored.
3338 - Leading whitespace is stripped more uniformly in documentation comments, which may change behavior. You
3339 read [this post about the changes][rustdoc-ws-post] for more details.
3340 - [Trait bounds are no longer inferred for associated types.][79904]
3341
3342 Internal Only
3343 -------------
3344 These changes provide no direct user facing benefits, but represent significant
3345 improvements to the internals and overall performance of rustc and
3346 related tools.
3347
3348 - [rustc's internal crates are now compiled using the `initial-exec` Thread
3349 Local Storage model.][78201]
3350 - [Calculate visibilities once in resolve.][78077]
3351 - [Added `system` to the `llvm-libunwind` bootstrap config option.][77703]
3352 - [Added `--color` for configuring terminal color support to bootstrap.][79004]
3353
3354
3355 [75991]: https://github.com/rust-lang/rust/pull/75991
3356 [78951]: https://github.com/rust-lang/rust/pull/78951
3357 [78848]: https://github.com/rust-lang/rust/pull/78848
3358 [78746]: https://github.com/rust-lang/rust/pull/78746
3359 [78376]: https://github.com/rust-lang/rust/pull/78376
3360 [78228]: https://github.com/rust-lang/rust/pull/78228
3361 [78227]: https://github.com/rust-lang/rust/pull/78227
3362 [78201]: https://github.com/rust-lang/rust/pull/78201
3363 [78109]: https://github.com/rust-lang/rust/pull/78109
3364 [78077]: https://github.com/rust-lang/rust/pull/78077
3365 [77997]: https://github.com/rust-lang/rust/pull/77997
3366 [77703]: https://github.com/rust-lang/rust/pull/77703
3367 [77547]: https://github.com/rust-lang/rust/pull/77547
3368 [77015]: https://github.com/rust-lang/rust/pull/77015
3369 [76199]: https://github.com/rust-lang/rust/pull/76199
3370 [76119]: https://github.com/rust-lang/rust/pull/76119
3371 [75914]: https://github.com/rust-lang/rust/pull/75914
3372 [79004]: https://github.com/rust-lang/rust/pull/79004
3373 [78676]: https://github.com/rust-lang/rust/pull/78676
3374 [79904]: https://github.com/rust-lang/rust/issues/79904
3375 [cargo/8864]: https://github.com/rust-lang/cargo/pull/8864
3376 [cargo/8765]: https://github.com/rust-lang/cargo/pull/8765
3377 [cargo/8758]: https://github.com/rust-lang/cargo/pull/8758
3378 [cargo/8752]: https://github.com/rust-lang/cargo/pull/8752
3379 [`slice::select_nth_unstable`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.select_nth_unstable
3380 [`slice::select_nth_unstable_by`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.select_nth_unstable_by
3381 [`slice::select_nth_unstable_by_key`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.select_nth_unstable_by_key
3382 [`Poll::is_ready`]: https://doc.rust-lang.org/stable/std/task/enum.Poll.html#method.is_ready
3383 [`Poll::is_pending`]: https://doc.rust-lang.org/stable/std/task/enum.Poll.html#method.is_pending
3384 [rustdoc-ws-post]: https://blog.guillaume-gomez.fr/articles/2020-11-11+New+doc+comment+handling+in+rustdoc
3385
3386 Version 1.48.0 (2020-11-19)
3387 ==========================
3388
3389 Language
3390 --------
3391
3392 - [The `unsafe` keyword is now syntactically permitted on modules.][75857] This
3393 is still rejected *semantically*, but can now be parsed by procedural macros.
3394
3395 Compiler
3396 --------
3397 - [Stabilised the `-C link-self-contained=<yes|no>` compiler flag.][76158] This tells
3398 `rustc` whether to link its own C runtime and libraries or to rely on a external
3399 linker to find them. (Supported only on `windows-gnu`, `linux-musl`, and `wasi` platforms.)
3400 - [You can now use `-C target-feature=+crt-static` on `linux-gnu` targets.][77386]
3401 Note: If you're using cargo you must explicitly pass the `--target` flag.
3402 - [Added tier 2\* support for `aarch64-unknown-linux-musl`.][76420]
3403
3404 \* Refer to Rust's [platform support page][platform-support-doc] for more
3405 information on Rust's tiered platform support.
3406
3407 Libraries
3408 ---------
3409 - [`io::Write` is now implemented for `&ChildStdin` `&Sink`, `&Stdout`,
3410 and `&Stderr`.][76275]
3411 - [All arrays of any length now implement `TryFrom<Vec<T>>`.][76310]
3412 - [The `matches!` macro now supports having a trailing comma.][74880]
3413 - [`Vec<A>` now implements `PartialEq<[B]>` where `A: PartialEq<B>`.][74194]
3414 - [The `RefCell::{replace, replace_with, clone}` methods now all use `#[track_caller]`.][77055]
3415
3416 Stabilized APIs
3417 ---------------
3418 - [`slice::as_ptr_range`]
3419 - [`slice::as_mut_ptr_range`]
3420 - [`VecDeque::make_contiguous`]
3421 - [`future::pending`]
3422 - [`future::ready`]
3423
3424 The following previously stable methods are now `const fn`'s:
3425
3426 - [`Option::is_some`]
3427 - [`Option::is_none`]
3428 - [`Option::as_ref`]
3429 - [`Result::is_ok`]
3430 - [`Result::is_err`]
3431 - [`Result::as_ref`]
3432 - [`Ordering::reverse`]
3433 - [`Ordering::then`]
3434
3435 Cargo
3436 -----
3437
3438 Rustdoc
3439 -------
3440 - [You can now link to items in `rustdoc` using the intra-doc link
3441 syntax.][74430] E.g. ``/// Uses [`std::future`]`` will automatically generate
3442 a link to `std::future`'s documentation. See ["Linking to items by
3443 name"][intradoc-links] for more information.
3444 - [You can now specify `#[doc(alias = "<alias>")]` on items to add search aliases
3445 when searching through `rustdoc`'s UI.][75740]
3446
3447 Compatibility Notes
3448 -------------------
3449 - [Promotion of references to `'static` lifetime inside `const fn` now follows the
3450 same rules as inside a `fn` body.][75502] In particular, `&foo()` will not be
3451 promoted to `'static` lifetime any more inside `const fn`s.
3452 - [Associated type bindings on trait objects are now verified to meet the bounds
3453 declared on the trait when checking that they implement the trait.][27675]
3454 - [When trait bounds on associated types or opaque types are ambiguous, the
3455 compiler no longer makes an arbitrary choice on which bound to use.][54121]
3456 - [Fixed recursive nonterminals not being expanded in macros during
3457 pretty-print/reparse check.][77153] This may cause errors if your macro wasn't
3458 correctly handling recursive nonterminal tokens.
3459 - [`&mut` references to non zero-sized types are no longer promoted.][75585]
3460 - [`rustc` will now warn if you use attributes like `#[link_name]` or `#[cold]`
3461 in places where they have no effect.][73461]
3462 - [Updated `_mm256_extract_epi8` and `_mm256_extract_epi16` signatures in
3463 `arch::{x86, x86_64}` to return `i32` to match the vendor signatures.][73166]
3464 - [`mem::uninitialized` will now panic if any inner types inside a struct or enum
3465 disallow zero-initialization.][71274]
3466 - [`#[target_feature]` will now error if used in a place where it has no effect.][78143]
3467 - [Foreign exceptions are now caught by `catch_unwind` and will cause an abort.][70212]
3468 Note: This behaviour is not guaranteed and is still considered undefined behaviour,
3469 see the [`catch_unwind`] documentation for further information.
3470
3471
3472
3473 Internal Only
3474 -------------
3475 These changes provide no direct user facing benefits, but represent significant
3476 improvements to the internals and overall performance of rustc and
3477 related tools.
3478
3479 - [Building `rustc` from source now uses `ninja` by default over `make`.][74922]
3480 You can continue building with `make` by setting `ninja=false` in
3481 your `config.toml`.
3482 - [cg_llvm: `fewer_names` in `uncached_llvm_type`][76030]
3483 - [Made `ensure_sufficient_stack()` non-generic][76680]
3484
3485 [78143]: https://github.com/rust-lang/rust/issues/78143
3486 [76680]: https://github.com/rust-lang/rust/pull/76680/
3487 [76030]: https://github.com/rust-lang/rust/pull/76030/
3488 [70212]: https://github.com/rust-lang/rust/pull/70212/
3489 [27675]: https://github.com/rust-lang/rust/issues/27675/
3490 [54121]: https://github.com/rust-lang/rust/issues/54121/
3491 [71274]: https://github.com/rust-lang/rust/pull/71274/
3492 [77386]: https://github.com/rust-lang/rust/pull/77386/
3493 [77153]: https://github.com/rust-lang/rust/pull/77153/
3494 [77055]: https://github.com/rust-lang/rust/pull/77055/
3495 [76275]: https://github.com/rust-lang/rust/pull/76275/
3496 [76310]: https://github.com/rust-lang/rust/pull/76310/
3497 [76420]: https://github.com/rust-lang/rust/pull/76420/
3498 [76158]: https://github.com/rust-lang/rust/pull/76158/
3499 [75857]: https://github.com/rust-lang/rust/pull/75857/
3500 [75585]: https://github.com/rust-lang/rust/pull/75585/
3501 [75740]: https://github.com/rust-lang/rust/pull/75740/
3502 [75502]: https://github.com/rust-lang/rust/pull/75502/
3503 [74880]: https://github.com/rust-lang/rust/pull/74880/
3504 [74922]: https://github.com/rust-lang/rust/pull/74922/
3505 [74430]: https://github.com/rust-lang/rust/pull/74430/
3506 [74194]: https://github.com/rust-lang/rust/pull/74194/
3507 [73461]: https://github.com/rust-lang/rust/pull/73461/
3508 [73166]: https://github.com/rust-lang/rust/pull/73166/
3509 [intradoc-links]: https://doc.rust-lang.org/rustdoc/linking-to-items-by-name.html
3510 [`catch_unwind`]: https://doc.rust-lang.org/std/panic/fn.catch_unwind.html
3511 [`Option::is_some`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.is_some
3512 [`Option::is_none`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.is_none
3513 [`Option::as_ref`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.as_ref
3514 [`Result::is_ok`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.is_ok
3515 [`Result::is_err`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.is_err
3516 [`Result::as_ref`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.as_ref
3517 [`Ordering::reverse`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.reverse
3518 [`Ordering::then`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.then
3519 [`slice::as_ptr_range`]: https://doc.rust-lang.org/std/primitive.slice.html#method.as_ptr_range
3520 [`slice::as_mut_ptr_range`]: https://doc.rust-lang.org/std/primitive.slice.html#method.as_mut_ptr_range
3521 [`VecDeque::make_contiguous`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.make_contiguous
3522 [`future::pending`]: https://doc.rust-lang.org/std/future/fn.pending.html
3523 [`future::ready`]: https://doc.rust-lang.org/std/future/fn.ready.html
3524
3525
3526 Version 1.47.0 (2020-10-08)
3527 ==========================
3528
3529 Language
3530 --------
3531 - [Closures will now warn when not used.][74869]
3532
3533 Compiler
3534 --------
3535 - [Stabilized the `-C control-flow-guard` codegen option][73893], which enables
3536 [Control Flow Guard][1.47.0-cfg] for Windows platforms, and is ignored on other
3537 platforms.
3538 - [Upgraded to LLVM 11.][73526]
3539 - [Added tier 3\* support for the `thumbv4t-none-eabi` target.][74419]
3540 - [Upgrade the FreeBSD toolchain to version 11.4][75204]
3541 - [`RUST_BACKTRACE`'s output is now more compact.][75048]
3542
3543 \* Refer to Rust's [platform support page][platform-support-doc] for more
3544 information on Rust's tiered platform support.
3545
3546 Libraries
3547 ---------
3548 - [`CStr` now implements `Index<RangeFrom<usize>>`.][74021]
3549 - [Traits in `std`/`core` are now implemented for arrays of any length, not just
3550 those of length less than 33.][74060]
3551 - [`ops::RangeFull` and `ops::Range` now implement Default.][73197]
3552 - [`panic::Location` now implements `Copy`, `Clone`, `Eq`, `Hash`, `Ord`,
3553 `PartialEq`, and `PartialOrd`.][73583]
3554
3555 Stabilized APIs
3556 ---------------
3557 - [`Ident::new_raw`]
3558 - [`Range::is_empty`]
3559 - [`RangeInclusive::is_empty`]
3560 - [`Result::as_deref`]
3561 - [`Result::as_deref_mut`]
3562 - [`Vec::leak`]
3563 - [`pointer::offset_from`]
3564 - [`f32::TAU`]
3565 - [`f64::TAU`]
3566
3567 The following previously stable APIs have now been made const.
3568
3569 - [The `new` method for all `NonZero` integers.][73858]
3570 - [The `checked_add`,`checked_sub`,`checked_mul`,`checked_neg`, `checked_shl`,
3571 `checked_shr`, `saturating_add`, `saturating_sub`, and `saturating_mul`
3572 methods for all integers.][73858]
3573 - [The `checked_abs`, `saturating_abs`, `saturating_neg`, and `signum` for all
3574 signed integers.][73858]
3575 - [The `is_ascii_alphabetic`, `is_ascii_uppercase`, `is_ascii_lowercase`,
3576 `is_ascii_alphanumeric`, `is_ascii_digit`, `is_ascii_hexdigit`,
3577 `is_ascii_punctuation`, `is_ascii_graphic`, `is_ascii_whitespace`, and
3578 `is_ascii_control` methods for `char` and `u8`.][73858]
3579
3580 Cargo
3581 -----
3582 - [`build-dependencies` are now built with opt-level 0 by default.][cargo/8500]
3583 You can override this by setting the following in your `Cargo.toml`.
3584 ```toml
3585 [profile.release.build-override]
3586 opt-level = 3
3587 ```
3588 - [`cargo-help` will now display man pages for commands rather just the
3589 `--help` text.][cargo/8456]
3590 - [`cargo-metadata` now emits a `test` field indicating if a target has
3591 tests enabled.][cargo/8478]
3592 - [`workspace.default-members` now respects `workspace.exclude`.][cargo/8485]
3593 - [`cargo-publish` will now use an alternative registry by default if it's the
3594 only registry specified in `package.publish`.][cargo/8571]
3595
3596 Misc
3597 ----
3598 - [Added a help button beside Rustdoc's searchbar that explains rustdoc's
3599 type based search.][75366]
3600 - [Added the Ayu theme to rustdoc.][71237]
3601
3602 Compatibility Notes
3603 -------------------
3604 - [Bumped the minimum supported Emscripten version to 1.39.20.][75716]
3605 - [Fixed a regression parsing `{} && false` in tail expressions.][74650]
3606 - [Added changes to how proc-macros are expanded in `macro_rules!` that should
3607 help to preserve more span information.][73084] These changes may cause
3608 compilation errors if your macro was unhygenic or didn't correctly handle
3609 `Delimiter::None`.
3610 - [Moved support for the CloudABI target to tier 3.][75568]
3611 - [`linux-gnu` targets now require minimum kernel 2.6.32 and glibc 2.11.][74163]
3612 - [Added the `rustc-docs` component.][75560] This allows you to install
3613 and read the documentation for the compiler internal APIs. (Currently only
3614 available for `x86_64-unknown-linux-gnu`.)
3615
3616 Internal Only
3617 --------
3618
3619 - [Improved default settings for bootstrapping in `x.py`.][73964] You can read details about this change in the ["Changes to `x.py` defaults"](https://blog.rust-lang.org/inside-rust/2020/08/30/changes-to-x-py-defaults.html) post on the Inside Rust blog.
3620
3621 [1.47.0-cfg]: https://docs.microsoft.com/en-us/windows/win32/secbp/control-flow-guard
3622 [75048]: https://github.com/rust-lang/rust/pull/75048/
3623 [74163]: https://github.com/rust-lang/rust/pull/74163/
3624 [71237]: https://github.com/rust-lang/rust/pull/71237/
3625 [74869]: https://github.com/rust-lang/rust/pull/74869/
3626 [73858]: https://github.com/rust-lang/rust/pull/73858/
3627 [75716]: https://github.com/rust-lang/rust/pull/75716/
3628 [75560]: https://github.com/rust-lang/rust/pull/75560/
3629 [75568]: https://github.com/rust-lang/rust/pull/75568/
3630 [75366]: https://github.com/rust-lang/rust/pull/75366/
3631 [75204]: https://github.com/rust-lang/rust/pull/75204/
3632 [74650]: https://github.com/rust-lang/rust/pull/74650/
3633 [74419]: https://github.com/rust-lang/rust/pull/74419/
3634 [73964]: https://github.com/rust-lang/rust/pull/73964/
3635 [74021]: https://github.com/rust-lang/rust/pull/74021/
3636 [74060]: https://github.com/rust-lang/rust/pull/74060/
3637 [73893]: https://github.com/rust-lang/rust/pull/73893/
3638 [73526]: https://github.com/rust-lang/rust/pull/73526/
3639 [73583]: https://github.com/rust-lang/rust/pull/73583/
3640 [73084]: https://github.com/rust-lang/rust/pull/73084/
3641 [73197]: https://github.com/rust-lang/rust/pull/73197/
3642 [cargo/8456]: https://github.com/rust-lang/cargo/pull/8456/
3643 [cargo/8478]: https://github.com/rust-lang/cargo/pull/8478/
3644 [cargo/8485]: https://github.com/rust-lang/cargo/pull/8485/
3645 [cargo/8500]: https://github.com/rust-lang/cargo/pull/8500/
3646 [cargo/8571]: https://github.com/rust-lang/cargo/pull/8571/
3647 [`Ident::new_raw`]: https://doc.rust-lang.org/nightly/proc_macro/struct.Ident.html#method.new_raw
3648 [`Range::is_empty`]: https://doc.rust-lang.org/nightly/std/ops/struct.Range.html#method.is_empty
3649 [`RangeInclusive::is_empty`]: https://doc.rust-lang.org/nightly/std/ops/struct.RangeInclusive.html#method.is_empty
3650 [`Result::as_deref_mut`]: https://doc.rust-lang.org/nightly/std/result/enum.Result.html#method.as_deref_mut
3651 [`Result::as_deref`]: https://doc.rust-lang.org/nightly/std/result/enum.Result.html#method.as_deref
3652 [`Vec::leak`]: https://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.leak
3653 [`f32::TAU`]: https://doc.rust-lang.org/nightly/std/f32/consts/constant.TAU.html
3654 [`f64::TAU`]: https://doc.rust-lang.org/nightly/std/f64/consts/constant.TAU.html
3655 [`pointer::offset_from`]: https://doc.rust-lang.org/nightly/std/primitive.pointer.html#method.offset_from
3656
3657
3658 Version 1.46.0 (2020-08-27)
3659 ==========================
3660
3661 Language
3662 --------
3663 - [`if`, `match`, and `loop` expressions can now be used in const functions.][72437]
3664 - [Additionally you are now also able to coerce and cast to slices (`&[T]`) in
3665 const functions.][73862]
3666 - [The `#[track_caller]` attribute can now be added to functions to use the
3667 function's caller's location information for panic messages.][72445]
3668 - [Recursively indexing into tuples no longer needs parentheses.][71322] E.g.
3669 `x.0.0` over `(x.0).0`.
3670 - [`mem::transmute` can now be used in statics and constants.][72920] **Note**
3671 You currently can't use `mem::transmute` in constant functions.
3672
3673 Compiler
3674 --------
3675 - [You can now use the `cdylib` target on Apple iOS and tvOS platforms.][73516]
3676 - [Enabled static "Position Independent Executables" by default
3677 for `x86_64-unknown-linux-musl`.][70740]
3678
3679 Libraries
3680 ---------
3681 - [`mem::forget` is now a `const fn`.][73887]
3682 - [`String` now implements `From<char>`.][73466]
3683 - [The `leading_ones`, and `trailing_ones` methods have been stabilised for all
3684 integer types.][73032]
3685 - [`vec::IntoIter<T>` now implements `AsRef<[T]>`.][72583]
3686 - [All non-zero integer types (`NonZeroU8`) now implement `TryFrom` for their
3687 zero-able equivalent (e.g. `TryFrom<u8>`).][72717]
3688 - [`&[T]` and `&mut [T]` now implement `PartialEq<Vec<T>>`.][71660]
3689 - [`(String, u16)` now implements `ToSocketAddrs`.][73007]
3690 - [`vec::Drain<'_, T>` now implements `AsRef<[T]>`.][72584]
3691
3692 Stabilized APIs
3693 ---------------
3694 - [`Option::zip`]
3695 - [`vec::Drain::as_slice`]
3696
3697 Cargo
3698 -----
3699 Added a number of new environment variables that are now available when
3700 compiling your crate.
3701
3702 - [`CARGO_BIN_NAME` and `CARGO_CRATE_NAME`][cargo/8270] Providing the name of
3703 the specific binary being compiled and the name of the crate.
3704 - [`CARGO_PKG_LICENSE`][cargo/8325] The license from the manifest of the package.
3705 - [`CARGO_PKG_LICENSE_FILE`][cargo/8387] The path to the license file.
3706
3707 Compatibility Notes
3708 -------------------
3709 - [The target configuration option `abi_blacklist` has been renamed
3710 to `unsupported_abis`.][74150] The old name will still continue to work.
3711 - [Rustc will now warn if you cast a C-like enum that implements `Drop`.][72331]
3712 This was previously accepted but will become a hard error in a future release.
3713 - [Rustc will fail to compile if you have a struct with
3714 `#[repr(i128)]` or `#[repr(u128)]`.][74109] This representation is currently only
3715 allowed on `enum`s.
3716 - [Tokens passed to `macro_rules!` are now always captured.][73293] This helps
3717 ensure that spans have the correct information, and may cause breakage if you
3718 were relying on receiving spans with dummy information.
3719 - [The InnoSetup installer for Windows is no longer available.][72569] This was
3720 a legacy installer that was replaced by a MSI installer a few years ago but
3721 was still being built.
3722 - [`{f32, f64}::asinh` now returns the correct values for negative numbers.][72486]
3723 - [Rustc will no longer accept overlapping trait implementations that only
3724 differ in how the lifetime was bound.][72493]
3725 - [Rustc now correctly relates the lifetime of an existential associated
3726 type.][71896] This fixes some edge cases where `rustc` would erroneously allow
3727 you to pass a shorter lifetime than expected.
3728 - [Rustc now dynamically links to `libz` (also called `zlib`) on Linux.][74420]
3729 The library will need to be installed for `rustc` to work, even though we
3730 expect it to be already available on most systems.
3731 - [Tests annotated with `#[should_panic]` are broken on ARMv7 while running
3732 under QEMU.][74820]
3733 - [Pretty printing of some tokens in procedural macros changed.][75453] The
3734 exact output returned by rustc's pretty printing is an unstable
3735 implementation detail: we recommend any macro relying on it to switch to a
3736 more robust parsing system.
3737
3738 [75453]: https://github.com/rust-lang/rust/issues/75453/
3739 [74820]: https://github.com/rust-lang/rust/issues/74820/
3740 [74420]: https://github.com/rust-lang/rust/issues/74420/
3741 [74109]: https://github.com/rust-lang/rust/pull/74109/
3742 [74150]: https://github.com/rust-lang/rust/pull/74150/
3743 [73862]: https://github.com/rust-lang/rust/pull/73862/
3744 [73887]: https://github.com/rust-lang/rust/pull/73887/
3745 [73466]: https://github.com/rust-lang/rust/pull/73466/
3746 [73516]: https://github.com/rust-lang/rust/pull/73516/
3747 [73293]: https://github.com/rust-lang/rust/pull/73293/
3748 [73007]: https://github.com/rust-lang/rust/pull/73007/
3749 [73032]: https://github.com/rust-lang/rust/pull/73032/
3750 [72920]: https://github.com/rust-lang/rust/pull/72920/
3751 [72569]: https://github.com/rust-lang/rust/pull/72569/
3752 [72583]: https://github.com/rust-lang/rust/pull/72583/
3753 [72584]: https://github.com/rust-lang/rust/pull/72584/
3754 [72717]: https://github.com/rust-lang/rust/pull/72717/
3755 [72437]: https://github.com/rust-lang/rust/pull/72437/
3756 [72445]: https://github.com/rust-lang/rust/pull/72445/
3757 [72486]: https://github.com/rust-lang/rust/pull/72486/
3758 [72493]: https://github.com/rust-lang/rust/pull/72493/
3759 [72331]: https://github.com/rust-lang/rust/pull/72331/
3760 [71896]: https://github.com/rust-lang/rust/pull/71896/
3761 [71660]: https://github.com/rust-lang/rust/pull/71660/
3762 [71322]: https://github.com/rust-lang/rust/pull/71322/
3763 [70740]: https://github.com/rust-lang/rust/pull/70740/
3764 [cargo/8270]: https://github.com/rust-lang/cargo/pull/8270/
3765 [cargo/8325]: https://github.com/rust-lang/cargo/pull/8325/
3766 [cargo/8387]: https://github.com/rust-lang/cargo/pull/8387/
3767 [`Option::zip`]: https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.zip
3768 [`vec::Drain::as_slice`]: https://doc.rust-lang.org/stable/std/vec/struct.Drain.html#method.as_slice
3769
3770
3771 Version 1.45.2 (2020-08-03)
3772 ==========================
3773
3774 * [Fix bindings in tuple struct patterns][74954]
3775 * [Fix track_caller integration with trait objects][74784]
3776
3777 [74954]: https://github.com/rust-lang/rust/issues/74954
3778 [74784]: https://github.com/rust-lang/rust/issues/74784
3779
3780
3781 Version 1.45.1 (2020-07-30)
3782 ==========================
3783
3784 * [Fix const propagation with references.][73613]
3785 * [rustfmt accepts rustfmt_skip in cfg_attr again.][73078]
3786 * [Avoid spurious implicit region bound.][74509]
3787 * [Install clippy on x.py install][74457]
3788
3789 [73613]: https://github.com/rust-lang/rust/pull/73613
3790 [73078]: https://github.com/rust-lang/rust/issues/73078
3791 [74509]: https://github.com/rust-lang/rust/pull/74509
3792 [74457]: https://github.com/rust-lang/rust/pull/74457
3793
3794
3795 Version 1.45.0 (2020-07-16)
3796 ==========================
3797
3798 Language
3799 --------
3800 - [Out of range float to int conversions using `as` has been defined as a saturating
3801 conversion.][71269] This was previously undefined behaviour, but you can use the
3802 `{f64, f32}::to_int_unchecked` methods to continue using the current behaviour, which
3803 may be desirable in rare performance sensitive situations.
3804 - [`mem::Discriminant<T>` now uses `T`'s discriminant type instead of always
3805 using `u64`.][70705]
3806 - [Function like procedural macros can now be used in expression, pattern, and statement
3807 positions.][68717] This means you can now use a function-like procedural macro
3808 anywhere you can use a declarative (`macro_rules!`) macro.
3809
3810 Compiler
3811 --------
3812 - [You can now override individual target features through the `target-feature`
3813 flag.][72094] E.g. `-C target-feature=+avx2 -C target-feature=+fma` is now
3814 equivalent to `-C target-feature=+avx2,+fma`.
3815 - [Added the `force-unwind-tables` flag.][69984] This option allows
3816 rustc to always generate unwind tables regardless of panic strategy.
3817 - [Added the `embed-bitcode` flag.][71716] This codegen flag allows rustc
3818 to include LLVM bitcode into generated `rlib`s (this is on by default).
3819 - [Added the `tiny` value to the `code-model` codegen flag.][72397]
3820 - [Added tier 3 support\* for the `mipsel-sony-psp` target.][72062]
3821 - [Added tier 3 support for the `thumbv7a-uwp-windows-msvc` target.][72133]
3822 - [Upgraded to LLVM 10.][67759]
3823
3824 \* Refer to Rust's [platform support page][platform-support-doc] for more
3825 information on Rust's tiered platform support.
3826
3827
3828 Libraries
3829 ---------
3830 - [`net::{SocketAddr, SocketAddrV4, SocketAddrV6}` now implements `PartialOrd`
3831 and `Ord`.][72239]
3832 - [`proc_macro::TokenStream` now implements `Default`.][72234]
3833 - [You can now use `char` with
3834 `ops::{Range, RangeFrom, RangeFull, RangeInclusive, RangeTo}` to iterate over
3835 a range of codepoints.][72413] E.g.
3836 you can now write the following;
3837 ```rust
3838 for ch in 'a'..='z' {
3839 print!("{}", ch);
3840 }
3841 println!();
3842 // Prints "abcdefghijklmnopqrstuvwxyz"
3843 ```
3844 - [`OsString` now implements `FromStr`.][71662]
3845 - [The `saturating_neg` method has been added to all signed integer primitive
3846 types, and the `saturating_abs` method has been added for all integer
3847 primitive types.][71886]
3848 - [`Arc<T>`, `Rc<T>` now implement `From<Cow<'_, T>>`, and `Box` now
3849 implements `From<Cow>` when `T` is `[T: Copy]`, `str`, `CStr`, `OsStr`,
3850 or `Path`.][71447]
3851 - [`Box<[T]>` now implements `From<[T; N]>`.][71095]
3852 - [`BitOr` and `BitOrAssign` are implemented for all `NonZero`
3853 integer types.][69813]
3854 - [The `fetch_min`, and `fetch_max` methods have been added to all atomic
3855 integer types.][72324]
3856 - [The `fetch_update` method has been added to all atomic integer types.][71843]
3857
3858 Stabilized APIs
3859 ---------------
3860 - [`Arc::as_ptr`]
3861 - [`BTreeMap::remove_entry`]
3862 - [`Rc::as_ptr`]
3863 - [`rc::Weak::as_ptr`]
3864 - [`rc::Weak::from_raw`]
3865 - [`rc::Weak::into_raw`]
3866 - [`str::strip_prefix`]
3867 - [`str::strip_suffix`]
3868 - [`sync::Weak::as_ptr`]
3869 - [`sync::Weak::from_raw`]
3870 - [`sync::Weak::into_raw`]
3871 - [`char::UNICODE_VERSION`]
3872 - [`Span::resolved_at`]
3873 - [`Span::located_at`]
3874 - [`Span::mixed_site`]
3875 - [`unix::process::CommandExt::arg0`]
3876
3877 Cargo
3878 -----
3879
3880 - [Cargo uses the `embed-bitcode` flag to optimize disk usage and build
3881 time.][cargo/8066]
3882
3883 Misc
3884 ----
3885 - [Rustdoc now supports strikethrough text in Markdown.][71928] E.g.
3886 `~~outdated information~~` becomes "~~outdated information~~".
3887 - [Added an emoji to Rustdoc's deprecated API message.][72014]
3888
3889 Compatibility Notes
3890 -------------------
3891 - [Trying to self initialize a static value (that is creating a value using
3892 itself) is unsound and now causes a compile error.][71140]
3893 - [`{f32, f64}::powi` now returns a slightly different value on Windows.][73420]
3894 This is due to changes in LLVM's intrinsics which `{f32, f64}::powi` uses.
3895 - [Rustdoc's CLI's extra error exit codes have been removed.][71900] These were
3896 previously undocumented and not intended for public use. Rustdoc still provides
3897 a non-zero exit code on errors.
3898 - [Rustc's `lto` flag is incompatible with the new `embed-bitcode=no`.][71848]
3899 This may cause issues if LTO is enabled through `RUSTFLAGS` or `cargo rustc`
3900 flags while cargo is adding `embed-bitcode` itself. The recommended way to
3901 control LTO is with Cargo profiles, either in `Cargo.toml` or `.cargo/config`,
3902 or by setting `CARGO_PROFILE_<name>_LTO` in the environment.
3903
3904 Internals Only
3905 --------------
3906 - [Make clippy a git subtree instead of a git submodule][70655]
3907 - [Unify the undo log of all snapshot types][69464]
3908
3909 [71848]: https://github.com/rust-lang/rust/issues/71848/
3910 [73420]: https://github.com/rust-lang/rust/issues/73420/
3911 [72324]: https://github.com/rust-lang/rust/pull/72324/
3912 [71843]: https://github.com/rust-lang/rust/pull/71843/
3913 [71886]: https://github.com/rust-lang/rust/pull/71886/
3914 [72234]: https://github.com/rust-lang/rust/pull/72234/
3915 [72239]: https://github.com/rust-lang/rust/pull/72239/
3916 [72397]: https://github.com/rust-lang/rust/pull/72397/
3917 [72413]: https://github.com/rust-lang/rust/pull/72413/
3918 [72014]: https://github.com/rust-lang/rust/pull/72014/
3919 [72062]: https://github.com/rust-lang/rust/pull/72062/
3920 [72094]: https://github.com/rust-lang/rust/pull/72094/
3921 [72133]: https://github.com/rust-lang/rust/pull/72133/
3922 [67759]: https://github.com/rust-lang/rust/pull/67759/
3923 [71900]: https://github.com/rust-lang/rust/pull/71900/
3924 [71928]: https://github.com/rust-lang/rust/pull/71928/
3925 [71662]: https://github.com/rust-lang/rust/pull/71662/
3926 [71716]: https://github.com/rust-lang/rust/pull/71716/
3927 [71447]: https://github.com/rust-lang/rust/pull/71447/
3928 [71269]: https://github.com/rust-lang/rust/pull/71269/
3929 [71095]: https://github.com/rust-lang/rust/pull/71095/
3930 [71140]: https://github.com/rust-lang/rust/pull/71140/
3931 [70655]: https://github.com/rust-lang/rust/pull/70655/
3932 [70705]: https://github.com/rust-lang/rust/pull/70705/
3933 [69984]: https://github.com/rust-lang/rust/pull/69984/
3934 [69813]: https://github.com/rust-lang/rust/pull/69813/
3935 [69464]: https://github.com/rust-lang/rust/pull/69464/
3936 [68717]: https://github.com/rust-lang/rust/pull/68717/
3937 [cargo/8066]: https://github.com/rust-lang/cargo/pull/8066
3938 [`Arc::as_ptr`]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#method.as_ptr
3939 [`BTreeMap::remove_entry`]: https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html#method.remove_entry
3940 [`Rc::as_ptr`]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#method.as_ptr
3941 [`rc::Weak::as_ptr`]: https://doc.rust-lang.org/stable/std/rc/struct.Weak.html#method.as_ptr
3942 [`rc::Weak::from_raw`]: https://doc.rust-lang.org/stable/std/rc/struct.Weak.html#method.from_raw
3943 [`rc::Weak::into_raw`]: https://doc.rust-lang.org/stable/std/rc/struct.Weak.html#method.into_raw
3944 [`sync::Weak::as_ptr`]: https://doc.rust-lang.org/stable/std/sync/struct.Weak.html#method.as_ptr
3945 [`sync::Weak::from_raw`]: https://doc.rust-lang.org/stable/std/sync/struct.Weak.html#method.from_raw
3946 [`sync::Weak::into_raw`]: https://doc.rust-lang.org/stable/std/sync/struct.Weak.html#method.into_raw
3947 [`str::strip_prefix`]: https://doc.rust-lang.org/stable/std/primitive.str.html#method.strip_prefix
3948 [`str::strip_suffix`]: https://doc.rust-lang.org/stable/std/primitive.str.html#method.strip_suffix
3949 [`char::UNICODE_VERSION`]: https://doc.rust-lang.org/stable/std/char/constant.UNICODE_VERSION.html
3950 [`Span::resolved_at`]: https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.resolved_at
3951 [`Span::located_at`]: https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.located_at
3952 [`Span::mixed_site`]: https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.mixed_site
3953 [`unix::process::CommandExt::arg0`]: https://doc.rust-lang.org/std/os/unix/process/trait.CommandExt.html#tymethod.arg0
3954
3955
3956 Version 1.44.1 (2020-06-18)
3957 ===========================
3958
3959 * [rustfmt accepts rustfmt_skip in cfg_attr again.][73078]
3960 * [Don't hash executable filenames on apple platforms, fixing backtraces.][cargo/8329]
3961 * [Fix crashes when finding backtrace on macOS.][71397]
3962 * [Clippy applies lint levels into different files.][clippy/5356]
3963
3964 [71397]: https://github.com/rust-lang/rust/issues/71397
3965 [73078]: https://github.com/rust-lang/rust/issues/73078
3966 [cargo/8329]: https://github.com/rust-lang/cargo/pull/8329
3967 [clippy/5356]: https://github.com/rust-lang/rust-clippy/issues/5356
3968
3969
3970 Version 1.44.0 (2020-06-04)
3971 ==========================
3972
3973 Language
3974 --------
3975 - [You can now use `async/.await` with `#[no_std]` enabled.][69033]
3976 - [Added the `unused_braces` lint.][70081]
3977
3978 **Syntax-only changes**
3979
3980 - [Expansion-driven outline module parsing][69838]
3981 ```rust
3982 #[cfg(FALSE)]
3983 mod foo {
3984 mod bar {
3985 mod baz; // `foo/bar/baz.rs` doesn't exist, but no error!
3986 }
3987 }
3988 ```
3989
3990 These are still rejected semantically, so you will likely receive an error but
3991 these changes can be seen and parsed by macros and conditional compilation.
3992
3993 Compiler
3994 --------
3995 - [Rustc now respects the `-C codegen-units` flag in incremental mode.][70156]
3996 Additionally when in incremental mode rustc defaults to 256 codegen units.
3997 - [Refactored `catch_unwind` to have zero-cost, unless unwinding is enabled and
3998 a panic is thrown.][67502]
3999 - [Added tier 3\* support for the `aarch64-unknown-none` and
4000 `aarch64-unknown-none-softfloat` targets.][68334]
4001 - [Added tier 3 support for `arm64-apple-tvos` and
4002 `x86_64-apple-tvos` targets.][68191]
4003
4004
4005 Libraries
4006 ---------
4007 - [Special cased `vec![]` to map directly to `Vec::new()`.][70632] This allows
4008 `vec![]` to be able to be used in `const` contexts.
4009 - [`convert::Infallible` now implements `Hash`.][70281]
4010 - [`OsString` now implements `DerefMut` and `IndexMut` returning
4011 a `&mut OsStr`.][70048]
4012 - [Unicode 13 is now supported.][69929]
4013 - [`String` now implements `From<&mut str>`.][69661]
4014 - [`IoSlice` now implements `Copy`.][69403]
4015 - [`Vec<T>` now implements `From<[T; N]>`.][68692] Where `N` is at most 32.
4016 - [`proc_macro::LexError` now implements `fmt::Display` and `Error`.][68899]
4017 - [`from_le_bytes`, `to_le_bytes`, `from_be_bytes`, `to_be_bytes`,
4018 `from_ne_bytes`, and `to_ne_bytes` methods are now `const` for all
4019 integer types.][69373]
4020
4021 Stabilized APIs
4022 ---------------
4023 - [`PathBuf::with_capacity`]
4024 - [`PathBuf::capacity`]
4025 - [`PathBuf::clear`]
4026 - [`PathBuf::reserve`]
4027 - [`PathBuf::reserve_exact`]
4028 - [`PathBuf::shrink_to_fit`]
4029 - [`f32::to_int_unchecked`]
4030 - [`f64::to_int_unchecked`]
4031 - [`Layout::align_to`]
4032 - [`Layout::pad_to_align`]
4033 - [`Layout::array`]
4034 - [`Layout::extend`]
4035
4036 Cargo
4037 -----
4038 - [Added the `cargo tree` command which will print a tree graph of
4039 your dependencies.][cargo/8062] E.g.
4040 ```
4041 mdbook v0.3.2 (/Users/src/rust/mdbook)
4042 ├── ammonia v3.0.0
4043 │ ├── html5ever v0.24.0
4044 │ │ ├── log v0.4.8
4045 │ │ │ └── cfg-if v0.1.9
4046 │ │ ├── mac v0.1.1
4047 │ │ └── markup5ever v0.9.0
4048 │ │ ├── log v0.4.8 (*)
4049 │ │ ├── phf v0.7.24
4050 │ │ │ └── phf_shared v0.7.24
4051 │ │ │ ├── siphasher v0.2.3
4052 │ │ │ └── unicase v1.4.2
4053 │ │ │ [build-dependencies]
4054 │ │ │ └── version_check v0.1.5
4055 ...
4056 ```
4057 You can also display dependencies on multiple versions of the same crate with
4058 `cargo tree -d` (short for `cargo tree --duplicates`).
4059
4060 Misc
4061 ----
4062 - [Rustdoc now allows you to specify `--crate-version` to have rustdoc include
4063 the version in the sidebar.][69494]
4064
4065 Compatibility Notes
4066 -------------------
4067 - [Rustc now correctly generates static libraries on Windows GNU targets with
4068 the `.a` extension, rather than the previous `.lib`.][70937]
4069 - [Removed the `-C no_integrated_as` flag from rustc.][70345]
4070 - [The `file_name` property in JSON output of macro errors now points the actual
4071 source file rather than the previous format of `<NAME macros>`.][70969]
4072 **Note:** this may not point to a file that actually exists on the user's system.
4073 - [The minimum required external LLVM version has been bumped to LLVM 8.][71147]
4074 - [`mem::{zeroed, uninitialised}` will now panic when used with types that do
4075 not allow zero initialization such as `NonZeroU8`.][66059] This was
4076 previously a warning.
4077 - [In 1.45.0 (the next release) converting a `f64` to `u32` using the `as`
4078 operator has been defined as a saturating operation.][71269] This was previously
4079 undefined behaviour, but you can use the `{f64, f32}::to_int_unchecked` methods to
4080 continue using the current behaviour, which may be desirable in rare performance
4081 sensitive situations.
4082
4083 Internal Only
4084 -------------
4085 These changes provide no direct user facing benefits, but represent significant
4086 improvements to the internals and overall performance of rustc and
4087 related tools.
4088
4089 - [dep_graph Avoid allocating a set on when the number reads are small.][69778]
4090 - [Replace big JS dict with JSON parsing.][71250]
4091
4092 [69373]: https://github.com/rust-lang/rust/pull/69373/
4093 [66059]: https://github.com/rust-lang/rust/pull/66059/
4094 [68191]: https://github.com/rust-lang/rust/pull/68191/
4095 [68899]: https://github.com/rust-lang/rust/pull/68899/
4096 [71147]: https://github.com/rust-lang/rust/pull/71147/
4097 [71250]: https://github.com/rust-lang/rust/pull/71250/
4098 [70937]: https://github.com/rust-lang/rust/pull/70937/
4099 [70969]: https://github.com/rust-lang/rust/pull/70969/
4100 [70632]: https://github.com/rust-lang/rust/pull/70632/
4101 [70281]: https://github.com/rust-lang/rust/pull/70281/
4102 [70345]: https://github.com/rust-lang/rust/pull/70345/
4103 [70048]: https://github.com/rust-lang/rust/pull/70048/
4104 [70081]: https://github.com/rust-lang/rust/pull/70081/
4105 [70156]: https://github.com/rust-lang/rust/pull/70156/
4106 [71269]: https://github.com/rust-lang/rust/pull/71269/
4107 [69838]: https://github.com/rust-lang/rust/pull/69838/
4108 [69929]: https://github.com/rust-lang/rust/pull/69929/
4109 [69661]: https://github.com/rust-lang/rust/pull/69661/
4110 [69778]: https://github.com/rust-lang/rust/pull/69778/
4111 [69494]: https://github.com/rust-lang/rust/pull/69494/
4112 [69403]: https://github.com/rust-lang/rust/pull/69403/
4113 [69033]: https://github.com/rust-lang/rust/pull/69033/
4114 [68692]: https://github.com/rust-lang/rust/pull/68692/
4115 [68334]: https://github.com/rust-lang/rust/pull/68334/
4116 [67502]: https://github.com/rust-lang/rust/pull/67502/
4117 [cargo/8062]: https://github.com/rust-lang/cargo/pull/8062/
4118 [`PathBuf::with_capacity`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.with_capacity
4119 [`PathBuf::capacity`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.capacity
4120 [`PathBuf::clear`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.clear
4121 [`PathBuf::reserve`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.reserve
4122 [`PathBuf::reserve_exact`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.reserve_exact
4123 [`PathBuf::shrink_to_fit`]: https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.shrink_to_fit
4124 [`f32::to_int_unchecked`]: https://doc.rust-lang.org/std/primitive.f32.html#method.to_int_unchecked
4125 [`f64::to_int_unchecked`]: https://doc.rust-lang.org/std/primitive.f64.html#method.to_int_unchecked
4126 [`Layout::align_to`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html#method.align_to
4127 [`Layout::pad_to_align`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html#method.pad_to_align
4128 [`Layout::array`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html#method.array
4129 [`Layout::extend`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html#method.extend
4130
4131
4132 Version 1.43.1 (2020-05-07)
4133 ===========================
4134
4135 * [Updated openssl-src to 1.1.1g for CVE-2020-1967.][71430]
4136 * [Fixed the stabilization of AVX-512 features.][71473]
4137 * [Fixed `cargo package --list` not working with unpublished dependencies.][cargo/8151]
4138
4139 [71430]: https://github.com/rust-lang/rust/pull/71430
4140 [71473]: https://github.com/rust-lang/rust/issues/71473
4141 [cargo/8151]: https://github.com/rust-lang/cargo/issues/8151
4142
4143
4144 Version 1.43.0 (2020-04-23)
4145 ==========================
4146
4147 Language
4148 --------
4149 - [Fixed using binary operations with `&{number}` (e.g. `&1.0`) not having
4150 the type inferred correctly.][68129]
4151 - [Attributes such as `#[cfg()]` can now be used on `if` expressions.][69201]
4152
4153 **Syntax only changes**
4154 - [Allow `type Foo: Ord` syntactically.][69361]
4155 - [Fuse associated and extern items up to defaultness.][69194]
4156 - [Syntactically allow `self` in all `fn` contexts.][68764]
4157 - [Merge `fn` syntax + cleanup item parsing.][68728]
4158 - [`item` macro fragments can be interpolated into `trait`s, `impl`s, and `extern` blocks.][69366]
4159 For example, you may now write:
4160 ```rust
4161 macro_rules! mac_trait {
4162 ($i:item) => {
4163 trait T { $i }
4164 }
4165 }
4166 mac_trait! {
4167 fn foo() {}
4168 }
4169 ```
4170
4171 These are still rejected *semantically*, so you will likely receive an error but
4172 these changes can be seen and parsed by macros and
4173 conditional compilation.
4174
4175
4176 Compiler
4177 --------
4178 - [You can now pass multiple lint flags to rustc to override the previous
4179 flags.][67885] For example; `rustc -D unused -A unused-variables` denies
4180 everything in the `unused` lint group except `unused-variables` which
4181 is explicitly allowed. However, passing `rustc -A unused-variables -D unused` denies
4182 everything in the `unused` lint group **including** `unused-variables` since
4183 the allow flag is specified before the deny flag (and therefore overridden).
4184 - [rustc will now prefer your system MinGW libraries over its bundled libraries
4185 if they are available on `windows-gnu`.][67429]
4186 - [rustc now buffers errors/warnings printed in JSON.][69227]
4187
4188 Libraries
4189 ---------
4190 - [`Arc<[T; N]>`, `Box<[T; N]>`, and `Rc<[T; N]>`, now implement
4191 `TryFrom<Arc<[T]>>`,`TryFrom<Box<[T]>>`, and `TryFrom<Rc<[T]>>`
4192 respectively.][69538] **Note** These conversions are only available when `N`
4193 is `0..=32`.
4194 - [You can now use associated constants on floats and integers directly, rather
4195 than having to import the module.][68952] e.g. You can now write `u32::MAX` or
4196 `f32::NAN` with no imports.
4197 - [`u8::is_ascii` is now `const`.][68984]
4198 - [`String` now implements `AsMut<str>`.][68742]
4199 - [Added the `primitive` module to `std` and `core`.][67637] This module
4200 reexports Rust's primitive types. This is mainly useful in macros
4201 where you want avoid these types being shadowed.
4202 - [Relaxed some of the trait bounds on `HashMap` and `HashSet`.][67642]
4203 - [`string::FromUtf8Error` now implements `Clone + Eq`.][68738]
4204
4205 Stabilized APIs
4206 ---------------
4207 - [`Once::is_completed`]
4208 - [`f32::LOG10_2`]
4209 - [`f32::LOG2_10`]
4210 - [`f64::LOG10_2`]
4211 - [`f64::LOG2_10`]
4212 - [`iter::once_with`]
4213
4214 Cargo
4215 -----
4216 - [You can now set config `[profile]`s in your `.cargo/config`, or through
4217 your environment.][cargo/7823]
4218 - [Cargo will now set `CARGO_BIN_EXE_<name>` pointing to a binary's
4219 executable path when running integration tests or benchmarks.][cargo/7697]
4220 `<name>` is the name of your binary as-is e.g. If you wanted the executable
4221 path for a binary named `my-program`you would use `env!("CARGO_BIN_EXE_my-program")`.
4222
4223 Misc
4224 ----
4225 - [Certain checks in the `const_err` lint were deemed unrelated to const
4226 evaluation][69185], and have been moved to the `unconditional_panic` and
4227 `arithmetic_overflow` lints.
4228
4229 Compatibility Notes
4230 -------------------
4231
4232 - [Having trailing syntax in the `assert!` macro is now a hard error.][69548] This
4233 has been a warning since 1.36.0.
4234 - [Fixed `Self` not having the correctly inferred type.][69340] This incorrectly
4235 led to some instances being accepted, and now correctly emits a hard error.
4236
4237 [69340]: https://github.com/rust-lang/rust/pull/69340
4238
4239 Internal Only
4240 -------------
4241 These changes provide no direct user facing benefits, but represent significant
4242 improvements to the internals and overall performance of `rustc` and
4243 related tools.
4244
4245 - [All components are now built with `opt-level=3` instead of `2`.][67878]
4246 - [Improved how rustc generates drop code.][67332]
4247 - [Improved performance from `#[inline]`-ing certain hot functions.][69256]
4248 - [traits: preallocate 2 Vecs of known initial size][69022]
4249 - [Avoid exponential behaviour when relating types][68772]
4250 - [Skip `Drop` terminators for enum variants without drop glue][68943]
4251 - [Improve performance of coherence checks][68966]
4252 - [Deduplicate types in the generator witness][68672]
4253 - [Invert control in struct_lint_level.][68725]
4254
4255 [67332]: https://github.com/rust-lang/rust/pull/67332/
4256 [67429]: https://github.com/rust-lang/rust/pull/67429/
4257 [67637]: https://github.com/rust-lang/rust/pull/67637/
4258 [67642]: https://github.com/rust-lang/rust/pull/67642/
4259 [67878]: https://github.com/rust-lang/rust/pull/67878/
4260 [67885]: https://github.com/rust-lang/rust/pull/67885/
4261 [68129]: https://github.com/rust-lang/rust/pull/68129/
4262 [68672]: https://github.com/rust-lang/rust/pull/68672/
4263 [68725]: https://github.com/rust-lang/rust/pull/68725/
4264 [68728]: https://github.com/rust-lang/rust/pull/68728/
4265 [68738]: https://github.com/rust-lang/rust/pull/68738/
4266 [68742]: https://github.com/rust-lang/rust/pull/68742/
4267 [68764]: https://github.com/rust-lang/rust/pull/68764/
4268 [68772]: https://github.com/rust-lang/rust/pull/68772/
4269 [68943]: https://github.com/rust-lang/rust/pull/68943/
4270 [68952]: https://github.com/rust-lang/rust/pull/68952/
4271 [68966]: https://github.com/rust-lang/rust/pull/68966/
4272 [68984]: https://github.com/rust-lang/rust/pull/68984/
4273 [69022]: https://github.com/rust-lang/rust/pull/69022/
4274 [69185]: https://github.com/rust-lang/rust/pull/69185/
4275 [69194]: https://github.com/rust-lang/rust/pull/69194/
4276 [69201]: https://github.com/rust-lang/rust/pull/69201/
4277 [69227]: https://github.com/rust-lang/rust/pull/69227/
4278 [69548]: https://github.com/rust-lang/rust/pull/69548/
4279 [69256]: https://github.com/rust-lang/rust/pull/69256/
4280 [69361]: https://github.com/rust-lang/rust/pull/69361/
4281 [69366]: https://github.com/rust-lang/rust/pull/69366/
4282 [69538]: https://github.com/rust-lang/rust/pull/69538/
4283 [cargo/7823]: https://github.com/rust-lang/cargo/pull/7823
4284 [cargo/7697]: https://github.com/rust-lang/cargo/pull/7697
4285 [`Once::is_completed`]: https://doc.rust-lang.org/std/sync/struct.Once.html#method.is_completed
4286 [`f32::LOG10_2`]: https://doc.rust-lang.org/std/f32/consts/constant.LOG10_2.html
4287 [`f32::LOG2_10`]: https://doc.rust-lang.org/std/f32/consts/constant.LOG2_10.html
4288 [`f64::LOG10_2`]: https://doc.rust-lang.org/std/f64/consts/constant.LOG10_2.html
4289 [`f64::LOG2_10`]: https://doc.rust-lang.org/std/f64/consts/constant.LOG2_10.html
4290 [`iter::once_with`]: https://doc.rust-lang.org/std/iter/fn.once_with.html
4291
4292
4293 Version 1.42.0 (2020-03-12)
4294 ==========================
4295
4296 Language
4297 --------
4298 - [You can now use the slice pattern syntax with subslices.][67712] e.g.
4299 ```rust
4300 fn foo(words: &[&str]) {
4301 match words {
4302 ["Hello", "World", "!", ..] => println!("Hello World!"),
4303 ["Foo", "Bar", ..] => println!("Baz"),
4304 rest => println!("{:?}", rest),
4305 }
4306 }
4307 ```
4308 - [You can now use `#[repr(transparent)]` on univariant `enum`s.][68122] Meaning
4309 that you can create an enum that has the exact layout and ABI of the type
4310 it contains.
4311 - [You can now use outer attribute procedural macros on inline modules.][64273]
4312 - [There are some *syntax-only* changes:][67131]
4313 - `default` is syntactically allowed before items in `trait` definitions.
4314 - Items in `impl`s (i.e. `const`s, `type`s, and `fn`s) may syntactically
4315 leave out their bodies in favor of `;`.
4316 - Bounds on associated types in `impl`s are now syntactically allowed
4317 (e.g. `type Foo: Ord;`).
4318 - `...` (the C-variadic type) may occur syntactically directly as the type of
4319 any function parameter.
4320
4321 These are still rejected *semantically*, so you will likely receive an error
4322 but these changes can be seen and parsed by procedural macros and
4323 conditional compilation.
4324
4325 Compiler
4326 --------
4327 - [Added tier 2\* support for `armv7a-none-eabi`.][68253]
4328 - [Added tier 2 support for `riscv64gc-unknown-linux-gnu`.][68339]
4329 - [`Option::{expect,unwrap}` and
4330 `Result::{expect, expect_err, unwrap, unwrap_err}` now produce panic messages
4331 pointing to the location where they were called, rather than
4332 `core`'s internals. ][67887]
4333
4334 \* Refer to Rust's [platform support page][platform-support-doc] for more
4335 information on Rust's tiered platform support.
4336
4337 Libraries
4338 ---------
4339 - [`iter::Empty<T>` now implements `Send` and `Sync` for any `T`.][68348]
4340 - [`Pin::{map_unchecked, map_unchecked_mut}` no longer require the return type
4341 to implement `Sized`.][67935]
4342 - [`io::Cursor` now derives `PartialEq` and `Eq`.][67233]
4343 - [`Layout::new` is now `const`.][66254]
4344 - [Added Standard Library support for `riscv64gc-unknown-linux-gnu`.][66899]
4345
4346
4347 Stabilized APIs
4348 ---------------
4349 - [`CondVar::wait_while`]
4350 - [`CondVar::wait_timeout_while`]
4351 - [`DebugMap::key`]
4352 - [`DebugMap::value`]
4353 - [`ManuallyDrop::take`]
4354 - [`matches!`]
4355 - [`ptr::slice_from_raw_parts_mut`]
4356 - [`ptr::slice_from_raw_parts`]
4357
4358 Cargo
4359 -----
4360 - [You no longer need to include `extern crate proc_macro;` to be able to
4361 `use proc_macro;` in the `2018` edition.][cargo/7700]
4362
4363 Compatibility Notes
4364 -------------------
4365 - [`Error::description` has been deprecated, and its use will now produce a
4366 warning.][66919] It's recommended to use `Display`/`to_string` instead.
4367
4368 [68253]: https://github.com/rust-lang/rust/pull/68253/
4369 [68348]: https://github.com/rust-lang/rust/pull/68348/
4370 [67935]: https://github.com/rust-lang/rust/pull/67935/
4371 [68339]: https://github.com/rust-lang/rust/pull/68339/
4372 [68122]: https://github.com/rust-lang/rust/pull/68122/
4373 [64273]: https://github.com/rust-lang/rust/pull/64273/
4374 [67712]: https://github.com/rust-lang/rust/pull/67712/
4375 [67887]: https://github.com/rust-lang/rust/pull/67887/
4376 [67131]: https://github.com/rust-lang/rust/pull/67131/
4377 [67233]: https://github.com/rust-lang/rust/pull/67233/
4378 [66899]: https://github.com/rust-lang/rust/pull/66899/
4379 [66919]: https://github.com/rust-lang/rust/pull/66919/
4380 [66254]: https://github.com/rust-lang/rust/pull/66254/
4381 [cargo/7700]: https://github.com/rust-lang/cargo/pull/7700
4382 [`DebugMap::key`]: https://doc.rust-lang.org/stable/std/fmt/struct.DebugMap.html#method.key
4383 [`DebugMap::value`]: https://doc.rust-lang.org/stable/std/fmt/struct.DebugMap.html#method.value
4384 [`ManuallyDrop::take`]: https://doc.rust-lang.org/stable/std/mem/struct.ManuallyDrop.html#method.take
4385 [`matches!`]: https://doc.rust-lang.org/stable/std/macro.matches.html
4386 [`ptr::slice_from_raw_parts_mut`]: https://doc.rust-lang.org/stable/std/ptr/fn.slice_from_raw_parts_mut.html
4387 [`ptr::slice_from_raw_parts`]: https://doc.rust-lang.org/stable/std/ptr/fn.slice_from_raw_parts.html
4388 [`CondVar::wait_while`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.wait_while
4389 [`CondVar::wait_timeout_while`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.wait_timeout_while
4390
4391
4392 Version 1.41.1 (2020-02-27)
4393 ===========================
4394
4395 * [Always check types of static items][69145]
4396 * [Always check lifetime bounds of `Copy` impls][69145]
4397 * [Fix miscompilation in callers of `Layout::repeat`][69225]
4398 * [Rust 1.41.0 was announced as the last Rust release with tier 1 or tier 2 support for 32-bit Apple targets][apple-32bit-drop].
4399 That announcement did not expect a patch release. 1.41.1 also includes release binaries for these targets.
4400
4401 [69225]: https://github.com/rust-lang/rust/issues/69225
4402 [69145]: https://github.com/rust-lang/rust/pull/69145
4403
4404
4405 Version 1.41.0 (2020-01-30)
4406 ===========================
4407
4408 Language
4409 --------
4410
4411 - [You can now pass type parameters to foreign items when implementing
4412 traits.][65879] E.g. You can now write `impl<T> From<Foo> for Vec<T> {}`.
4413 - [You can now arbitrarily nest receiver types in the `self` position.][64325] E.g. you can
4414 now write `fn foo(self: Box<Box<Self>>) {}`. Previously only `Self`, `&Self`,
4415 `&mut Self`, `Arc<Self>`, `Rc<Self>`, and `Box<Self>` were allowed.
4416 - [You can now use any valid identifier in a `format_args` macro.][66847]
4417 Previously identifiers starting with an underscore were not allowed.
4418 - [Visibility modifiers (e.g. `pub`) are now syntactically allowed on trait items and
4419 enum variants.][66183] These are still rejected semantically, but
4420 can be seen and parsed by procedural macros and conditional compilation.
4421 - [You can now define a Rust `extern "C"` function with `Box<T>` and use `T*` as the corresponding
4422 type on the C side.][62514] Please see [the documentation][box-memory-layout] for more information,
4423 including the important caveat about preferring to avoid `Box<T>` in Rust signatures for functions defined in C.
4424
4425 [box-memory-layout]: https://doc.rust-lang.org/std/boxed/index.html#memory-layout
4426
4427 Compiler
4428 --------
4429
4430 - [Rustc will now warn if you have unused loop `'label`s.][66325]
4431 - [Removed support for the `i686-unknown-dragonfly` target.][67255]
4432 - [Added tier 3 support\* for the `riscv64gc-unknown-linux-gnu` target.][66661]
4433 - [You can now pass an arguments file passing the `@path` syntax
4434 to rustc.][66172] Note that the format differs somewhat from what is
4435 found in other tooling; please see [the documentation][argfile-docs] for
4436 more information.
4437 - [You can now provide `--extern` flag without a path, indicating that it is
4438 available from the search path or specified with an `-L` flag.][64882]
4439
4440 \* Refer to Rust's [platform support page][platform-support-doc] for more
4441 information on Rust's tiered platform support.
4442
4443 [argfile-docs]: https://doc.rust-lang.org/nightly/rustc/command-line-arguments.html#path-load-command-line-flags-from-a-path
4444
4445 Libraries
4446 ---------
4447
4448 - [The `core::panic` module is now stable.][66771] It was already stable
4449 through `std`.
4450 - [`NonZero*` numerics now implement `From<NonZero*>` if it's a smaller integer
4451 width.][66277] E.g. `NonZeroU16` now implements `From<NonZeroU8>`.
4452 - [`MaybeUninit<T>` now implements `fmt::Debug`.][65013]
4453
4454 Stabilized APIs
4455 ---------------
4456
4457 - [`Result::map_or`]
4458 - [`Result::map_or_else`]
4459 - [`std::rc::Weak::weak_count`]
4460 - [`std::rc::Weak::strong_count`]
4461 - [`std::sync::Weak::weak_count`]
4462 - [`std::sync::Weak::strong_count`]
4463
4464 Cargo
4465 -----
4466
4467 - [Cargo will now document all the private items for binary crates
4468 by default.][cargo/7593]
4469 - [`cargo-install` will now reinstall the package if it detects that it is out
4470 of date.][cargo/7560]
4471 - [Cargo.lock now uses a more git friendly format that should help to reduce
4472 merge conflicts.][cargo/7579]
4473 - [You can now override specific dependencies's build settings][cargo/7591] E.g.
4474 `[profile.dev.package.image] opt-level = 2` sets the `image` crate's
4475 optimisation level to `2` for debug builds. You can also use
4476 `[profile.<profile>.build-override]` to override build scripts and
4477 their dependencies.
4478
4479 Misc
4480 ----
4481
4482 - [You can now specify `edition` in documentation code blocks to compile the block
4483 for that edition.][66238] E.g. `edition2018` tells rustdoc that the code sample
4484 should be compiled the 2018 edition of Rust.
4485 - [You can now provide custom themes to rustdoc with `--theme`, and check the
4486 current theme with `--check-theme`.][54733]
4487 - [You can use `#[cfg(doc)]` to compile an item when building documentation.][61351]
4488
4489 Compatibility Notes
4490 -------------------
4491
4492 - [As previously announced 1.41 will be the last tier 1 release for 32-bit
4493 Apple targets.][apple-32bit-drop] This means that the source code is still
4494 available to build, but the targets are no longer being tested and release
4495 binaries for those platforms will no longer be distributed by the Rust project.
4496 Please refer to the linked blog post for more information.
4497
4498 [54733]: https://github.com/rust-lang/rust/pull/54733/
4499 [61351]: https://github.com/rust-lang/rust/pull/61351/
4500 [62514]: https://github.com/rust-lang/rust/pull/62514/
4501 [67255]: https://github.com/rust-lang/rust/pull/67255/
4502 [66661]: https://github.com/rust-lang/rust/pull/66661/
4503 [66771]: https://github.com/rust-lang/rust/pull/66771/
4504 [66847]: https://github.com/rust-lang/rust/pull/66847/
4505 [66238]: https://github.com/rust-lang/rust/pull/66238/
4506 [66277]: https://github.com/rust-lang/rust/pull/66277/
4507 [66325]: https://github.com/rust-lang/rust/pull/66325/
4508 [66172]: https://github.com/rust-lang/rust/pull/66172/
4509 [66183]: https://github.com/rust-lang/rust/pull/66183/
4510 [65879]: https://github.com/rust-lang/rust/pull/65879/
4511 [65013]: https://github.com/rust-lang/rust/pull/65013/
4512 [64882]: https://github.com/rust-lang/rust/pull/64882/
4513 [64325]: https://github.com/rust-lang/rust/pull/64325/
4514 [cargo/7560]: https://github.com/rust-lang/cargo/pull/7560/
4515 [cargo/7579]: https://github.com/rust-lang/cargo/pull/7579/
4516 [cargo/7591]: https://github.com/rust-lang/cargo/pull/7591/
4517 [cargo/7593]: https://github.com/rust-lang/cargo/pull/7593/
4518 [`Result::map_or_else`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.map_or_else
4519 [`Result::map_or`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.map_or
4520 [`std::rc::Weak::weak_count`]: https://doc.rust-lang.org/std/rc/struct.Weak.html#method.weak_count
4521 [`std::rc::Weak::strong_count`]: https://doc.rust-lang.org/std/rc/struct.Weak.html#method.strong_count
4522 [`std::sync::Weak::weak_count`]: https://doc.rust-lang.org/std/sync/struct.Weak.html#method.weak_count
4523 [`std::sync::Weak::strong_count`]: https://doc.rust-lang.org/std/sync/struct.Weak.html#method.strong_count
4524 [apple-32bit-drop]: https://blog.rust-lang.org/2020/01/03/reducing-support-for-32-bit-apple-targets.html
4525
4526 Version 1.40.0 (2019-12-19)
4527 ===========================
4528
4529 Language
4530 --------
4531 - [You can now use tuple `struct`s and tuple `enum` variant's constructors in
4532 `const` contexts.][65188] e.g.
4533
4534 ```rust
4535 pub struct Point(i32, i32);
4536
4537 const ORIGIN: Point = {
4538 let constructor = Point;
4539
4540 constructor(0, 0)
4541 };
4542 ```
4543
4544 - [You can now mark `struct`s, `enum`s, and `enum` variants with the `#[non_exhaustive]` attribute to
4545 indicate that there may be variants or fields added in the future.][64639]
4546 For example this requires adding a wild-card branch (`_ => {}`) to any match
4547 statements on a non-exhaustive `enum`. [(RFC 2008)]
4548 - [You can now use function-like procedural macros in `extern` blocks and in
4549 type positions.][63931] e.g. `type Generated = macro!();`
4550 - [Function-like and attribute procedural macros can now emit
4551 `macro_rules!` items, so you can now have your macros generate macros.][64035]
4552 - [The `meta` pattern matcher in `macro_rules!` now correctly matches the modern
4553 attribute syntax.][63674] For example `(#[$m:meta])` now matches `#[attr]`,
4554 `#[attr{tokens}]`, `#[attr[tokens]]`, and `#[attr(tokens)]`.
4555
4556 Compiler
4557 --------
4558 - [Added tier 3 support\* for the
4559 `thumbv7neon-unknown-linux-musleabihf` target.][66103]
4560 - [Added tier 3 support for the
4561 `aarch64-unknown-none-softfloat` target.][64589]
4562 - [Added tier 3 support for the `mips64-unknown-linux-muslabi64`, and
4563 `mips64el-unknown-linux-muslabi64` targets.][65843]
4564
4565 \* Refer to Rust's [platform support page][platform-support-doc] for more
4566 information on Rust's tiered platform support.
4567
4568 Libraries
4569 ---------
4570 - [The `is_power_of_two` method on unsigned numeric types is now a `const` function.][65092]
4571
4572 Stabilized APIs
4573 ---------------
4574 - [`BTreeMap::get_key_value`]
4575 - [`HashMap::get_key_value`]
4576 - [`Option::as_deref_mut`]
4577 - [`Option::as_deref`]
4578 - [`Option::flatten`]
4579 - [`UdpSocket::peer_addr`]
4580 - [`f32::to_be_bytes`]
4581 - [`f32::to_le_bytes`]
4582 - [`f32::to_ne_bytes`]
4583 - [`f64::to_be_bytes`]
4584 - [`f64::to_le_bytes`]
4585 - [`f64::to_ne_bytes`]
4586 - [`f32::from_be_bytes`]
4587 - [`f32::from_le_bytes`]
4588 - [`f32::from_ne_bytes`]
4589 - [`f64::from_be_bytes`]
4590 - [`f64::from_le_bytes`]
4591 - [`f64::from_ne_bytes`]
4592 - [`mem::take`]
4593 - [`slice::repeat`]
4594 - [`todo!`]
4595
4596 Cargo
4597 -----
4598 - [Cargo will now always display warnings, rather than only on
4599 fresh builds.][cargo/7450]
4600 - [Feature flags (except `--all-features`) passed to a virtual workspace will
4601 now produce an error.][cargo/7507] Previously these flags were ignored.
4602 - [You can now publish `dev-dependencies` without including
4603 a `version`.][cargo/7333]
4604
4605 Misc
4606 ----
4607 - [You can now specify the `#[cfg(doctest)]` attribute to include an item only
4608 when running documentation tests with `rustdoc`.][63803]
4609
4610 Compatibility Notes
4611 -------------------
4612 - [As previously announced, any previous NLL warnings in the 2015 edition are
4613 now hard errors.][64221]
4614 - [The `include!` macro will now warn if it failed to include the
4615 entire file.][64284] The `include!` macro unintentionally only includes the
4616 first _expression_ in a file, and this can be unintuitive. This will become
4617 either a hard error in a future release, or the behavior may be fixed to include all expressions as expected.
4618 - [Using `#[inline]` on function prototypes and consts now emits a warning under
4619 `unused_attribute` lint.][65294] Using `#[inline]` anywhere else inside traits
4620 or `extern` blocks now correctly emits a hard error.
4621
4622 [65294]: https://github.com/rust-lang/rust/pull/65294/
4623 [66103]: https://github.com/rust-lang/rust/pull/66103/
4624 [65843]: https://github.com/rust-lang/rust/pull/65843/
4625 [65188]: https://github.com/rust-lang/rust/pull/65188/
4626 [65092]: https://github.com/rust-lang/rust/pull/65092/
4627 [64589]: https://github.com/rust-lang/rust/pull/64589/
4628 [64639]: https://github.com/rust-lang/rust/pull/64639/
4629 [64221]: https://github.com/rust-lang/rust/pull/64221/
4630 [64284]: https://github.com/rust-lang/rust/pull/64284/
4631 [63931]: https://github.com/rust-lang/rust/pull/63931/
4632 [64035]: https://github.com/rust-lang/rust/pull/64035/
4633 [63674]: https://github.com/rust-lang/rust/pull/63674/
4634 [63803]: https://github.com/rust-lang/rust/pull/63803/
4635 [cargo/7450]: https://github.com/rust-lang/cargo/pull/7450/
4636 [cargo/7507]: https://github.com/rust-lang/cargo/pull/7507/
4637 [cargo/7333]: https://github.com/rust-lang/cargo/pull/7333/
4638 [(rfc 2008)]: https://rust-lang.github.io/rfcs/2008-non-exhaustive.html
4639 [`f32::to_be_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.to_be_bytes
4640 [`f32::to_le_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.to_le_bytes
4641 [`f32::to_ne_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.to_ne_bytes
4642 [`f64::to_be_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.to_be_bytes
4643 [`f64::to_le_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.to_le_bytes
4644 [`f64::to_ne_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.to_ne_bytes
4645 [`f32::from_be_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.from_be_bytes
4646 [`f32::from_le_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.from_le_bytes
4647 [`f32::from_ne_bytes`]: https://doc.rust-lang.org/std/primitive.f32.html#method.from_ne_bytes
4648 [`f64::from_be_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.from_be_bytes
4649 [`f64::from_le_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.from_le_bytes
4650 [`f64::from_ne_bytes`]: https://doc.rust-lang.org/std/primitive.f64.html#method.from_ne_bytes
4651 [`option::flatten`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.flatten
4652 [`option::as_deref`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.as_deref
4653 [`option::as_deref_mut`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.as_deref_mut
4654 [`hashmap::get_key_value`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.get_key_value
4655 [`btreemap::get_key_value`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#method.get_key_value
4656 [`slice::repeat`]: https://doc.rust-lang.org/std/primitive.slice.html#method.repeat
4657 [`mem::take`]: https://doc.rust-lang.org/std/mem/fn.take.html
4658 [`udpsocket::peer_addr`]: https://doc.rust-lang.org/std/net/struct.UdpSocket.html#method.peer_addr
4659 [`todo!`]: https://doc.rust-lang.org/std/macro.todo.html
4660
4661
4662 Version 1.39.0 (2019-11-07)
4663 ===========================
4664
4665 Language
4666 --------
4667 - [You can now create `async` functions and blocks with `async fn`, `async move {}`, and
4668 `async {}` respectively, and you can now call `.await` on async expressions.][63209]
4669 - [You can now use certain attributes on function, closure, and function pointer
4670 parameters.][64010] These attributes include `cfg`, `cfg_attr`, `allow`, `warn`,
4671 `deny`, `forbid` as well as inert helper attributes used by procedural macro
4672 attributes applied to items. e.g.
4673 ```rust
4674 fn len(
4675 #[cfg(windows)] slice: &[u16],
4676 #[cfg(not(windows))] slice: &[u8],
4677 ) -> usize {
4678 slice.len()
4679 }
4680 ```
4681 - [You can now take shared references to bind-by-move patterns in the `if` guards
4682 of `match` arms.][63118] e.g.
4683 ```rust
4684 fn main() {
4685 let array: Box<[u8; 4]> = Box::new([1, 2, 3, 4]);
4686
4687 match array {
4688 nums
4689 // ---- `nums` is bound by move.
4690 if nums.iter().sum::<u8>() == 10
4691 // ^------ `.iter()` implicitly takes a reference to `nums`.
4692 => {
4693 drop(nums);
4694 // ----------- Legal as `nums` was bound by move and so we have ownership.
4695 }
4696 _ => unreachable!(),
4697 }
4698 }
4699 ```
4700
4701
4702
4703 Compiler
4704 --------
4705 - [Added tier 3\* support for the `i686-unknown-uefi` target.][64334]
4706 - [Added tier 3 support for the `sparc64-unknown-openbsd` target.][63595]
4707 - [rustc will now trim code snippets in diagnostics to fit in your terminal.][63402]
4708 **Note** Cargo currently doesn't use this feature. Refer to
4709 [cargo#7315][cargo/7315] to track this feature's progress.
4710 - [You can now pass `--show-output` argument to test binaries to print the
4711 output of successful tests.][62600]
4712
4713
4714 \* Refer to Rust's [platform support page][platform-support-doc] for more
4715 information on Rust's tiered platform support.
4716
4717 Libraries
4718 ---------
4719 - [`Vec::new` and `String::new` are now `const` functions.][64028]
4720 - [`LinkedList::new` is now a `const` function.][63684]
4721 - [`str::len`, `[T]::len` and `str::as_bytes` are now `const` functions.][63770]
4722 - [The `abs`, `wrapping_abs`, and `overflowing_abs` numeric functions are
4723 now `const`.][63786]
4724
4725 Stabilized APIs
4726 ---------------
4727 - [`Pin::into_inner`]
4728 - [`Instant::checked_duration_since`]
4729 - [`Instant::saturating_duration_since`]
4730
4731 Cargo
4732 -----
4733 - [You can now publish git dependencies if supplied with a `version`.][cargo/7237]
4734 - [The `--all` flag has been renamed to `--workspace`.][cargo/7241] Using
4735 `--all` is now deprecated.
4736
4737 Misc
4738 ----
4739 - [You can now pass `-Clinker` to rustdoc to control the linker used
4740 for compiling doctests.][63834]
4741
4742 Compatibility Notes
4743 -------------------
4744 - [Code that was previously accepted by the old borrow checker, but rejected by
4745 the NLL borrow checker is now a hard error in Rust 2018.][63565] This was
4746 previously a warning, and will also become a hard error in the Rust 2015
4747 edition in the 1.40.0 release.
4748 - [`rustdoc` now requires `rustc` to be installed and in the same directory to
4749 run tests.][63827] This should improve performance when running a large
4750 amount of doctests.
4751 - [The `try!` macro will now issue a deprecation warning.][62672] It is
4752 recommended to use the `?` operator instead.
4753 - [`asinh(-0.0)` now correctly returns `-0.0`.][63698] Previously this
4754 returned `0.0`.
4755
4756 [62600]: https://github.com/rust-lang/rust/pull/62600/
4757 [62672]: https://github.com/rust-lang/rust/pull/62672/
4758 [63118]: https://github.com/rust-lang/rust/pull/63118/
4759 [63209]: https://github.com/rust-lang/rust/pull/63209/
4760 [63402]: https://github.com/rust-lang/rust/pull/63402/
4761 [63565]: https://github.com/rust-lang/rust/pull/63565/
4762 [63595]: https://github.com/rust-lang/rust/pull/63595/
4763 [63684]: https://github.com/rust-lang/rust/pull/63684/
4764 [63698]: https://github.com/rust-lang/rust/pull/63698/
4765 [63770]: https://github.com/rust-lang/rust/pull/63770/
4766 [63786]: https://github.com/rust-lang/rust/pull/63786/
4767 [63827]: https://github.com/rust-lang/rust/pull/63827/
4768 [63834]: https://github.com/rust-lang/rust/pull/63834/
4769 [64010]: https://github.com/rust-lang/rust/pull/64010/
4770 [64028]: https://github.com/rust-lang/rust/pull/64028/
4771 [64334]: https://github.com/rust-lang/rust/pull/64334/
4772 [cargo/7237]: https://github.com/rust-lang/cargo/pull/7237/
4773 [cargo/7241]: https://github.com/rust-lang/cargo/pull/7241/
4774 [cargo/7315]: https://github.com/rust-lang/cargo/pull/7315/
4775 [`Pin::into_inner`]: https://doc.rust-lang.org/std/pin/struct.Pin.html#method.into_inner
4776 [`Instant::checked_duration_since`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.checked_duration_since
4777 [`Instant::saturating_duration_since`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.saturating_duration_since
4778
4779 Version 1.38.0 (2019-09-26)
4780 ==========================
4781
4782 Language
4783 --------
4784 - [The `#[global_allocator]` attribute can now be used in submodules.][62735]
4785 - [The `#[deprecated]` attribute can now be used on macros.][62042]
4786
4787 Compiler
4788 --------
4789 - [Added pipelined compilation support to `rustc`.][62766] This will
4790 improve compilation times in some cases. For further information please refer
4791 to the [_"Evaluating pipelined rustc compilation"_][pipeline-internals] thread.
4792 - [Added tier 3\* support for the `aarch64-uwp-windows-msvc`, `i686-uwp-windows-gnu`,
4793 `i686-uwp-windows-msvc`, `x86_64-uwp-windows-gnu`, and
4794 `x86_64-uwp-windows-msvc` targets.][60260]
4795 - [Added tier 3 support for the `armv7-unknown-linux-gnueabi` and
4796 `armv7-unknown-linux-musleabi` targets.][63107]
4797 - [Added tier 3 support for the `hexagon-unknown-linux-musl` target.][62814]
4798 - [Added tier 3 support for the `riscv32i-unknown-none-elf` target.][62784]
4799 - [Upgraded to LLVM 9.][62592]
4800
4801 \* Refer to Rust's [platform support page][platform-support-doc] for more
4802 information on Rust's tiered platform support.
4803
4804 Libraries
4805 ---------
4806 - [`ascii::EscapeDefault` now implements `Clone` and `Display`.][63421]
4807 - [Derive macros for prelude traits (e.g. `Clone`, `Debug`, `Hash`) are now
4808 available at the same path as the trait.][63056] (e.g. The `Clone` derive macro
4809 is available at `std::clone::Clone`). This also makes all built-in macros
4810 available in `std`/`core` root. e.g. `std::include_bytes!`.
4811 - [`str::Chars` now implements `Debug`.][63000]
4812 - [`slice::{concat, connect, join}` now accepts `&[T]` in addition to `&T`.][62528]
4813 - [`*const T` and `*mut T` now implement `marker::Unpin`.][62583]
4814 - [`Arc<[T]>` and `Rc<[T]>` now implement `FromIterator<T>`.][61953]
4815 - [Added euclidean remainder and division operations (`div_euclid`,
4816 `rem_euclid`) to all numeric primitives.][61884] Additionally `checked`,
4817 `overflowing`, and `wrapping` versions are available for all
4818 integer primitives.
4819 - [`thread::AccessError` now implements `Clone`, `Copy`, `Eq`, `Error`, and
4820 `PartialEq`.][61491]
4821 - [`iter::{StepBy, Peekable, Take}` now implement `DoubleEndedIterator`.][61457]
4822
4823 Stabilized APIs
4824 ---------------
4825 - [`<*const T>::cast`]
4826 - [`<*mut T>::cast`]
4827 - [`Duration::as_secs_f32`]
4828 - [`Duration::as_secs_f64`]
4829 - [`Duration::div_f32`]
4830 - [`Duration::div_f64`]
4831 - [`Duration::from_secs_f32`]
4832 - [`Duration::from_secs_f64`]
4833 - [`Duration::mul_f32`]
4834 - [`Duration::mul_f64`]
4835 - [`any::type_name`]
4836
4837 Cargo
4838 -----
4839 - [Added pipelined compilation support to `cargo`.][cargo/7143]
4840 - [You can now pass the `--features` option multiple times to enable
4841 multiple features.][cargo/7084]
4842
4843 Rustdoc
4844 -------
4845
4846 - [Documentation on `pub use` statements is prepended to the documentation of the re-exported item][63048]
4847
4848 Misc
4849 ----
4850 - [`rustc` will now warn about some incorrect uses of
4851 `mem::{uninitialized, zeroed}` that are known to cause undefined behaviour.][63346]
4852
4853 Compatibility Notes
4854 -------------------
4855 - The [`x86_64-unknown-uefi` platform can not be built][62785] with rustc
4856 1.38.0.
4857 - The [`armv7-unknown-linux-gnueabihf` platform is known to have
4858 issues][62896] with certain crates such as libc.
4859
4860 [60260]: https://github.com/rust-lang/rust/pull/60260/
4861 [61457]: https://github.com/rust-lang/rust/pull/61457/
4862 [61491]: https://github.com/rust-lang/rust/pull/61491/
4863 [61884]: https://github.com/rust-lang/rust/pull/61884/
4864 [61953]: https://github.com/rust-lang/rust/pull/61953/
4865 [62042]: https://github.com/rust-lang/rust/pull/62042/
4866 [62528]: https://github.com/rust-lang/rust/pull/62528/
4867 [62583]: https://github.com/rust-lang/rust/pull/62583/
4868 [62735]: https://github.com/rust-lang/rust/pull/62735/
4869 [62766]: https://github.com/rust-lang/rust/pull/62766/
4870 [62784]: https://github.com/rust-lang/rust/pull/62784/
4871 [62592]: https://github.com/rust-lang/rust/pull/62592/
4872 [62785]: https://github.com/rust-lang/rust/issues/62785/
4873 [62814]: https://github.com/rust-lang/rust/pull/62814/
4874 [62896]: https://github.com/rust-lang/rust/issues/62896/
4875 [63000]: https://github.com/rust-lang/rust/pull/63000/
4876 [63056]: https://github.com/rust-lang/rust/pull/63056/
4877 [63107]: https://github.com/rust-lang/rust/pull/63107/
4878 [63346]: https://github.com/rust-lang/rust/pull/63346/
4879 [63421]: https://github.com/rust-lang/rust/pull/63421/
4880 [cargo/7084]: https://github.com/rust-lang/cargo/pull/7084/
4881 [cargo/7143]: https://github.com/rust-lang/cargo/pull/7143/
4882 [63048]: https://github.com/rust-lang/rust/pull/63048
4883 [`<*const T>::cast`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.cast
4884 [`<*mut T>::cast`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.cast
4885 [`Duration::as_secs_f32`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_secs_f32
4886 [`Duration::as_secs_f64`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_secs_f64
4887 [`Duration::div_f32`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.div_f32
4888 [`Duration::div_f64`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.div_f64
4889 [`Duration::from_secs_f32`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.from_secs_f32
4890 [`Duration::from_secs_f64`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.from_secs_f64
4891 [`Duration::mul_f32`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.mul_f32
4892 [`Duration::mul_f64`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.mul_f64
4893 [`any::type_name`]: https://doc.rust-lang.org/std/any/fn.type_name.html
4894 [platform-support-doc]: https://doc.rust-lang.org/nightly/rustc/platform-support.html
4895 [pipeline-internals]: https://internals.rust-lang.org/t/evaluating-pipelined-rustc-compilation/10199
4896
4897 Version 1.37.0 (2019-08-15)
4898 ==========================
4899
4900 Language
4901 --------
4902 - `#[must_use]` will now warn if the type is contained in a [tuple][61100],
4903 [`Box`][62228], or an [array][62235] and unused.
4904 - [You can now use the `cfg` and `cfg_attr` attributes on
4905 generic parameters.][61547]
4906 - [You can now use enum variants through type alias.][61682] e.g. You can
4907 write the following:
4908 ```rust
4909 type MyOption = Option<u8>;
4910
4911 fn increment_or_zero(x: MyOption) -> u8 {
4912 match x {
4913 MyOption::Some(y) => y + 1,
4914 MyOption::None => 0,
4915 }
4916 }
4917 ```
4918 - [You can now use `_` as an identifier for consts.][61347] e.g. You can write
4919 `const _: u32 = 5;`.
4920 - [You can now use `#[repr(align(X)]` on enums.][61229]
4921 - [The `?` Kleene macro operator is now available in the
4922 2015 edition.][60932]
4923
4924 Compiler
4925 --------
4926 - [You can now enable Profile-Guided Optimization with the `-C profile-generate`
4927 and `-C profile-use` flags.][61268] For more information on how to use profile
4928 guided optimization, please refer to the [rustc book][rustc-book-pgo].
4929 - [The `rust-lldb` wrapper script should now work again.][61827]
4930
4931 Libraries
4932 ---------
4933 - [`mem::MaybeUninit<T>` is now ABI-compatible with `T`.][61802]
4934
4935 Stabilized APIs
4936 ---------------
4937 - [`BufReader::buffer`]
4938 - [`BufWriter::buffer`]
4939 - [`Cell::from_mut`]
4940 - [`Cell<[T]>::as_slice_of_cells`][`Cell<slice>::as_slice_of_cells`]
4941 - [`DoubleEndedIterator::nth_back`]
4942 - [`Option::xor`]
4943 - [`Wrapping::reverse_bits`]
4944 - [`i128::reverse_bits`]
4945 - [`i16::reverse_bits`]
4946 - [`i32::reverse_bits`]
4947 - [`i64::reverse_bits`]
4948 - [`i8::reverse_bits`]
4949 - [`isize::reverse_bits`]
4950 - [`slice::copy_within`]
4951 - [`u128::reverse_bits`]
4952 - [`u16::reverse_bits`]
4953 - [`u32::reverse_bits`]
4954 - [`u64::reverse_bits`]
4955 - [`u8::reverse_bits`]
4956 - [`usize::reverse_bits`]
4957
4958 Cargo
4959 -----
4960 - [`Cargo.lock` files are now included by default when publishing executable crates
4961 with executables.][cargo/7026]
4962 - [You can now specify `default-run="foo"` in `[package]` to specify the
4963 default executable to use for `cargo run`.][cargo/7056]
4964
4965 Misc
4966 ----
4967
4968 Compatibility Notes
4969 -------------------
4970 - [Using `...` for inclusive range patterns will now warn by default.][61342]
4971 Please transition your code to using the `..=` syntax for inclusive
4972 ranges instead.
4973 - [Using a trait object without the `dyn` will now warn by default.][61203]
4974 Please transition your code to use `dyn Trait` for trait objects instead.
4975
4976 [62228]: https://github.com/rust-lang/rust/pull/62228/
4977 [62235]: https://github.com/rust-lang/rust/pull/62235/
4978 [61802]: https://github.com/rust-lang/rust/pull/61802/
4979 [61827]: https://github.com/rust-lang/rust/pull/61827/
4980 [61547]: https://github.com/rust-lang/rust/pull/61547/
4981 [61682]: https://github.com/rust-lang/rust/pull/61682/
4982 [61268]: https://github.com/rust-lang/rust/pull/61268/
4983 [61342]: https://github.com/rust-lang/rust/pull/61342/
4984 [61347]: https://github.com/rust-lang/rust/pull/61347/
4985 [61100]: https://github.com/rust-lang/rust/pull/61100/
4986 [61203]: https://github.com/rust-lang/rust/pull/61203/
4987 [61229]: https://github.com/rust-lang/rust/pull/61229/
4988 [60932]: https://github.com/rust-lang/rust/pull/60932/
4989 [cargo/7026]: https://github.com/rust-lang/cargo/pull/7026/
4990 [cargo/7056]: https://github.com/rust-lang/cargo/pull/7056/
4991 [`BufReader::buffer`]: https://doc.rust-lang.org/std/io/struct.BufReader.html#method.buffer
4992 [`BufWriter::buffer`]: https://doc.rust-lang.org/std/io/struct.BufWriter.html#method.buffer
4993 [`Cell::from_mut`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.from_mut
4994 [`Cell<slice>::as_slice_of_cells`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.as_slice_of_cells
4995 [`DoubleEndedIterator::nth_back`]: https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html#method.nth_back
4996 [`Option::xor`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.xor
4997 [`Wrapping::reverse_bits`]: https://doc.rust-lang.org/std/num/struct.Wrapping.html#method.reverse_bits
4998 [`i128::reverse_bits`]: https://doc.rust-lang.org/std/primitive.i128.html#method.reverse_bits
4999 [`i16::reverse_bits`]: https://doc.rust-lang.org/std/primitive.i16.html#method.reverse_bits
5000 [`i32::reverse_bits`]: https://doc.rust-lang.org/std/primitive.i32.html#method.reverse_bits
5001 [`i64::reverse_bits`]: https://doc.rust-lang.org/std/primitive.i64.html#method.reverse_bits
5002 [`i8::reverse_bits`]: https://doc.rust-lang.org/std/primitive.i8.html#method.reverse_bits
5003 [`isize::reverse_bits`]: https://doc.rust-lang.org/std/primitive.isize.html#method.reverse_bits
5004 [`slice::copy_within`]: https://doc.rust-lang.org/std/primitive.slice.html#method.copy_within
5005 [`u128::reverse_bits`]: https://doc.rust-lang.org/std/primitive.u128.html#method.reverse_bits
5006 [`u16::reverse_bits`]: https://doc.rust-lang.org/std/primitive.u16.html#method.reverse_bits
5007 [`u32::reverse_bits`]: https://doc.rust-lang.org/std/primitive.u32.html#method.reverse_bits
5008 [`u64::reverse_bits`]: https://doc.rust-lang.org/std/primitive.u64.html#method.reverse_bits
5009 [`u8::reverse_bits`]: https://doc.rust-lang.org/std/primitive.u8.html#method.reverse_bits
5010 [`usize::reverse_bits`]: https://doc.rust-lang.org/std/primitive.usize.html#method.reverse_bits
5011 [rustc-book-pgo]: https://doc.rust-lang.org/rustc/profile-guided-optimization.html
5012
5013
5014 Version 1.36.0 (2019-07-04)
5015 ==========================
5016
5017 Language
5018 --------
5019 - [Non-Lexical Lifetimes are now enabled on the 2015 edition.][59114]
5020 - [The order of traits in trait objects no longer affects the semantics of that
5021 object.][59445] e.g. `dyn Send + fmt::Debug` is now equivalent to
5022 `dyn fmt::Debug + Send`, where this was previously not the case.
5023
5024 Libraries
5025 ---------
5026 - [`HashMap`'s implementation has been replaced with `hashbrown::HashMap` implementation.][58623]
5027 - [`TryFromSliceError` now implements `From<Infallible>`.][60318]
5028 - [`mem::needs_drop` is now available as a const fn.][60364]
5029 - [`alloc::Layout::from_size_align_unchecked` is now available as a const fn.][60370]
5030 - [`String` now implements `BorrowMut<str>`.][60404]
5031 - [`io::Cursor` now implements `Default`.][60234]
5032 - [Both `NonNull::{dangling, cast}` are now const fns.][60244]
5033 - [The `alloc` crate is now stable.][59675] `alloc` allows you to use a subset
5034 of `std` (e.g. `Vec`, `Box`, `Arc`) in `#![no_std]` environments if the
5035 environment has access to heap memory allocation.
5036 - [`String` now implements `From<&String>`.][59825]
5037 - [You can now pass multiple arguments to the `dbg!` macro.][59826] `dbg!` will
5038 return a tuple of each argument when there is multiple arguments.
5039 - [`Result::{is_err, is_ok}` are now `#[must_use]` and will produce a warning if
5040 not used.][59648]
5041
5042 Stabilized APIs
5043 ---------------
5044 - [`VecDeque::rotate_left`]
5045 - [`VecDeque::rotate_right`]
5046 - [`Iterator::copied`]
5047 - [`io::IoSlice`]
5048 - [`io::IoSliceMut`]
5049 - [`Read::read_vectored`]
5050 - [`Write::write_vectored`]
5051 - [`str::as_mut_ptr`]
5052 - [`mem::MaybeUninit`]
5053 - [`pointer::align_offset`]
5054 - [`future::Future`]
5055 - [`task::Context`]
5056 - [`task::RawWaker`]
5057 - [`task::RawWakerVTable`]
5058 - [`task::Waker`]
5059 - [`task::Poll`]
5060
5061 Cargo
5062 -----
5063 - [Cargo will now produce an error if you attempt to use the name of a required dependency as a feature.][cargo/6860]
5064 - [You can now pass the `--offline` flag to run cargo without accessing the network.][cargo/6934]
5065
5066 You can find further change's in [Cargo's 1.36.0 release notes][cargo-1-36-0].
5067
5068 Clippy
5069 ------
5070 There have been numerous additions and fixes to clippy, see [Clippy's 1.36.0 release notes][clippy-1-36-0] for more details.
5071
5072 Misc
5073 ----
5074
5075 Compatibility Notes
5076 -------------------
5077 - With the stabilisation of `mem::MaybeUninit`, `mem::uninitialized` use is no
5078 longer recommended, and will be deprecated in 1.39.0.
5079
5080 [60318]: https://github.com/rust-lang/rust/pull/60318/
5081 [60364]: https://github.com/rust-lang/rust/pull/60364/
5082 [60370]: https://github.com/rust-lang/rust/pull/60370/
5083 [60404]: https://github.com/rust-lang/rust/pull/60404/
5084 [60234]: https://github.com/rust-lang/rust/pull/60234/
5085 [60244]: https://github.com/rust-lang/rust/pull/60244/
5086 [58623]: https://github.com/rust-lang/rust/pull/58623/
5087 [59648]: https://github.com/rust-lang/rust/pull/59648/
5088 [59675]: https://github.com/rust-lang/rust/pull/59675/
5089 [59825]: https://github.com/rust-lang/rust/pull/59825/
5090 [59826]: https://github.com/rust-lang/rust/pull/59826/
5091 [59445]: https://github.com/rust-lang/rust/pull/59445/
5092 [59114]: https://github.com/rust-lang/rust/pull/59114/
5093 [cargo/6860]: https://github.com/rust-lang/cargo/pull/6860/
5094 [cargo/6934]: https://github.com/rust-lang/cargo/pull/6934/
5095 [`VecDeque::rotate_left`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.rotate_left
5096 [`VecDeque::rotate_right`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.rotate_right
5097 [`Iterator::copied`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#tymethod.copied
5098 [`io::IoSlice`]: https://doc.rust-lang.org/std/io/struct.IoSlice.html
5099 [`io::IoSliceMut`]: https://doc.rust-lang.org/std/io/struct.IoSliceMut.html
5100 [`Read::read_vectored`]: https://doc.rust-lang.org/std/io/trait.Read.html#method.read_vectored
5101 [`Write::write_vectored`]: https://doc.rust-lang.org/std/io/trait.Write.html#method.write_vectored
5102 [`str::as_mut_ptr`]: https://doc.rust-lang.org/std/primitive.str.html#method.as_mut_ptr
5103 [`mem::MaybeUninit`]: https://doc.rust-lang.org/std/mem/union.MaybeUninit.html
5104 [`pointer::align_offset`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.align_offset
5105 [`future::Future`]: https://doc.rust-lang.org/std/future/trait.Future.html
5106 [`task::Context`]: https://doc.rust-lang.org/beta/std/task/struct.Context.html
5107 [`task::RawWaker`]: https://doc.rust-lang.org/beta/std/task/struct.RawWaker.html
5108 [`task::RawWakerVTable`]: https://doc.rust-lang.org/beta/std/task/struct.RawWakerVTable.html
5109 [`task::Waker`]: https://doc.rust-lang.org/beta/std/task/struct.Waker.html
5110 [`task::Poll`]: https://doc.rust-lang.org/beta/std/task/enum.Poll.html
5111 [clippy-1-36-0]: https://github.com/rust-lang/rust-clippy/blob/master/CHANGELOG.md#rust-136
5112 [cargo-1-36-0]: https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-136-2019-07-04
5113
5114
5115 Version 1.35.0 (2019-05-23)
5116 ==========================
5117
5118 Language
5119 --------
5120 - [`FnOnce`, `FnMut`, and the `Fn` traits are now implemented for `Box<FnOnce>`,
5121 `Box<FnMut>`, and `Box<Fn>` respectively.][59500]
5122 - [You can now coerce closures into unsafe function pointers.][59580] e.g.
5123 ```rust
5124 unsafe fn call_unsafe(func: unsafe fn()) {
5125 func()
5126 }
5127
5128 pub fn main() {
5129 unsafe { call_unsafe(|| {}); }
5130 }
5131 ```
5132
5133
5134 Compiler
5135 --------
5136 - [Added the `armv6-unknown-freebsd-gnueabihf` and
5137 `armv7-unknown-freebsd-gnueabihf` targets.][58080]
5138 - [Added the `wasm32-unknown-wasi` target.][59464]
5139
5140
5141 Libraries
5142 ---------
5143 - [`Thread` will now show its ID in `Debug` output.][59460]
5144 - [`StdinLock`, `StdoutLock`, and `StderrLock` now implement `AsRawFd`.][59512]
5145 - [`alloc::System` now implements `Default`.][59451]
5146 - [Expanded `Debug` output (`{:#?}`) for structs now has a trailing comma on the
5147 last field.][59076]
5148 - [`char::{ToLowercase, ToUppercase}` now
5149 implement `ExactSizeIterator`.][58778]
5150 - [All `NonZero` numeric types now implement `FromStr`.][58717]
5151 - [Removed the `Read` trait bounds
5152 on the `BufReader::{get_ref, get_mut, into_inner}` methods.][58423]
5153 - [You can now call the `dbg!` macro without any parameters to print the file
5154 and line where it is called.][57847]
5155 - [In place ASCII case conversions are now up to 4× faster.][59283]
5156 e.g. `str::make_ascii_lowercase`
5157 - [`hash_map::{OccupiedEntry, VacantEntry}` now implement `Sync`
5158 and `Send`.][58369]
5159
5160 Stabilized APIs
5161 ---------------
5162 - [`f32::copysign`]
5163 - [`f64::copysign`]
5164 - [`RefCell::replace_with`]
5165 - [`RefCell::map_split`]
5166 - [`ptr::hash`]
5167 - [`Range::contains`]
5168 - [`RangeFrom::contains`]
5169 - [`RangeTo::contains`]
5170 - [`RangeInclusive::contains`]
5171 - [`RangeToInclusive::contains`]
5172 - [`Option::copied`]
5173
5174 Cargo
5175 -----
5176 - [You can now set `cargo:rustc-cdylib-link-arg` at build time to pass custom
5177 linker arguments when building a `cdylib`.][cargo/6298] Its usage is highly
5178 platform specific.
5179
5180 Misc
5181 ----
5182 - [The Rust toolchain is now available natively for musl based distros.][58575]
5183
5184 [59460]: https://github.com/rust-lang/rust/pull/59460/
5185 [59464]: https://github.com/rust-lang/rust/pull/59464/
5186 [59500]: https://github.com/rust-lang/rust/pull/59500/
5187 [59512]: https://github.com/rust-lang/rust/pull/59512/
5188 [59580]: https://github.com/rust-lang/rust/pull/59580/
5189 [59283]: https://github.com/rust-lang/rust/pull/59283/
5190 [59451]: https://github.com/rust-lang/rust/pull/59451/
5191 [59076]: https://github.com/rust-lang/rust/pull/59076/
5192 [58778]: https://github.com/rust-lang/rust/pull/58778/
5193 [58717]: https://github.com/rust-lang/rust/pull/58717/
5194 [58369]: https://github.com/rust-lang/rust/pull/58369/
5195 [58423]: https://github.com/rust-lang/rust/pull/58423/
5196 [58080]: https://github.com/rust-lang/rust/pull/58080/
5197 [57847]: https://github.com/rust-lang/rust/pull/57847/
5198 [58575]: https://github.com/rust-lang/rust/pull/58575
5199 [cargo/6298]: https://github.com/rust-lang/cargo/pull/6298/
5200 [`f32::copysign`]: https://doc.rust-lang.org/stable/std/primitive.f32.html#method.copysign
5201 [`f64::copysign`]: https://doc.rust-lang.org/stable/std/primitive.f64.html#method.copysign
5202 [`RefCell::replace_with`]: https://doc.rust-lang.org/stable/std/cell/struct.RefCell.html#method.replace_with
5203 [`RefCell::map_split`]: https://doc.rust-lang.org/stable/std/cell/struct.RefCell.html#method.map_split
5204 [`ptr::hash`]: https://doc.rust-lang.org/stable/std/ptr/fn.hash.html
5205 [`Range::contains`]: https://doc.rust-lang.org/std/ops/struct.Range.html#method.contains
5206 [`RangeFrom::contains`]: https://doc.rust-lang.org/std/ops/struct.RangeFrom.html#method.contains
5207 [`RangeTo::contains`]: https://doc.rust-lang.org/std/ops/struct.RangeTo.html#method.contains
5208 [`RangeInclusive::contains`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html#method.contains
5209 [`RangeToInclusive::contains`]: https://doc.rust-lang.org/std/ops/struct.RangeToInclusive.html#method.contains
5210 [`Option::copied`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.copied
5211
5212 Version 1.34.2 (2019-05-14)
5213 ===========================
5214
5215 * [Destabilize the `Error::type_id` function due to a security
5216 vulnerability][60785] ([CVE-2019-12083])
5217
5218 [60785]: https://github.com/rust-lang/rust/pull/60785
5219 [CVE-2019-12083]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12083
5220
5221 Version 1.34.1 (2019-04-25)
5222 ===========================
5223
5224 * [Fix false positives for the `redundant_closure` Clippy lint][clippy/3821]
5225 * [Fix false positives for the `missing_const_for_fn` Clippy lint][clippy/3844]
5226 * [Fix Clippy panic when checking some macros][clippy/3805]
5227
5228 [clippy/3821]: https://github.com/rust-lang/rust-clippy/pull/3821
5229 [clippy/3844]: https://github.com/rust-lang/rust-clippy/pull/3844
5230 [clippy/3805]: https://github.com/rust-lang/rust-clippy/pull/3805
5231
5232 Version 1.34.0 (2019-04-11)
5233 ==========================
5234
5235 Language
5236 --------
5237 - [You can now use `#[deprecated = "reason"]`][58166] as a shorthand for
5238 `#[deprecated(note = "reason")]`. This was previously allowed by mistake
5239 but had no effect.
5240 - [You can now accept token streams in `#[attr()]`,`#[attr[]]`, and
5241 `#[attr{}]` procedural macros.][57367]
5242 - [You can now write `extern crate self as foo;`][57407] to import your
5243 crate's root into the extern prelude.
5244
5245
5246 Compiler
5247 --------
5248 - [You can now target `riscv64imac-unknown-none-elf` and
5249 `riscv64gc-unknown-none-elf`.][58406]
5250 - [You can now enable linker plugin LTO optimisations with
5251 `-C linker-plugin-lto`.][58057] This allows rustc to compile your Rust code
5252 into LLVM bitcode allowing LLVM to perform LTO optimisations across C/C++ FFI
5253 boundaries.
5254 - [You can now target `powerpc64-unknown-freebsd`.][57809]
5255
5256
5257 Libraries
5258 ---------
5259 - [The trait bounds have been removed on some of `HashMap<K, V, S>`'s and
5260 `HashSet<T, S>`'s basic methods.][58370] Most notably you no longer require
5261 the `Hash` trait to create an iterator.
5262 - [The `Ord` trait bounds have been removed on some of `BinaryHeap<T>`'s basic
5263 methods.][58421] Most notably you no longer require the `Ord` trait to create
5264 an iterator.
5265 - [The methods `overflowing_neg` and `wrapping_neg` are now `const` functions
5266 for all numeric types.][58044]
5267 - [Indexing a `str` is now generic over all types that
5268 implement `SliceIndex<str>`.][57604]
5269 - [`str::trim`, `str::trim_matches`, `str::trim_{start, end}`, and
5270 `str::trim_{start, end}_matches` are now `#[must_use]`][57106] and will
5271 produce a warning if their returning type is unused.
5272 - [The methods `checked_pow`, `saturating_pow`, `wrapping_pow`, and
5273 `overflowing_pow` are now available for all numeric types.][57873] These are
5274 equivalent to methods such as `wrapping_add` for the `pow` operation.
5275
5276
5277 Stabilized APIs
5278 ---------------
5279
5280 #### std & core
5281 * [`Any::type_id`]
5282 * [`Error::type_id`]
5283 * [`atomic::AtomicI16`]
5284 * [`atomic::AtomicI32`]
5285 * [`atomic::AtomicI64`]
5286 * [`atomic::AtomicI8`]
5287 * [`atomic::AtomicU16`]
5288 * [`atomic::AtomicU32`]
5289 * [`atomic::AtomicU64`]
5290 * [`atomic::AtomicU8`]
5291 * [`convert::Infallible`]
5292 * [`convert::TryFrom`]
5293 * [`convert::TryInto`]
5294 * [`iter::from_fn`]
5295 * [`iter::successors`]
5296 * [`num::NonZeroI128`]
5297 * [`num::NonZeroI16`]
5298 * [`num::NonZeroI32`]
5299 * [`num::NonZeroI64`]
5300 * [`num::NonZeroI8`]
5301 * [`num::NonZeroIsize`]
5302 * [`slice::sort_by_cached_key`]
5303 * [`str::escape_debug`]
5304 * [`str::escape_default`]
5305 * [`str::escape_unicode`]
5306 * [`str::split_ascii_whitespace`]
5307
5308 #### std
5309 * [`Instant::checked_add`]
5310 * [`Instant::checked_sub`]
5311 * [`SystemTime::checked_add`]
5312 * [`SystemTime::checked_sub`]
5313
5314 Cargo
5315 -----
5316 - [You can now use alternative registries to crates.io.][cargo/6654]
5317
5318 Misc
5319 ----
5320 - [You can now use the `?` operator in your documentation tests without manually
5321 adding `fn main() -> Result<(), _> {}`.][56470]
5322
5323 Compatibility Notes
5324 -------------------
5325 - [`Command::before_exec` is being replaced by the unsafe method
5326 `Command::pre_exec`][58059] and will be deprecated with Rust 1.37.0.
5327 - [Use of `ATOMIC_{BOOL, ISIZE, USIZE}_INIT` is now deprecated][57425] as you
5328 can now use `const` functions in `static` variables.
5329
5330 [58370]: https://github.com/rust-lang/rust/pull/58370/
5331 [58406]: https://github.com/rust-lang/rust/pull/58406/
5332 [58421]: https://github.com/rust-lang/rust/pull/58421/
5333 [58166]: https://github.com/rust-lang/rust/pull/58166/
5334 [58044]: https://github.com/rust-lang/rust/pull/58044/
5335 [58057]: https://github.com/rust-lang/rust/pull/58057/
5336 [58059]: https://github.com/rust-lang/rust/pull/58059/
5337 [57809]: https://github.com/rust-lang/rust/pull/57809/
5338 [57873]: https://github.com/rust-lang/rust/pull/57873/
5339 [57604]: https://github.com/rust-lang/rust/pull/57604/
5340 [57367]: https://github.com/rust-lang/rust/pull/57367/
5341 [57407]: https://github.com/rust-lang/rust/pull/57407/
5342 [57425]: https://github.com/rust-lang/rust/pull/57425/
5343 [57106]: https://github.com/rust-lang/rust/pull/57106/
5344 [56470]: https://github.com/rust-lang/rust/pull/56470/
5345 [cargo/6654]: https://github.com/rust-lang/cargo/pull/6654/
5346 [`Any::type_id`]: https://doc.rust-lang.org/std/any/trait.Any.html#tymethod.type_id
5347 [`Error::type_id`]: https://doc.rust-lang.org/std/error/trait.Error.html#method.type_id
5348 [`atomic::AtomicI16`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicI16.html
5349 [`atomic::AtomicI32`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicI32.html
5350 [`atomic::AtomicI64`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicI64.html
5351 [`atomic::AtomicI8`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicI8.html
5352 [`atomic::AtomicU16`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU16.html
5353 [`atomic::AtomicU32`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU32.html
5354 [`atomic::AtomicU64`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU64.html
5355 [`atomic::AtomicU8`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU8.html
5356 [`convert::Infallible`]: https://doc.rust-lang.org/std/convert/enum.Infallible.html
5357 [`convert::TryFrom`]: https://doc.rust-lang.org/std/convert/trait.TryFrom.html
5358 [`convert::TryInto`]: https://doc.rust-lang.org/std/convert/trait.TryInto.html
5359 [`iter::from_fn`]: https://doc.rust-lang.org/std/iter/fn.from_fn.html
5360 [`iter::successors`]: https://doc.rust-lang.org/std/iter/fn.successors.html
5361 [`num::NonZeroI128`]: https://doc.rust-lang.org/std/num/struct.NonZeroI128.html
5362 [`num::NonZeroI16`]: https://doc.rust-lang.org/std/num/struct.NonZeroI16.html
5363 [`num::NonZeroI32`]: https://doc.rust-lang.org/std/num/struct.NonZeroI32.html
5364 [`num::NonZeroI64`]: https://doc.rust-lang.org/std/num/struct.NonZeroI64.html
5365 [`num::NonZeroI8`]: https://doc.rust-lang.org/std/num/struct.NonZeroI8.html
5366 [`num::NonZeroIsize`]: https://doc.rust-lang.org/std/num/struct.NonZeroIsize.html
5367 [`slice::sort_by_cached_key`]: https://doc.rust-lang.org/std/primitive.slice.html#method.sort_by_cached_key
5368 [`str::escape_debug`]: https://doc.rust-lang.org/std/primitive.str.html#method.escape_debug
5369 [`str::escape_default`]: https://doc.rust-lang.org/std/primitive.str.html#method.escape_default
5370 [`str::escape_unicode`]: https://doc.rust-lang.org/std/primitive.str.html#method.escape_unicode
5371 [`str::split_ascii_whitespace`]: https://doc.rust-lang.org/std/primitive.str.html#method.split_ascii_whitespace
5372 [`Instant::checked_add`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.checked_add
5373 [`Instant::checked_sub`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.checked_sub
5374 [`SystemTime::checked_add`]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#method.checked_add
5375 [`SystemTime::checked_sub`]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#method.checked_sub
5376
5377
5378 Version 1.33.0 (2019-02-28)
5379 ==========================
5380
5381 Language
5382 --------
5383 - [You can now use the `cfg(target_vendor)` attribute.][57465] E.g.
5384 `#[cfg(target_vendor="apple")] fn main() { println!("Hello Apple!"); }`
5385 - [Integer patterns such as in a match expression can now be exhaustive.][56362]
5386 E.g. You can have match statement on a `u8` that covers `0..=255` and
5387 you would no longer be required to have a `_ => unreachable!()` case.
5388 - [You can now have multiple patterns in `if let` and `while let`
5389 expressions.][57532] You can do this with the same syntax as a `match`
5390 expression. E.g.
5391 ```rust
5392 enum Creature {
5393 Crab(String),
5394 Lobster(String),
5395 Person(String),
5396 }
5397
5398 fn main() {
5399 let state = Creature::Crab("Ferris");
5400
5401 if let Creature::Crab(name) | Creature::Person(name) = state {
5402 println!("This creature's name is: {}", name);
5403 }
5404 }
5405 ```
5406 - [You can now have irrefutable `if let` and `while let` patterns.][57535] Using
5407 this feature will by default produce a warning as this behaviour can be
5408 unintuitive. E.g. `if let _ = 5 {}`
5409 - [You can now use `let` bindings, assignments, expression statements,
5410 and irrefutable pattern destructuring in const functions.][57175]
5411 - [You can now call unsafe const functions.][57067] E.g.
5412 ```rust
5413 const unsafe fn foo() -> i32 { 5 }
5414 const fn bar() -> i32 {
5415 unsafe { foo() }
5416 }
5417 ```
5418 - [You can now specify multiple attributes in a `cfg_attr` attribute.][57332]
5419 E.g. `#[cfg_attr(all(), must_use, optimize)]`
5420 - [You can now specify a specific alignment with the `#[repr(packed)]`
5421 attribute.][57049] E.g. `#[repr(packed(2))] struct Foo(i16, i32);` is a struct
5422 with an alignment of 2 bytes and a size of 6 bytes.
5423 - [You can now import an item from a module as an `_`.][56303] This allows you to
5424 import a trait's impls, and not have the name in the namespace. E.g.
5425 ```rust
5426 use std::io::Read as _;
5427
5428 // Allowed as there is only one `Read` in the module.
5429 pub trait Read {}
5430 ```
5431 - [You may now use `Rc`, `Arc`, and `Pin` as method receivers][56805].
5432
5433 Compiler
5434 --------
5435 - [You can now set a linker flavor for `rustc` with the `-Clinker-flavor`
5436 command line argument.][56351]
5437 - [The minimum required LLVM version has been bumped to 6.0.][56642]
5438 - [Added support for the PowerPC64 architecture on FreeBSD.][57615]
5439 - [The `x86_64-fortanix-unknown-sgx` target support has been upgraded to
5440 tier 2 support.][57130] Visit the [platform support][platform-support] page for
5441 information on Rust's platform support.
5442 - [Added support for the `thumbv7neon-linux-androideabi` and
5443 `thumbv7neon-unknown-linux-gnueabihf` targets.][56947]
5444 - [Added support for the `x86_64-unknown-uefi` target.][56769]
5445
5446 Libraries
5447 ---------
5448 - [The methods `overflowing_{add, sub, mul, shl, shr}` are now `const`
5449 functions for all numeric types.][57566]
5450 - [The methods `rotate_left`, `rotate_right`, and `wrapping_{add, sub, mul, shl, shr}`
5451 are now `const` functions for all numeric types.][57105]
5452 - [The methods `is_positive` and `is_negative` are now `const` functions for
5453 all signed numeric types.][57105]
5454 - [The `get` method for all `NonZero` types is now `const`.][57167]
5455 - [The methods `count_ones`, `count_zeros`, `leading_zeros`, `trailing_zeros`,
5456 `swap_bytes`, `from_be`, `from_le`, `to_be`, `to_le` are now `const` for all
5457 numeric types.][57234]
5458 - [`Ipv4Addr::new` is now a `const` function][57234]
5459
5460 Stabilized APIs
5461 ---------------
5462 - [`unix::FileExt::read_exact_at`]
5463 - [`unix::FileExt::write_all_at`]
5464 - [`Option::transpose`]
5465 - [`Result::transpose`]
5466 - [`convert::identity`]
5467 - [`pin::Pin`]
5468 - [`marker::Unpin`]
5469 - [`marker::PhantomPinned`]
5470 - [`Vec::resize_with`]
5471 - [`VecDeque::resize_with`]
5472 - [`Duration::as_millis`]
5473 - [`Duration::as_micros`]
5474 - [`Duration::as_nanos`]
5475
5476
5477 Cargo
5478 -----
5479 - [You can now publish crates that require a feature flag to compile with
5480 `cargo publish --features` or `cargo publish --all-features`.][cargo/6453]
5481 - [Cargo should now rebuild a crate if a file was modified during the initial
5482 build.][cargo/6484]
5483
5484 Compatibility Notes
5485 -------------------
5486 - The methods `str::{trim_left, trim_right, trim_left_matches, trim_right_matches}`
5487 are now deprecated in the standard library, and their usage will now produce a warning.
5488 Please use the `str::{trim_start, trim_end, trim_start_matches, trim_end_matches}`
5489 methods instead.
5490 - The `Error::cause` method has been deprecated in favor of `Error::source` which supports
5491 downcasting.
5492 - [Libtest no longer creates a new thread for each test when
5493 `--test-threads=1`. It also runs the tests in deterministic order][56243]
5494
5495 [56243]: https://github.com/rust-lang/rust/pull/56243
5496 [56303]: https://github.com/rust-lang/rust/pull/56303/
5497 [56351]: https://github.com/rust-lang/rust/pull/56351/
5498 [56362]: https://github.com/rust-lang/rust/pull/56362
5499 [56642]: https://github.com/rust-lang/rust/pull/56642/
5500 [56769]: https://github.com/rust-lang/rust/pull/56769/
5501 [56805]: https://github.com/rust-lang/rust/pull/56805
5502 [56947]: https://github.com/rust-lang/rust/pull/56947/
5503 [57049]: https://github.com/rust-lang/rust/pull/57049/
5504 [57067]: https://github.com/rust-lang/rust/pull/57067/
5505 [57105]: https://github.com/rust-lang/rust/pull/57105
5506 [57130]: https://github.com/rust-lang/rust/pull/57130/
5507 [57167]: https://github.com/rust-lang/rust/pull/57167/
5508 [57175]: https://github.com/rust-lang/rust/pull/57175/
5509 [57234]: https://github.com/rust-lang/rust/pull/57234/
5510 [57332]: https://github.com/rust-lang/rust/pull/57332/
5511 [57465]: https://github.com/rust-lang/rust/pull/57465/
5512 [57532]: https://github.com/rust-lang/rust/pull/57532/
5513 [57535]: https://github.com/rust-lang/rust/pull/57535/
5514 [57566]: https://github.com/rust-lang/rust/pull/57566/
5515 [57615]: https://github.com/rust-lang/rust/pull/57615/
5516 [cargo/6453]: https://github.com/rust-lang/cargo/pull/6453/
5517 [cargo/6484]: https://github.com/rust-lang/cargo/pull/6484/
5518 [`unix::FileExt::read_exact_at`]: https://doc.rust-lang.org/std/os/unix/fs/trait.FileExt.html#method.read_exact_at
5519 [`unix::FileExt::write_all_at`]: https://doc.rust-lang.org/std/os/unix/fs/trait.FileExt.html#method.write_all_at
5520 [`Option::transpose`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.transpose
5521 [`Result::transpose`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.transpose
5522 [`convert::identity`]: https://doc.rust-lang.org/std/convert/fn.identity.html
5523 [`pin::Pin`]: https://doc.rust-lang.org/std/pin/struct.Pin.html
5524 [`marker::Unpin`]: https://doc.rust-lang.org/stable/std/marker/trait.Unpin.html
5525 [`marker::PhantomPinned`]: https://doc.rust-lang.org/nightly/std/marker/struct.PhantomPinned.html
5526 [`Vec::resize_with`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.resize_with
5527 [`VecDeque::resize_with`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.resize_with
5528 [`Duration::as_millis`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_millis
5529 [`Duration::as_micros`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_micros
5530 [`Duration::as_nanos`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_nanos
5531 [platform-support]: https://forge.rust-lang.org/platform-support.html
5532
5533 Version 1.32.0 (2019-01-17)
5534 ==========================
5535
5536 Language
5537 --------
5538 #### 2018 edition
5539 - [You can now use the `?` operator in macro definitions.][56245] The `?`
5540 operator allows you to specify zero or one repetitions similar to the `*` and
5541 `+` operators.
5542 - [Module paths with no leading keyword like `super`, `self`, or `crate`, will
5543 now always resolve to the item (`enum`, `struct`, etc.) available in the
5544 module if present, before resolving to a external crate or an item the prelude.][56759]
5545 E.g.
5546 ```rust
5547 enum Color { Red, Green, Blue }
5548
5549 use Color::*;
5550 ```
5551
5552 #### All editions
5553 - [You can now match against `PhantomData<T>` types.][55837]
5554 - [You can now match against literals in macros with the `literal`
5555 specifier.][56072] This will match against a literal of any type.
5556 E.g. `1`, `'A'`, `"Hello World"`
5557 - [Self can now be used as a constructor and pattern for unit and tuple structs.][56365] E.g.
5558 ```rust
5559 struct Point(i32, i32);
5560
5561 impl Point {
5562 pub fn new(x: i32, y: i32) -> Self {
5563 Self(x, y)
5564 }
5565
5566 pub fn is_origin(&self) -> bool {
5567 match self {
5568 Self(0, 0) => true,
5569 _ => false,
5570 }
5571 }
5572 }
5573 ```
5574 - [Self can also now be used in type definitions.][56366] E.g.
5575 ```rust
5576 enum List<T>
5577 where
5578 Self: PartialOrd<Self> // can write `Self` instead of `List<T>`
5579 {
5580 Nil,
5581 Cons(T, Box<Self>) // likewise here
5582 }
5583 ```
5584 - [You can now mark traits with `#[must_use]`.][55663] This provides a warning if
5585 a `impl Trait` or `dyn Trait` is returned and unused in the program.
5586
5587 Compiler
5588 --------
5589 - [The default allocator has changed from jemalloc to the default allocator on
5590 your system.][55238] The compiler itself on Linux & macOS will still use
5591 jemalloc, but programs compiled with it will use the system allocator.
5592 - [Added the `aarch64-pc-windows-msvc` target.][55702]
5593
5594 Libraries
5595 ---------
5596 - [`PathBuf` now implements `FromStr`.][55148]
5597 - [`Box<[T]>` now implements `FromIterator<T>`.][55843]
5598 - [The `dbg!` macro has been stabilized.][56395] This macro enables you to
5599 easily debug expressions in your rust program. E.g.
5600 ```rust
5601 let a = 2;
5602 let b = dbg!(a * 2) + 1;
5603 // ^-- prints: [src/main.rs:4] a * 2 = 4
5604 assert_eq!(b, 5);
5605 ```
5606
5607 The following APIs are now `const` functions and can be used in a
5608 `const` context.
5609
5610 - [`Cell::as_ptr`]
5611 - [`UnsafeCell::get`]
5612 - [`char::is_ascii`]
5613 - [`iter::empty`]
5614 - [`ManuallyDrop::new`]
5615 - [`ManuallyDrop::into_inner`]
5616 - [`RangeInclusive::start`]
5617 - [`RangeInclusive::end`]
5618 - [`NonNull::as_ptr`]
5619 - [`slice::as_ptr`]
5620 - [`str::as_ptr`]
5621 - [`Duration::as_secs`]
5622 - [`Duration::subsec_millis`]
5623 - [`Duration::subsec_micros`]
5624 - [`Duration::subsec_nanos`]
5625 - [`CStr::as_ptr`]
5626 - [`Ipv4Addr::is_unspecified`]
5627 - [`Ipv6Addr::new`]
5628 - [`Ipv6Addr::octets`]
5629
5630 Stabilized APIs
5631 ---------------
5632 - [`i8::to_be_bytes`]
5633 - [`i8::to_le_bytes`]
5634 - [`i8::to_ne_bytes`]
5635 - [`i8::from_be_bytes`]
5636 - [`i8::from_le_bytes`]
5637 - [`i8::from_ne_bytes`]
5638 - [`i16::to_be_bytes`]
5639 - [`i16::to_le_bytes`]
5640 - [`i16::to_ne_bytes`]
5641 - [`i16::from_be_bytes`]
5642 - [`i16::from_le_bytes`]
5643 - [`i16::from_ne_bytes`]
5644 - [`i32::to_be_bytes`]
5645 - [`i32::to_le_bytes`]
5646 - [`i32::to_ne_bytes`]
5647 - [`i32::from_be_bytes`]
5648 - [`i32::from_le_bytes`]
5649 - [`i32::from_ne_bytes`]
5650 - [`i64::to_be_bytes`]
5651 - [`i64::to_le_bytes`]
5652 - [`i64::to_ne_bytes`]
5653 - [`i64::from_be_bytes`]
5654 - [`i64::from_le_bytes`]
5655 - [`i64::from_ne_bytes`]
5656 - [`i128::to_be_bytes`]
5657 - [`i128::to_le_bytes`]
5658 - [`i128::to_ne_bytes`]
5659 - [`i128::from_be_bytes`]
5660 - [`i128::from_le_bytes`]
5661 - [`i128::from_ne_bytes`]
5662 - [`isize::to_be_bytes`]
5663 - [`isize::to_le_bytes`]
5664 - [`isize::to_ne_bytes`]
5665 - [`isize::from_be_bytes`]
5666 - [`isize::from_le_bytes`]
5667 - [`isize::from_ne_bytes`]
5668 - [`u8::to_be_bytes`]
5669 - [`u8::to_le_bytes`]
5670 - [`u8::to_ne_bytes`]
5671 - [`u8::from_be_bytes`]
5672 - [`u8::from_le_bytes`]
5673 - [`u8::from_ne_bytes`]
5674 - [`u16::to_be_bytes`]
5675 - [`u16::to_le_bytes`]
5676 - [`u16::to_ne_bytes`]
5677 - [`u16::from_be_bytes`]
5678 - [`u16::from_le_bytes`]
5679 - [`u16::from_ne_bytes`]
5680 - [`u32::to_be_bytes`]
5681 - [`u32::to_le_bytes`]
5682 - [`u32::to_ne_bytes`]
5683 - [`u32::from_be_bytes`]
5684 - [`u32::from_le_bytes`]
5685 - [`u32::from_ne_bytes`]
5686 - [`u64::to_be_bytes`]
5687 - [`u64::to_le_bytes`]
5688 - [`u64::to_ne_bytes`]
5689 - [`u64::from_be_bytes`]
5690 - [`u64::from_le_bytes`]
5691 - [`u64::from_ne_bytes`]
5692 - [`u128::to_be_bytes`]
5693 - [`u128::to_le_bytes`]
5694 - [`u128::to_ne_bytes`]
5695 - [`u128::from_be_bytes`]
5696 - [`u128::from_le_bytes`]
5697 - [`u128::from_ne_bytes`]
5698 - [`usize::to_be_bytes`]
5699 - [`usize::to_le_bytes`]
5700 - [`usize::to_ne_bytes`]
5701 - [`usize::from_be_bytes`]
5702 - [`usize::from_le_bytes`]
5703 - [`usize::from_ne_bytes`]
5704
5705 Cargo
5706 -----
5707 - [You can now run `cargo c` as an alias for `cargo check`.][cargo/6218]
5708 - [Usernames are now allowed in alt registry URLs.][cargo/6242]
5709
5710 Misc
5711 ----
5712 - [`libproc_macro` has been added to the `rust-src` distribution.][55280]
5713
5714 Compatibility Notes
5715 -------------------
5716 - [The argument types for AVX's
5717 `_mm256_stream_si256`, `_mm256_stream_pd`, `_mm256_stream_ps`][55610] have
5718 been changed from `*const` to `*mut` as the previous implementation
5719 was unsound.
5720
5721
5722 [55148]: https://github.com/rust-lang/rust/pull/55148/
5723 [55238]: https://github.com/rust-lang/rust/pull/55238/
5724 [55280]: https://github.com/rust-lang/rust/pull/55280/
5725 [55610]: https://github.com/rust-lang/rust/pull/55610/
5726 [55663]: https://github.com/rust-lang/rust/pull/55663/
5727 [55702]: https://github.com/rust-lang/rust/pull/55702/
5728 [55837]: https://github.com/rust-lang/rust/pull/55837/
5729 [55843]: https://github.com/rust-lang/rust/pull/55843/
5730 [56072]: https://github.com/rust-lang/rust/pull/56072/
5731 [56245]: https://github.com/rust-lang/rust/pull/56245/
5732 [56365]: https://github.com/rust-lang/rust/pull/56365/
5733 [56366]: https://github.com/rust-lang/rust/pull/56366/
5734 [56395]: https://github.com/rust-lang/rust/pull/56395/
5735 [56759]: https://github.com/rust-lang/rust/pull/56759/
5736 [cargo/6218]: https://github.com/rust-lang/cargo/pull/6218/
5737 [cargo/6242]: https://github.com/rust-lang/cargo/pull/6242/
5738 [`CStr::as_ptr`]: https://doc.rust-lang.org/std/ffi/struct.CStr.html#method.as_ptr
5739 [`Cell::as_ptr`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.as_ptr
5740 [`Duration::as_secs`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.as_secs
5741 [`Duration::subsec_micros`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.subsec_micros
5742 [`Duration::subsec_millis`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.subsec_millis
5743 [`Duration::subsec_nanos`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.subsec_nanos
5744 [`Ipv4Addr::is_unspecified`]: https://doc.rust-lang.org/std/net/struct.Ipv4Addr.html#method.is_unspecified
5745 [`Ipv6Addr::new`]: https://doc.rust-lang.org/std/net/struct.Ipv6Addr.html#method.new
5746 [`Ipv6Addr::octets`]: https://doc.rust-lang.org/std/net/struct.Ipv6Addr.html#method.octets
5747 [`ManuallyDrop::into_inner`]: https://doc.rust-lang.org/std/mem/struct.ManuallyDrop.html#method.into_inner
5748 [`ManuallyDrop::new`]: https://doc.rust-lang.org/std/mem/struct.ManuallyDrop.html#method.new
5749 [`NonNull::as_ptr`]: https://doc.rust-lang.org/std/ptr/struct.NonNull.html#method.as_ptr
5750 [`RangeInclusive::end`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html#method.end
5751 [`RangeInclusive::start`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html#method.start
5752 [`UnsafeCell::get`]: https://doc.rust-lang.org/std/cell/struct.UnsafeCell.html#method.get
5753 [`slice::as_ptr`]: https://doc.rust-lang.org/std/primitive.slice.html#method.as_ptr
5754 [`char::is_ascii`]: https://doc.rust-lang.org/std/primitive.char.html#method.is_ascii
5755 [`i128::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_be_bytes
5756 [`i128::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_le_bytes
5757 [`i128::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.from_ne_bytes
5758 [`i128::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_be_bytes
5759 [`i128::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_le_bytes
5760 [`i128::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i128.html#method.to_ne_bytes
5761 [`i16::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_be_bytes
5762 [`i16::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_le_bytes
5763 [`i16::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.from_ne_bytes
5764 [`i16::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.to_be_bytes
5765 [`i16::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.to_le_bytes
5766 [`i16::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i16.html#method.to_ne_bytes
5767 [`i32::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.from_be_bytes
5768 [`i32::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.from_le_bytes
5769 [`i32::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.from_ne_bytes
5770 [`i32::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.to_be_bytes
5771 [`i32::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.to_le_bytes
5772 [`i32::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i32.html#method.to_ne_bytes
5773 [`i64::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.from_be_bytes
5774 [`i64::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.from_le_bytes
5775 [`i64::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.from_ne_bytes
5776 [`i64::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.to_be_bytes
5777 [`i64::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.to_le_bytes
5778 [`i64::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i64.html#method.to_ne_bytes
5779 [`i8::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.from_be_bytes
5780 [`i8::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.from_le_bytes
5781 [`i8::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.from_ne_bytes
5782 [`i8::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.to_be_bytes
5783 [`i8::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.to_le_bytes
5784 [`i8::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.i8.html#method.to_ne_bytes
5785 [`isize::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.from_be_bytes
5786 [`isize::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.from_le_bytes
5787 [`isize::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.from_ne_bytes
5788 [`isize::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_be_bytes
5789 [`isize::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_le_bytes
5790 [`isize::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.isize.html#method.to_ne_bytes
5791 [`iter::empty`]: https://doc.rust-lang.org/std/iter/fn.empty.html
5792 [`str::as_ptr`]: https://doc.rust-lang.org/std/primitive.str.html#method.as_ptr
5793 [`u128::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_be_bytes
5794 [`u128::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_le_bytes
5795 [`u128::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.from_ne_bytes
5796 [`u128::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_be_bytes
5797 [`u128::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_le_bytes
5798 [`u128::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u128.html#method.to_ne_bytes
5799 [`u16::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_be_bytes
5800 [`u16::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_le_bytes
5801 [`u16::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.from_ne_bytes
5802 [`u16::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.to_be_bytes
5803 [`u16::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.to_le_bytes
5804 [`u16::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u16.html#method.to_ne_bytes
5805 [`u32::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.from_be_bytes
5806 [`u32::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.from_le_bytes
5807 [`u32::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.from_ne_bytes
5808 [`u32::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.to_be_bytes
5809 [`u32::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.to_le_bytes
5810 [`u32::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u32.html#method.to_ne_bytes
5811 [`u64::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.from_be_bytes
5812 [`u64::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.from_le_bytes
5813 [`u64::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.from_ne_bytes
5814 [`u64::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.to_be_bytes
5815 [`u64::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.to_le_bytes
5816 [`u64::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u64.html#method.to_ne_bytes
5817 [`u8::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.from_be_bytes
5818 [`u8::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.from_le_bytes
5819 [`u8::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.from_ne_bytes
5820 [`u8::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.to_be_bytes
5821 [`u8::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.to_le_bytes
5822 [`u8::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.u8.html#method.to_ne_bytes
5823 [`usize::from_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.from_be_bytes
5824 [`usize::from_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.from_le_bytes
5825 [`usize::from_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.from_ne_bytes
5826 [`usize::to_be_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.to_be_bytes
5827 [`usize::to_le_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.to_le_bytes
5828 [`usize::to_ne_bytes`]: https://doc.rust-lang.org/stable/std/primitive.usize.html#method.to_ne_bytes
5829
5830
5831 Version 1.31.1 (2018-12-20)
5832 ===========================
5833
5834 - [Fix Rust failing to build on `powerpc-unknown-netbsd`][56562]
5835 - [Fix broken go-to-definition in RLS][rls/1171]
5836 - [Fix infinite loop on hover in RLS][rls/1170]
5837
5838 [56562]: https://github.com/rust-lang/rust/pull/56562
5839 [rls/1171]: https://github.com/rust-lang/rls/issues/1171
5840 [rls/1170]: https://github.com/rust-lang/rls/pull/1170
5841
5842 Version 1.31.0 (2018-12-06)
5843 ==========================
5844
5845 Language
5846 --------
5847 - 🎉 [This version marks the release of the 2018 edition of Rust.][54057] 🎉
5848 - [New lifetime elision rules now allow for eliding lifetimes in functions and
5849 impl headers.][54778] E.g. `impl<'a> Reader for BufReader<'a> {}` can now be
5850 `impl Reader for BufReader<'_> {}`. Lifetimes are still required to be defined
5851 in structs.
5852 - [You can now define and use `const` functions.][54835] These are currently
5853 a strict minimal subset of the [const fn RFC][RFC-911]. Refer to the
5854 [language reference][const-reference] for what exactly is available.
5855 - [You can now use tool lints, which allow you to scope lints from external
5856 tools using attributes.][54870] E.g. `#[allow(clippy::filter_map)]`.
5857 - [`#[no_mangle]` and `#[export_name]` attributes can now be located anywhere in
5858 a crate, not just in exported functions.][54451]
5859 - [You can now use parentheses in pattern matches.][54497]
5860
5861 Compiler
5862 --------
5863 - [Updated musl to 1.1.20][54430]
5864
5865 Libraries
5866 ---------
5867 - [You can now convert `num::NonZero*` types to their raw equivalents using the
5868 `From` trait.][54240] E.g. `u8` now implements `From<NonZeroU8>`.
5869 - [You can now convert a `&Option<T>` into `Option<&T>` and `&mut Option<T>`
5870 into `Option<&mut T>` using the `From` trait.][53218]
5871 - [You can now multiply (`*`) a `time::Duration` by a `u32`.][52813]
5872
5873
5874 Stabilized APIs
5875 ---------------
5876 - [`slice::align_to`]
5877 - [`slice::align_to_mut`]
5878 - [`slice::chunks_exact`]
5879 - [`slice::chunks_exact_mut`]
5880 - [`slice::rchunks`]
5881 - [`slice::rchunks_mut`]
5882 - [`slice::rchunks_exact`]
5883 - [`slice::rchunks_exact_mut`]
5884 - [`Option::replace`]
5885
5886 Cargo
5887 -----
5888 - [Cargo will now download crates in parallel using HTTP/2.][cargo/6005]
5889 - [You can now rename packages in your Cargo.toml][cargo/6319] We have a guide
5890 on [how to use the `package` key in your dependencies.][cargo-rename-reference]
5891
5892 [52813]: https://github.com/rust-lang/rust/pull/52813/
5893 [53218]: https://github.com/rust-lang/rust/pull/53218/
5894 [54057]: https://github.com/rust-lang/rust/pull/54057/
5895 [54240]: https://github.com/rust-lang/rust/pull/54240/
5896 [54430]: https://github.com/rust-lang/rust/pull/54430/
5897 [54451]: https://github.com/rust-lang/rust/pull/54451/
5898 [54497]: https://github.com/rust-lang/rust/pull/54497/
5899 [54778]: https://github.com/rust-lang/rust/pull/54778/
5900 [54835]: https://github.com/rust-lang/rust/pull/54835/
5901 [54870]: https://github.com/rust-lang/rust/pull/54870/
5902 [RFC-911]: https://github.com/rust-lang/rfcs/pull/911
5903 [`Option::replace`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.replace
5904 [`slice::align_to_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.align_to_mut
5905 [`slice::align_to`]: https://doc.rust-lang.org/std/primitive.slice.html#method.align_to
5906 [`slice::chunks_exact_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.chunks_exact_mut
5907 [`slice::chunks_exact`]: https://doc.rust-lang.org/std/primitive.slice.html#method.chunks_exact
5908 [`slice::rchunks_exact_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_mut
5909 [`slice::rchunks_exact`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_exact
5910 [`slice::rchunks_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks_mut
5911 [`slice::rchunks`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rchunks
5912 [cargo/6005]: https://github.com/rust-lang/cargo/pull/6005/
5913 [cargo/6319]: https://github.com/rust-lang/cargo/pull/6319/
5914 [cargo-rename-reference]: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#renaming-dependencies-in-cargotoml
5915 [const-reference]: https://doc.rust-lang.org/reference/items/functions.html#const-functions
5916
5917 Version 1.30.1 (2018-11-08)
5918 ===========================
5919
5920 - [Fixed overflow ICE in rustdoc][54199]
5921 - [Cap Cargo progress bar width at 60 in MSYS terminals][cargo/6122]
5922
5923 [54199]: https://github.com/rust-lang/rust/pull/54199
5924 [cargo/6122]: https://github.com/rust-lang/cargo/pull/6122
5925
5926 Version 1.30.0 (2018-10-25)
5927 ==========================
5928
5929 Language
5930 --------
5931 - [Procedural macros are now available.][52081] These kinds of macros allow for
5932 more powerful code generation. There is a [new chapter available][proc-macros]
5933 in the Rust Programming Language book that goes further in depth.
5934 - [You can now use keywords as identifiers using the raw identifiers
5935 syntax (`r#`),][53236] e.g. `let r#for = true;`
5936 - [Using anonymous parameters in traits is now deprecated with a warning and
5937 will be a hard error in the 2018 edition.][53272]
5938 - [You can now use `crate` in paths.][54404] This allows you to refer to the
5939 crate root in the path, e.g. `use crate::foo;` refers to `foo` in `src/lib.rs`.
5940 - [Using a external crate no longer requires being prefixed with `::`.][54404]
5941 Previously, using a external crate in a module without a use statement
5942 required `let json = ::serde_json::from_str(foo);` but can now be written
5943 as `let json = serde_json::from_str(foo);`.
5944 - [You can now apply the `#[used]` attribute to static items to prevent the
5945 compiler from optimising them away, even if they appear to be unused,][51363]
5946 e.g. `#[used] static FOO: u32 = 1;`
5947 - [You can now import and reexport macros from other crates with the `use`
5948 syntax.][50911] Macros exported with `#[macro_export]` are now placed into
5949 the root module of the crate. If your macro relies on calling other local
5950 macros, it is recommended to export with the
5951 `#[macro_export(local_inner_macros)]` attribute so users won't have to import
5952 those macros.
5953 - [You can now catch visibility keywords (e.g. `pub`, `pub(crate)`) in macros
5954 using the `vis` specifier.][53370]
5955 - [Non-macro attributes now allow all forms of literals, not just
5956 strings.][53044] Previously, you would write `#[attr("true")]`, and you can now
5957 write `#[attr(true)]`.
5958 - [You can now specify a function to handle a panic in the Rust runtime with the
5959 `#[panic_handler]` attribute.][51366]
5960
5961 Compiler
5962 --------
5963 - [Added the `riscv32imc-unknown-none-elf` target.][53822]
5964 - [Added the `aarch64-unknown-netbsd` target][53165]
5965 - [Upgraded to LLVM 8.][53611]
5966
5967 Libraries
5968 ---------
5969 - [`ManuallyDrop` now allows the inner type to be unsized.][53033]
5970
5971 Stabilized APIs
5972 ---------------
5973 - [`Ipv4Addr::BROADCAST`]
5974 - [`Ipv4Addr::LOCALHOST`]
5975 - [`Ipv4Addr::UNSPECIFIED`]
5976 - [`Ipv6Addr::LOCALHOST`]
5977 - [`Ipv6Addr::UNSPECIFIED`]
5978 - [`Iterator::find_map`]
5979
5980 The following methods are replacement methods for `trim_left`, `trim_right`,
5981 `trim_left_matches`, and `trim_right_matches`, which will be deprecated
5982 in 1.33.0:
5983 - [`str::trim_end_matches`]
5984 - [`str::trim_end`]
5985 - [`str::trim_start_matches`]
5986 - [`str::trim_start`]
5987
5988 Cargo
5989 ----
5990 - [`cargo run` doesn't require specifying a package in workspaces.][cargo/5877]
5991 - [`cargo doc` now supports `--message-format=json`.][cargo/5878] This is
5992 equivalent to calling `rustdoc --error-format=json`.
5993 - [Cargo will now provide a progress bar for builds.][cargo/5995]
5994
5995 Misc
5996 ----
5997 - [`rustdoc` allows you to specify what edition to treat your code as with the
5998 `--edition` option.][54057]
5999 - [`rustdoc` now has the `--color` (specify whether to output color) and
6000 `--error-format` (specify error format, e.g. `json`) options.][53003]
6001 - [We now distribute a `rust-gdbgui` script that invokes `gdbgui` with Rust
6002 debug symbols.][53774]
6003 - [Attributes from Rust tools such as `rustfmt` or `clippy` are now
6004 available,][53459] e.g. `#[rustfmt::skip]` will skip formatting the next item.
6005
6006 [50911]: https://github.com/rust-lang/rust/pull/50911/
6007 [51363]: https://github.com/rust-lang/rust/pull/51363/
6008 [51366]: https://github.com/rust-lang/rust/pull/51366/
6009 [52081]: https://github.com/rust-lang/rust/pull/52081/
6010 [53003]: https://github.com/rust-lang/rust/pull/53003/
6011 [53033]: https://github.com/rust-lang/rust/pull/53033/
6012 [53044]: https://github.com/rust-lang/rust/pull/53044/
6013 [53165]: https://github.com/rust-lang/rust/pull/53165/
6014 [53611]: https://github.com/rust-lang/rust/pull/53611/
6015 [53236]: https://github.com/rust-lang/rust/pull/53236/
6016 [53272]: https://github.com/rust-lang/rust/pull/53272/
6017 [53370]: https://github.com/rust-lang/rust/pull/53370/
6018 [53459]: https://github.com/rust-lang/rust/pull/53459/
6019 [53774]: https://github.com/rust-lang/rust/pull/53774/
6020 [53822]: https://github.com/rust-lang/rust/pull/53822/
6021 [54057]: https://github.com/rust-lang/rust/pull/54057/
6022 [54404]: https://github.com/rust-lang/rust/pull/54404/
6023 [cargo/5877]: https://github.com/rust-lang/cargo/pull/5877/
6024 [cargo/5878]: https://github.com/rust-lang/cargo/pull/5878/
6025 [cargo/5995]: https://github.com/rust-lang/cargo/pull/5995/
6026 [proc-macros]: https://doc.rust-lang.org/nightly/book/2018-edition/ch19-06-macros.html
6027
6028 [`Ipv4Addr::BROADCAST`]: https://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#associatedconstant.BROADCAST
6029 [`Ipv4Addr::LOCALHOST`]: https://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#associatedconstant.LOCALHOST
6030 [`Ipv4Addr::UNSPECIFIED`]: https://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#associatedconstant.UNSPECIFIED
6031 [`Ipv6Addr::LOCALHOST`]: https://doc.rust-lang.org/nightly/std/net/struct.Ipv6Addr.html#associatedconstant.LOCALHOST
6032 [`Ipv6Addr::UNSPECIFIED`]: https://doc.rust-lang.org/nightly/std/net/struct.Ipv6Addr.html#associatedconstant.UNSPECIFIED
6033 [`Iterator::find_map`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.find_map
6034 [`str::trim_end_matches`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.trim_end_matches
6035 [`str::trim_end`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.trim_end
6036 [`str::trim_start_matches`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.trim_start_matches
6037 [`str::trim_start`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.trim_start
6038
6039
6040 Version 1.29.2 (2018-10-11)
6041 ===========================
6042
6043 - [Workaround for an aliasing-related LLVM bug, which caused miscompilation.][54639]
6044 - The `rls-preview` component on the windows-gnu targets has been restored.
6045
6046 [54639]: https://github.com/rust-lang/rust/pull/54639
6047
6048
6049 Version 1.29.1 (2018-09-25)
6050 ===========================
6051
6052 Security Notes
6053 --------------
6054
6055 - The standard library's `str::repeat` function contained an out of bounds write
6056 caused by an integer overflow. This has been fixed by deterministically
6057 panicking when an overflow happens.
6058
6059 Thank you to Scott McMurray for responsibly disclosing this vulnerability to
6060 us.
6061
6062
6063 Version 1.29.0 (2018-09-13)
6064 ==========================
6065
6066 Compiler
6067 --------
6068 - [Bumped minimum LLVM version to 5.0.][51899]
6069 - [Added `powerpc64le-unknown-linux-musl` target.][51619]
6070 - [Added `aarch64-unknown-hermit` and `x86_64-unknown-hermit` targets.][52861]
6071 - [Upgraded to LLVM 7.][51966]
6072
6073 Libraries
6074 ---------
6075 - [`Once::call_once` no longer requires `Once` to be `'static`.][52239]
6076 - [`BuildHasherDefault` now implements `PartialEq` and `Eq`.][52402]
6077 - [`Box<CStr>`, `Box<OsStr>`, and `Box<Path>` now implement `Clone`.][51912]
6078 - [Implemented `PartialEq<&str>` for `OsString` and `PartialEq<OsString>`
6079 for `&str`.][51178]
6080 - [`Cell<T>` now allows `T` to be unsized.][50494]
6081 - [`SocketAddr` is now stable on Redox.][52656]
6082
6083 Stabilized APIs
6084 ---------------
6085 - [`Arc::downcast`]
6086 - [`Iterator::flatten`]
6087 - [`Rc::downcast`]
6088
6089 Cargo
6090 -----
6091 - [Cargo can silently fix some bad lockfiles.][cargo/5831] You can use
6092 `--locked` to disable this behavior.
6093 - [`cargo-install` will now allow you to cross compile an install
6094 using `--target`.][cargo/5614]
6095 - [Added the `cargo-fix` subcommand to automatically move project code from
6096 2015 edition to 2018.][cargo/5723]
6097 - [`cargo doc` can now optionally document private types using the
6098 `--document-private-items` flag.][cargo/5543]
6099
6100 Misc
6101 ----
6102 - [`rustdoc` now has the `--cap-lints` option which demotes all lints above
6103 the specified level to that level.][52354] For example `--cap-lints warn`
6104 will demote `deny` and `forbid` lints to `warn`.
6105 - [`rustc` and `rustdoc` will now have the exit code of `1` if compilation
6106 fails and `101` if there is a panic.][52197]
6107 - [A preview of clippy has been made available through rustup.][51122]
6108 You can install the preview with `rustup component add clippy-preview`.
6109
6110 Compatibility Notes
6111 -------------------
6112 - [`str::{slice_unchecked, slice_unchecked_mut}` are now deprecated.][51807]
6113 Use `str::get_unchecked(begin..end)` instead.
6114 - [`std::env::home_dir` is now deprecated for its unintuitive behavior.][51656]
6115 Consider using the `home_dir` function from
6116 https://crates.io/crates/dirs instead.
6117 - [`rustc` will no longer silently ignore invalid data in target spec.][52330]
6118 - [`cfg` attributes and `--cfg` command line flags are now more
6119 strictly validated.][53893]
6120
6121 [53893]: https://github.com/rust-lang/rust/pull/53893/
6122 [52861]: https://github.com/rust-lang/rust/pull/52861/
6123 [51966]: https://github.com/rust-lang/rust/pull/51966/
6124 [52656]: https://github.com/rust-lang/rust/pull/52656/
6125 [52239]: https://github.com/rust-lang/rust/pull/52239/
6126 [52330]: https://github.com/rust-lang/rust/pull/52330/
6127 [52354]: https://github.com/rust-lang/rust/pull/52354/
6128 [52402]: https://github.com/rust-lang/rust/pull/52402/
6129 [52197]: https://github.com/rust-lang/rust/pull/52197/
6130 [51807]: https://github.com/rust-lang/rust/pull/51807/
6131 [51899]: https://github.com/rust-lang/rust/pull/51899/
6132 [51912]: https://github.com/rust-lang/rust/pull/51912/
6133 [51619]: https://github.com/rust-lang/rust/pull/51619/
6134 [51656]: https://github.com/rust-lang/rust/pull/51656/
6135 [51178]: https://github.com/rust-lang/rust/pull/51178/
6136 [51122]: https://github.com/rust-lang/rust/pull/51122
6137 [50494]: https://github.com/rust-lang/rust/pull/50494/
6138 [cargo/5543]: https://github.com/rust-lang/cargo/pull/5543
6139 [cargo/5614]: https://github.com/rust-lang/cargo/pull/5614/
6140 [cargo/5723]: https://github.com/rust-lang/cargo/pull/5723/
6141 [cargo/5831]: https://github.com/rust-lang/cargo/pull/5831/
6142 [`Arc::downcast`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.downcast
6143 [`Iterator::flatten`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.flatten
6144 [`Rc::downcast`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.downcast
6145
6146
6147 Version 1.28.0 (2018-08-02)
6148 ===========================
6149
6150 Language
6151 --------
6152 - [The `#[repr(transparent)]` attribute is now stable.][51562] This attribute
6153 allows a Rust newtype wrapper (`struct NewType<T>(T);`) to be represented as
6154 the inner type across Foreign Function Interface (FFI) boundaries.
6155 - [The keywords `pure`, `sizeof`, `alignof`, and `offsetof` have been unreserved
6156 and can now be used as identifiers.][51196]
6157 - [The `GlobalAlloc` trait and `#[global_allocator]` attribute are now
6158 stable.][51241] This will allow users to specify a global allocator for
6159 their program.
6160 - [Unit test functions marked with the `#[test]` attribute can now return
6161 `Result<(), E: Debug>` in addition to `()`.][51298]
6162 - [The `lifetime` specifier for `macro_rules!` is now stable.][50385] This
6163 allows macros to easily target lifetimes.
6164
6165 Compiler
6166 --------
6167 - [The `s` and `z` optimisation levels are now stable.][50265] These optimisations
6168 prioritise making smaller binary sizes. `z` is the same as `s` with the
6169 exception that it does not vectorise loops, which typically results in an even
6170 smaller binary.
6171 - [The short error format is now stable.][49546] Specified with
6172 `--error-format=short` this option will provide a more compressed output of
6173 rust error messages.
6174 - [Added a lint warning when you have duplicated `macro_export`s.][50143]
6175 - [Reduced the number of allocations in the macro parser.][50855] This can
6176 improve compile times of macro heavy crates on average by 5%.
6177
6178 Libraries
6179 ---------
6180 - [Implemented `Default` for `&mut str`.][51306]
6181 - [Implemented `From<bool>` for all integer and unsigned number types.][50554]
6182 - [Implemented `Extend` for `()`.][50234]
6183 - [The `Debug` implementation of `time::Duration` should now be more easily
6184 human readable.][50364] Previously a `Duration` of one second would printed as
6185 `Duration { secs: 1, nanos: 0 }` and will now be printed as `1s`.
6186 - [Implemented `From<&String>` for `Cow<str>`, `From<&Vec<T>>` for `Cow<[T]>`,
6187 `From<Cow<CStr>>` for `CString`, `From<CString>, From<CStr>, From<&CString>`
6188 for `Cow<CStr>`, `From<OsString>, From<OsStr>, From<&OsString>` for
6189 `Cow<OsStr>`, `From<&PathBuf>` for `Cow<Path>`, and `From<Cow<Path>>`
6190 for `PathBuf`.][50170]
6191 - [Implemented `Shl` and `Shr` for `Wrapping<u128>`
6192 and `Wrapping<i128>`.][50465]
6193 - [`DirEntry::metadata` now uses `fstatat` instead of `lstat` when
6194 possible.][51050] This can provide up to a 40% speed increase.
6195 - [Improved error messages when using `format!`.][50610]
6196
6197 Stabilized APIs
6198 ---------------
6199 - [`Iterator::step_by`]
6200 - [`Path::ancestors`]
6201 - [`SystemTime::UNIX_EPOCH`]
6202 - [`alloc::GlobalAlloc`]
6203 - [`alloc::Layout`]
6204 - [`alloc::LayoutErr`]
6205 - [`alloc::System`]
6206 - [`alloc::alloc`]
6207 - [`alloc::alloc_zeroed`]
6208 - [`alloc::dealloc`]
6209 - [`alloc::realloc`]
6210 - [`alloc::handle_alloc_error`]
6211 - [`btree_map::Entry::or_default`]
6212 - [`fmt::Alignment`]
6213 - [`hash_map::Entry::or_default`]
6214 - [`iter::repeat_with`]
6215 - [`num::NonZeroUsize`]
6216 - [`num::NonZeroU128`]
6217 - [`num::NonZeroU16`]
6218 - [`num::NonZeroU32`]
6219 - [`num::NonZeroU64`]
6220 - [`num::NonZeroU8`]
6221 - [`ops::RangeBounds`]
6222 - [`slice::SliceIndex`]
6223 - [`slice::from_mut`]
6224 - [`slice::from_ref`]
6225 - [`{Any + Send + Sync}::downcast_mut`]
6226 - [`{Any + Send + Sync}::downcast_ref`]
6227 - [`{Any + Send + Sync}::is`]
6228
6229 Cargo
6230 -----
6231 - [Cargo will now no longer allow you to publish crates with build scripts that
6232 modify the `src` directory.][cargo/5584] The `src` directory in a crate should be
6233 considered to be immutable.
6234
6235 Misc
6236 ----
6237 - [The `suggestion_applicability` field in `rustc`'s json output is now
6238 stable.][50486] This will allow dev tools to check whether a code suggestion
6239 would apply to them.
6240
6241 Compatibility Notes
6242 -------------------
6243 - [Rust will consider trait objects with duplicated constraints to be the same
6244 type as without the duplicated constraint.][51276] For example the below code will
6245 now fail to compile.
6246 ```rust
6247 trait Trait {}
6248
6249 impl Trait + Send {
6250 fn test(&self) { println!("one"); } //~ ERROR duplicate definitions with name `test`
6251 }
6252
6253 impl Trait + Send + Send {
6254 fn test(&self) { println!("two"); }
6255 }
6256 ```
6257
6258 [49546]: https://github.com/rust-lang/rust/pull/49546/
6259 [50143]: https://github.com/rust-lang/rust/pull/50143/
6260 [50170]: https://github.com/rust-lang/rust/pull/50170/
6261 [50234]: https://github.com/rust-lang/rust/pull/50234/
6262 [50265]: https://github.com/rust-lang/rust/pull/50265/
6263 [50364]: https://github.com/rust-lang/rust/pull/50364/
6264 [50385]: https://github.com/rust-lang/rust/pull/50385/
6265 [50465]: https://github.com/rust-lang/rust/pull/50465/
6266 [50486]: https://github.com/rust-lang/rust/pull/50486/
6267 [50554]: https://github.com/rust-lang/rust/pull/50554/
6268 [50610]: https://github.com/rust-lang/rust/pull/50610/
6269 [50855]: https://github.com/rust-lang/rust/pull/50855/
6270 [51050]: https://github.com/rust-lang/rust/pull/51050/
6271 [51196]: https://github.com/rust-lang/rust/pull/51196/
6272 [51241]: https://github.com/rust-lang/rust/pull/51241/
6273 [51276]: https://github.com/rust-lang/rust/pull/51276/
6274 [51298]: https://github.com/rust-lang/rust/pull/51298/
6275 [51306]: https://github.com/rust-lang/rust/pull/51306/
6276 [51562]: https://github.com/rust-lang/rust/pull/51562/
6277 [cargo/5584]: https://github.com/rust-lang/cargo/pull/5584/
6278 [`Iterator::step_by`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.step_by
6279 [`Path::ancestors`]: https://doc.rust-lang.org/std/path/struct.Path.html#method.ancestors
6280 [`SystemTime::UNIX_EPOCH`]: https://doc.rust-lang.org/std/time/struct.SystemTime.html#associatedconstant.UNIX_EPOCH
6281 [`alloc::GlobalAlloc`]: https://doc.rust-lang.org/std/alloc/trait.GlobalAlloc.html
6282 [`alloc::Layout`]: https://doc.rust-lang.org/std/alloc/struct.Layout.html
6283 [`alloc::LayoutErr`]: https://doc.rust-lang.org/std/alloc/struct.LayoutErr.html
6284 [`alloc::System`]: https://doc.rust-lang.org/std/alloc/struct.System.html
6285 [`alloc::alloc`]: https://doc.rust-lang.org/std/alloc/fn.alloc.html
6286 [`alloc::alloc_zeroed`]: https://doc.rust-lang.org/std/alloc/fn.alloc_zeroed.html
6287 [`alloc::dealloc`]: https://doc.rust-lang.org/std/alloc/fn.dealloc.html
6288 [`alloc::realloc`]: https://doc.rust-lang.org/std/alloc/fn.realloc.html
6289 [`alloc::handle_alloc_error`]: https://doc.rust-lang.org/std/alloc/fn.handle_alloc_error.html
6290 [`btree_map::Entry::or_default`]: https://doc.rust-lang.org/std/collections/btree_map/enum.Entry.html#method.or_default
6291 [`fmt::Alignment`]: https://doc.rust-lang.org/std/fmt/enum.Alignment.html
6292 [`hash_map::Entry::or_default`]: https://doc.rust-lang.org/std/collections/hash_map/enum.Entry.html#method.or_default
6293 [`iter::repeat_with`]: https://doc.rust-lang.org/std/iter/fn.repeat_with.html
6294 [`num::NonZeroUsize`]: https://doc.rust-lang.org/std/num/struct.NonZeroUsize.html
6295 [`num::NonZeroU128`]: https://doc.rust-lang.org/std/num/struct.NonZeroU128.html
6296 [`num::NonZeroU16`]: https://doc.rust-lang.org/std/num/struct.NonZeroU16.html
6297 [`num::NonZeroU32`]: https://doc.rust-lang.org/std/num/struct.NonZeroU32.html
6298 [`num::NonZeroU64`]: https://doc.rust-lang.org/std/num/struct.NonZeroU64.html
6299 [`num::NonZeroU8`]: https://doc.rust-lang.org/std/num/struct.NonZeroU8.html
6300 [`ops::RangeBounds`]: https://doc.rust-lang.org/std/ops/trait.RangeBounds.html
6301 [`slice::SliceIndex`]: https://doc.rust-lang.org/std/slice/trait.SliceIndex.html
6302 [`slice::from_mut`]: https://doc.rust-lang.org/std/slice/fn.from_mut.html
6303 [`slice::from_ref`]: https://doc.rust-lang.org/std/slice/fn.from_ref.html
6304 [`{Any + Send + Sync}::downcast_mut`]: https://doc.rust-lang.org/std/any/trait.Any.html#method.downcast_mut-2
6305 [`{Any + Send + Sync}::downcast_ref`]: https://doc.rust-lang.org/std/any/trait.Any.html#method.downcast_ref-2
6306 [`{Any + Send + Sync}::is`]: https://doc.rust-lang.org/std/any/trait.Any.html#method.is-2
6307
6308 Version 1.27.2 (2018-07-20)
6309 ===========================
6310
6311 Compatibility Notes
6312 -------------------
6313
6314 - The borrow checker was fixed to avoid potential unsoundness when using
6315 match ergonomics: [#52213][52213].
6316
6317 [52213]: https://github.com/rust-lang/rust/issues/52213
6318
6319 Version 1.27.1 (2018-07-10)
6320 ===========================
6321
6322 Security Notes
6323 --------------
6324
6325 - rustdoc would execute plugins in the /tmp/rustdoc/plugins directory
6326 when running, which enabled executing code as some other user on a
6327 given machine. This release fixes that vulnerability; you can read
6328 more about this on the [blog][rustdoc-sec]. The associated CVE is [CVE-2018-1000622].
6329
6330 Thank you to Red Hat for responsibly disclosing this vulnerability to us.
6331
6332 Compatibility Notes
6333 -------------------
6334
6335 - The borrow checker was fixed to avoid an additional potential unsoundness when using
6336 match ergonomics: [#51415][51415], [#49534][49534].
6337
6338 [51415]: https://github.com/rust-lang/rust/issues/51415
6339 [49534]: https://github.com/rust-lang/rust/issues/49534
6340 [rustdoc-sec]: https://blog.rust-lang.org/2018/07/06/security-advisory-for-rustdoc.html
6341 [CVE-2018-1000622]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=%20CVE-2018-1000622
6342
6343 Version 1.27.0 (2018-06-21)
6344 ==========================
6345
6346 Language
6347 --------
6348 - [Removed 'proc' from the reserved keywords list.][49699] This allows `proc` to
6349 be used as an identifier.
6350 - [The dyn syntax is now available.][49968] This syntax is equivalent to the
6351 bare `Trait` syntax, and should make it clearer when being used in tandem with
6352 `impl Trait` because it is equivalent to the following syntax:
6353 `&Trait == &dyn Trait`, `&mut Trait == &mut dyn Trait`, and
6354 `Box<Trait> == Box<dyn Trait>`.
6355 - [Attributes on generic parameters such as types and lifetimes are
6356 now stable.][48851] e.g.
6357 `fn foo<#[lifetime_attr] 'a, #[type_attr] T: 'a>() {}`
6358 - [The `#[must_use]` attribute can now also be used on functions as well as
6359 types.][48925] It provides a lint that by default warns users when the
6360 value returned by a function has not been used.
6361
6362 Compiler
6363 --------
6364 - [Added the `armv5te-unknown-linux-musleabi` target.][50423]
6365
6366 Libraries
6367 ---------
6368 - [SIMD (Single Instruction Multiple Data) on x86/x86_64 is now stable.][49664]
6369 This includes [`arch::x86`] & [`arch::x86_64`] modules which contain
6370 SIMD intrinsics, a new macro called `is_x86_feature_detected!`, the
6371 `#[target_feature(enable="")]` attribute, and adding `target_feature = ""` to
6372 the `cfg` attribute.
6373 - [A lot of methods for `[u8]`, `f32`, and `f64` previously only available in
6374 std are now available in core.][49896]
6375 - [The generic `Rhs` type parameter on `ops::{Shl, ShlAssign, Shr}` now defaults
6376 to `Self`.][49630]
6377 - [`std::str::replace` now has the `#[must_use]` attribute][50177] to clarify
6378 that the operation isn't done in place.
6379 - [`Clone::clone`, `Iterator::collect`, and `ToOwned::to_owned` now have
6380 the `#[must_use]` attribute][49533] to warn about unused potentially
6381 expensive allocations.
6382
6383 Stabilized APIs
6384 ---------------
6385 - [`DoubleEndedIterator::rfind`]
6386 - [`DoubleEndedIterator::rfold`]
6387 - [`DoubleEndedIterator::try_rfold`]
6388 - [`Duration::from_micros`]
6389 - [`Duration::from_nanos`]
6390 - [`Duration::subsec_micros`]
6391 - [`Duration::subsec_millis`]
6392 - [`HashMap::remove_entry`]
6393 - [`Iterator::try_fold`]
6394 - [`Iterator::try_for_each`]
6395 - [`NonNull::cast`]
6396 - [`Option::filter`]
6397 - [`String::replace_range`]
6398 - [`Take::set_limit`]
6399 - [`hint::unreachable_unchecked`]
6400 - [`os::unix::process::parent_id`]
6401 - [`ptr::swap_nonoverlapping`]
6402 - [`slice::rsplit_mut`]
6403 - [`slice::rsplit`]
6404 - [`slice::swap_with_slice`]
6405
6406 Cargo
6407 -----
6408 - [`cargo-metadata` now includes `authors`, `categories`, `keywords`,
6409 `readme`, and `repository` fields.][cargo/5386]
6410 - [`cargo-metadata` now includes a package's `metadata` table.][cargo/5360]
6411 - [Added the `--target-dir` optional argument.][cargo/5393] This allows you to specify
6412 a different directory than `target` for placing compilation artifacts.
6413 - [Cargo will be adding automatic target inference for binaries, benchmarks,
6414 examples, and tests in the Rust 2018 edition.][cargo/5335] If your project specifies
6415 specific targets, e.g. using `[[bin]]`, and have other binaries in locations
6416 where cargo would infer a binary, Cargo will produce a warning. You can
6417 disable this feature ahead of time by setting any of the following to false:
6418 `autobins`, `autobenches`, `autoexamples`, `autotests`.
6419 - [Cargo will now cache compiler information.][cargo/5359] This can be disabled by
6420 setting `CARGO_CACHE_RUSTC_INFO=0` in your environment.
6421
6422 Misc
6423 ----
6424 - [Added “The Rustc book” into the official documentation.][49707]
6425 [“The Rustc book”] documents and teaches how to use the rustc compiler.
6426 - [All books available on `doc.rust-lang.org` are now searchable.][49623]
6427
6428 Compatibility Notes
6429 -------------------
6430 - [Calling a `CharExt` or `StrExt` method directly on core will no longer
6431 work.][49896] e.g. `::core::prelude::v1::StrExt::is_empty("")` will not
6432 compile, `"".is_empty()` will still compile.
6433 - [`Debug` output on `atomic::{AtomicBool, AtomicIsize, AtomicPtr, AtomicUsize}`
6434 will only print the inner type.][48553] E.g.
6435 `print!("{:?}", AtomicBool::new(true))` will print `true`,
6436 not `AtomicBool(true)`.
6437 - [The maximum number for `repr(align(N))` is now 2²⁹.][50378] Previously you
6438 could enter higher numbers but they were not supported by LLVM. Up to 512MB
6439 alignment should cover all use cases.
6440 - The `.description()` method on the `std::error::Error` trait
6441 [has been soft-deprecated][50163]. It is no longer required to implement it.
6442
6443 [48553]: https://github.com/rust-lang/rust/pull/48553/
6444 [48851]: https://github.com/rust-lang/rust/pull/48851/
6445 [48925]: https://github.com/rust-lang/rust/pull/48925/
6446 [49533]: https://github.com/rust-lang/rust/pull/49533/
6447 [49623]: https://github.com/rust-lang/rust/pull/49623/
6448 [49630]: https://github.com/rust-lang/rust/pull/49630/
6449 [49664]: https://github.com/rust-lang/rust/pull/49664/
6450 [49699]: https://github.com/rust-lang/rust/pull/49699/
6451 [49707]: https://github.com/rust-lang/rust/pull/49707/
6452 [49896]: https://github.com/rust-lang/rust/pull/49896/
6453 [49968]: https://github.com/rust-lang/rust/pull/49968/
6454 [50163]: https://github.com/rust-lang/rust/pull/50163
6455 [50177]: https://github.com/rust-lang/rust/pull/50177/
6456 [50378]: https://github.com/rust-lang/rust/pull/50378/
6457 [50423]: https://github.com/rust-lang/rust/pull/50423/
6458 [cargo/5335]: https://github.com/rust-lang/cargo/pull/5335/
6459 [cargo/5359]: https://github.com/rust-lang/cargo/pull/5359/
6460 [cargo/5360]: https://github.com/rust-lang/cargo/pull/5360/
6461 [cargo/5386]: https://github.com/rust-lang/cargo/pull/5386/
6462 [cargo/5393]: https://github.com/rust-lang/cargo/pull/5393/
6463 [`DoubleEndedIterator::rfind`]: https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html#method.rfind
6464 [`DoubleEndedIterator::rfold`]: https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html#method.rfold
6465 [`DoubleEndedIterator::try_rfold`]: https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html#method.try_rfold
6466 [`Duration::from_micros`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.from_micros
6467 [`Duration::from_nanos`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.from_nanos
6468 [`Duration::subsec_micros`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.subsec_micros
6469 [`Duration::subsec_millis`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.subsec_millis
6470 [`HashMap::remove_entry`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.remove_entry
6471 [`Iterator::try_fold`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.try_fold
6472 [`Iterator::try_for_each`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.try_for_each
6473 [`NonNull::cast`]: https://doc.rust-lang.org/std/ptr/struct.NonNull.html#method.cast
6474 [`Option::filter`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.filter
6475 [`String::replace_range`]: https://doc.rust-lang.org/std/string/struct.String.html#method.replace_range
6476 [`Take::set_limit`]: https://doc.rust-lang.org/std/io/struct.Take.html#method.set_limit
6477 [`hint::unreachable_unchecked`]: https://doc.rust-lang.org/std/hint/fn.unreachable_unchecked.html
6478 [`os::unix::process::parent_id`]: https://doc.rust-lang.org/std/os/unix/process/fn.parent_id.html
6479 [`process::id`]: https://doc.rust-lang.org/std/process/fn.id.html
6480 [`ptr::swap_nonoverlapping`]: https://doc.rust-lang.org/std/ptr/fn.swap_nonoverlapping.html
6481 [`slice::rsplit_mut`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rsplit_mut
6482 [`slice::rsplit`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rsplit
6483 [`slice::swap_with_slice`]: https://doc.rust-lang.org/std/primitive.slice.html#method.swap_with_slice
6484 [`arch::x86_64`]: https://doc.rust-lang.org/std/arch/x86_64/index.html
6485 [`arch::x86`]: https://doc.rust-lang.org/std/arch/x86/index.html
6486 [“The Rustc book”]: https://doc.rust-lang.org/rustc
6487
6488
6489 Version 1.26.2 (2018-06-05)
6490 ==========================
6491
6492 Compatibility Notes
6493 -------------------
6494
6495 - [The borrow checker was fixed to avoid unsoundness when using match ergonomics.][51117]
6496
6497 [51117]: https://github.com/rust-lang/rust/issues/51117
6498
6499
6500 Version 1.26.1 (2018-05-29)
6501 ==========================
6502
6503 Tools
6504 -----
6505
6506 - [RLS now works on Windows.][50646]
6507 - [Rustfmt stopped badly formatting text in some cases.][rustfmt/2695]
6508
6509
6510 Compatibility Notes
6511 --------
6512
6513 - [`fn main() -> impl Trait` no longer works for non-Termination
6514 trait.][50656]
6515 This reverts an accidental stabilization.
6516 - [`NaN > NaN` no longer returns true in const-fn contexts.][50812]
6517 - [Prohibit using turbofish for `impl Trait` in method arguments.][50950]
6518
6519 [50646]: https://github.com/rust-lang/rust/issues/50646
6520 [50656]: https://github.com/rust-lang/rust/pull/50656
6521 [50812]: https://github.com/rust-lang/rust/pull/50812
6522 [50950]: https://github.com/rust-lang/rust/issues/50950
6523 [rustfmt/2695]: https://github.com/rust-lang-nursery/rustfmt/issues/2695
6524
6525 Version 1.26.0 (2018-05-10)
6526 ==========================
6527
6528 Language
6529 --------
6530 - [Closures now implement `Copy` and/or `Clone` if all captured variables
6531 implement either or both traits.][49299]
6532 - [The inclusive range syntax e.g. `for x in 0..=10` is now stable.][47813]
6533 - [The `'_` lifetime is now stable. The underscore lifetime can be used anywhere a
6534 lifetime can be elided.][49458]
6535 - [`impl Trait` is now stable allowing you to have abstract types in returns
6536 or in function parameters.][49255] E.g. `fn foo() -> impl Iterator<Item=u8>` or
6537 `fn open(path: impl AsRef<Path>)`.
6538 - [Pattern matching will now automatically apply dereferences.][49394]
6539 - [128-bit integers in the form of `u128` and `i128` are now stable.][49101]
6540 - [`main` can now return `Result<(), E: Debug>`][49162] in addition to `()`.
6541 - [A lot of operations are now available in a const context.][46882] E.g. You
6542 can now index into constant arrays, reference and dereference into constants,
6543 and use tuple struct constructors.
6544 - [Fixed entry slice patterns are now stable.][48516] E.g.
6545 ```rust
6546 let points = [1, 2, 3, 4];
6547 match points {
6548 [1, 2, 3, 4] => println!("All points were sequential."),
6549 _ => println!("Not all points were sequential."),
6550 }
6551 ```
6552
6553
6554 Compiler
6555 --------
6556 - [LLD is now used as the default linker for `wasm32-unknown-unknown`.][48125]
6557 - [Fixed exponential projection complexity on nested types.][48296]
6558 This can provide up to a ~12% reduction in compile times for certain crates.
6559 - [Added the `--remap-path-prefix` option to rustc.][48359] Allowing you
6560 to remap path prefixes outputted by the compiler.
6561 - [Added `powerpc-unknown-netbsd` target.][48281]
6562
6563 Libraries
6564 ---------
6565 - [Implemented `From<u16> for usize` & `From<{u8, i16}> for isize`.][49305]
6566 - [Added hexadecimal formatting for integers with fmt::Debug][48978]
6567 e.g. `assert!(format!("{:02x?}", b"Foo\0") == "[46, 6f, 6f, 00]")`
6568 - [Implemented `Default, Hash` for `cmp::Reverse`.][48628]
6569 - [Optimized `str::repeat` being 8x faster in large cases.][48657]
6570 - [`ascii::escape_default` is now available in libcore.][48735]
6571 - [Trailing commas are now supported in std and core macros.][48056]
6572 - [Implemented `Copy, Clone` for `cmp::Reverse`][47379]
6573 - [Implemented `Clone` for `char::{ToLowercase, ToUppercase}`.][48629]
6574
6575 Stabilized APIs
6576 ---------------
6577 - [`*const T::add`]
6578 - [`*const T::copy_to_nonoverlapping`]
6579 - [`*const T::copy_to`]
6580 - [`*const T::read_unaligned`]
6581 - [`*const T::read_volatile`]
6582 - [`*const T::read`]
6583 - [`*const T::sub`]
6584 - [`*const T::wrapping_add`]
6585 - [`*const T::wrapping_sub`]
6586 - [`*mut T::add`]
6587 - [`*mut T::copy_to_nonoverlapping`]
6588 - [`*mut T::copy_to`]
6589 - [`*mut T::read_unaligned`]
6590 - [`*mut T::read_volatile`]
6591 - [`*mut T::read`]
6592 - [`*mut T::replace`]
6593 - [`*mut T::sub`]
6594 - [`*mut T::swap`]
6595 - [`*mut T::wrapping_add`]
6596 - [`*mut T::wrapping_sub`]
6597 - [`*mut T::write_bytes`]
6598 - [`*mut T::write_unaligned`]
6599 - [`*mut T::write_volatile`]
6600 - [`*mut T::write`]
6601 - [`Box::leak`]
6602 - [`FromUtf8Error::as_bytes`]
6603 - [`LocalKey::try_with`]
6604 - [`Option::cloned`]
6605 - [`btree_map::Entry::and_modify`]
6606 - [`fs::read_to_string`]
6607 - [`fs::read`]
6608 - [`fs::write`]
6609 - [`hash_map::Entry::and_modify`]
6610 - [`iter::FusedIterator`]
6611 - [`ops::RangeInclusive`]
6612 - [`ops::RangeToInclusive`]
6613 - [`process::id`]
6614 - [`slice::rotate_left`]
6615 - [`slice::rotate_right`]
6616 - [`String::retain`]
6617
6618
6619 Cargo
6620 -----
6621 - [Cargo will now output path to custom commands when `-v` is
6622 passed with `--list`][cargo/5041]
6623 - [The Cargo binary version is now the same as the Rust version][cargo/5083]
6624
6625 Misc
6626 ----
6627 - [The second edition of "The Rust Programming Language" book is now recommended
6628 over the first.][48404]
6629
6630 Compatibility Notes
6631 -------------------
6632
6633 - [aliasing a `Fn` trait as `dyn` no longer works.][48481] E.g. the following
6634 syntax is now invalid.
6635 ```
6636 use std::ops::Fn as dyn;
6637 fn g(_: Box<dyn(std::fmt::Debug)>) {}
6638 ```
6639 - [The result of dereferences are no longer promoted to `'static`.][47408]
6640 e.g.
6641 ```rust
6642 fn main() {
6643 const PAIR: &(i32, i32) = &(0, 1);
6644 let _reversed_pair: &'static _ = &(PAIR.1, PAIR.0); // Doesn't work
6645 }
6646 ```
6647 - [Deprecate `AsciiExt` trait in favor of inherent methods.][49109]
6648 - [`".e0"` will now no longer parse as `0.0` and will instead cause
6649 an error.][48235]
6650 - [Removed hoedown from rustdoc.][48274]
6651 - [Bounds on higher-kinded lifetimes a hard error.][48326]
6652
6653 [46882]: https://github.com/rust-lang/rust/pull/46882
6654 [47379]: https://github.com/rust-lang/rust/pull/47379
6655 [47408]: https://github.com/rust-lang/rust/pull/47408
6656 [47813]: https://github.com/rust-lang/rust/pull/47813
6657 [48056]: https://github.com/rust-lang/rust/pull/48056
6658 [48125]: https://github.com/rust-lang/rust/pull/48125
6659 [48235]: https://github.com/rust-lang/rust/pull/48235
6660 [48274]: https://github.com/rust-lang/rust/pull/48274
6661 [48281]: https://github.com/rust-lang/rust/pull/48281
6662 [48296]: https://github.com/rust-lang/rust/pull/48296
6663 [48326]: https://github.com/rust-lang/rust/pull/48326
6664 [48359]: https://github.com/rust-lang/rust/pull/48359
6665 [48404]: https://github.com/rust-lang/rust/pull/48404
6666 [48481]: https://github.com/rust-lang/rust/pull/48481
6667 [48516]: https://github.com/rust-lang/rust/pull/48516
6668 [48628]: https://github.com/rust-lang/rust/pull/48628
6669 [48629]: https://github.com/rust-lang/rust/pull/48629
6670 [48657]: https://github.com/rust-lang/rust/pull/48657
6671 [48735]: https://github.com/rust-lang/rust/pull/48735
6672 [48978]: https://github.com/rust-lang/rust/pull/48978
6673 [49101]: https://github.com/rust-lang/rust/pull/49101
6674 [49109]: https://github.com/rust-lang/rust/pull/49109
6675 [49162]: https://github.com/rust-lang/rust/pull/49162
6676 [49255]: https://github.com/rust-lang/rust/pull/49255
6677 [49299]: https://github.com/rust-lang/rust/pull/49299
6678 [49305]: https://github.com/rust-lang/rust/pull/49305
6679 [49394]: https://github.com/rust-lang/rust/pull/49394
6680 [49458]: https://github.com/rust-lang/rust/pull/49458
6681 [`*const T::add`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.add
6682 [`*const T::copy_to_nonoverlapping`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.copy_to_nonoverlapping
6683 [`*const T::copy_to`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.copy_to
6684 [`*const T::read_unaligned`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read_unaligned
6685 [`*const T::read_volatile`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read_volatile
6686 [`*const T::read`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read
6687 [`*const T::sub`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.sub
6688 [`*const T::wrapping_add`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_add
6689 [`*const T::wrapping_sub`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_sub
6690 [`*mut T::add`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.add-1
6691 [`*mut T::copy_to_nonoverlapping`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.copy_to_nonoverlapping-1
6692 [`*mut T::copy_to`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.copy_to-1
6693 [`*mut T::read_unaligned`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read_unaligned-1
6694 [`*mut T::read_volatile`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read_volatile-1
6695 [`*mut T::read`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.read-1
6696 [`*mut T::replace`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.replace
6697 [`*mut T::sub`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.sub-1
6698 [`*mut T::swap`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.swap
6699 [`*mut T::wrapping_add`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_add-1
6700 [`*mut T::wrapping_sub`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_sub-1
6701 [`*mut T::write_bytes`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.write_bytes
6702 [`*mut T::write_unaligned`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.write_unaligned
6703 [`*mut T::write_volatile`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.write_volatile
6704 [`*mut T::write`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.write
6705 [`Box::leak`]: https://doc.rust-lang.org/std/boxed/struct.Box.html#method.leak
6706 [`FromUtf8Error::as_bytes`]: https://doc.rust-lang.org/std/string/struct.FromUtf8Error.html#method.as_bytes
6707 [`LocalKey::try_with`]: https://doc.rust-lang.org/std/thread/struct.LocalKey.html#method.try_with
6708 [`Option::cloned`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.cloned
6709 [`btree_map::Entry::and_modify`]: https://doc.rust-lang.org/std/collections/btree_map/enum.Entry.html#method.and_modify
6710 [`fs::read_to_string`]: https://doc.rust-lang.org/std/fs/fn.read_to_string.html
6711 [`fs::read`]: https://doc.rust-lang.org/std/fs/fn.read.html
6712 [`fs::write`]: https://doc.rust-lang.org/std/fs/fn.write.html
6713 [`hash_map::Entry::and_modify`]: https://doc.rust-lang.org/std/collections/hash_map/enum.Entry.html#method.and_modify
6714 [`iter::FusedIterator`]: https://doc.rust-lang.org/std/iter/trait.FusedIterator.html
6715 [`ops::RangeInclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html
6716 [`ops::RangeToInclusive`]: https://doc.rust-lang.org/std/ops/struct.RangeToInclusive.html
6717 [`process::id`]: https://doc.rust-lang.org/std/process/fn.id.html
6718 [`slice::rotate_left`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rotate_left
6719 [`slice::rotate_right`]: https://doc.rust-lang.org/std/primitive.slice.html#method.rotate_right
6720 [`String::retain`]: https://doc.rust-lang.org/std/string/struct.String.html#method.retain
6721 [cargo/5041]: https://github.com/rust-lang/cargo/pull/5041
6722 [cargo/5083]: https://github.com/rust-lang/cargo/pull/5083
6723
6724
6725 Version 1.25.0 (2018-03-29)
6726 ==========================
6727
6728 Language
6729 --------
6730 - [The `#[repr(align(x))]` attribute is now stable.][47006] [RFC 1358]
6731 - [You can now use nested groups of imports.][47948]
6732 e.g. `use std::{fs::File, io::Read, path::{Path, PathBuf}};`
6733 - [You can now have `|` at the start of a match arm.][47947] e.g.
6734 ```rust
6735 enum Foo { A, B, C }
6736
6737 fn main() {
6738 let x = Foo::A;
6739 match x {
6740 | Foo::A
6741 | Foo::B => println!("AB"),
6742 | Foo::C => println!("C"),
6743 }
6744 }
6745 ```
6746
6747 Compiler
6748 --------
6749 - [Upgraded to LLVM 6.][47828]
6750 - [Added `-C lto=val` option.][47521]
6751 - [Added `i586-unknown-linux-musl` target][47282]
6752
6753 Libraries
6754 ---------
6755 - [Impl Send for `process::Command` on Unix.][47760]
6756 - [Impl PartialEq and Eq for `ParseCharError`.][47790]
6757 - [`UnsafeCell::into_inner` is now safe.][47204]
6758 - [Implement libstd for CloudABI.][47268]
6759 - [`Float::{from_bits, to_bits}` is now available in libcore.][46931]
6760 - [Implement `AsRef<Path>` for Component][46985]
6761 - [Implemented `Write` for `Cursor<&mut Vec<u8>>`][46830]
6762 - [Moved `Duration` to libcore.][46666]
6763
6764 Stabilized APIs
6765 ---------------
6766 - [`Location::column`]
6767 - [`ptr::NonNull`]
6768
6769 The following functions can now be used in a constant expression.
6770 eg. `static MINUTE: Duration = Duration::from_secs(60);`
6771 - [`Duration::new`][47300]
6772 - [`Duration::from_secs`][47300]
6773 - [`Duration::from_millis`][47300]
6774
6775 Cargo
6776 -----
6777 - [`cargo new` no longer removes `rust` or `rs` prefixes/suffixes.][cargo/5013]
6778 - [`cargo new` now defaults to creating a binary crate, instead of a
6779 library crate.][cargo/5029]
6780
6781 Misc
6782 ----
6783 - [Rust by example is now shipped with new releases][46196]
6784
6785 Compatibility Notes
6786 -------------------
6787 - [Deprecated `net::lookup_host`.][47510]
6788 - [`rustdoc` has switched to pulldown as the default markdown renderer.][47398]
6789 - The borrow checker was sometimes incorrectly permitting overlapping borrows
6790 around indexing operations (see [#47349][47349]). This has been fixed (which also
6791 enabled some correct code that used to cause errors (e.g. [#33903][33903] and [#46095][46095]).
6792 - [Removed deprecated unstable attribute `#[simd]`.][47251]
6793
6794 [33903]: https://github.com/rust-lang/rust/pull/33903
6795 [47947]: https://github.com/rust-lang/rust/pull/47947
6796 [47948]: https://github.com/rust-lang/rust/pull/47948
6797 [47760]: https://github.com/rust-lang/rust/pull/47760
6798 [47790]: https://github.com/rust-lang/rust/pull/47790
6799 [47828]: https://github.com/rust-lang/rust/pull/47828
6800 [47398]: https://github.com/rust-lang/rust/pull/47398
6801 [47510]: https://github.com/rust-lang/rust/pull/47510
6802 [47521]: https://github.com/rust-lang/rust/pull/47521
6803 [47204]: https://github.com/rust-lang/rust/pull/47204
6804 [47251]: https://github.com/rust-lang/rust/pull/47251
6805 [47268]: https://github.com/rust-lang/rust/pull/47268
6806 [47282]: https://github.com/rust-lang/rust/pull/47282
6807 [47300]: https://github.com/rust-lang/rust/pull/47300
6808 [47349]: https://github.com/rust-lang/rust/pull/47349
6809 [46931]: https://github.com/rust-lang/rust/pull/46931
6810 [46985]: https://github.com/rust-lang/rust/pull/46985
6811 [47006]: https://github.com/rust-lang/rust/pull/47006
6812 [46830]: https://github.com/rust-lang/rust/pull/46830
6813 [46095]: https://github.com/rust-lang/rust/pull/46095
6814 [46666]: https://github.com/rust-lang/rust/pull/46666
6815 [46196]: https://github.com/rust-lang/rust/pull/46196
6816 [cargo/5013]: https://github.com/rust-lang/cargo/pull/5013
6817 [cargo/5029]: https://github.com/rust-lang/cargo/pull/5029
6818 [RFC 1358]: https://github.com/rust-lang/rfcs/pull/1358
6819 [`Location::column`]: https://doc.rust-lang.org/std/panic/struct.Location.html#method.column
6820 [`ptr::NonNull`]: https://doc.rust-lang.org/std/ptr/struct.NonNull.html
6821
6822
6823 Version 1.24.1 (2018-03-01)
6824 ==========================
6825
6826 - [Do not abort when unwinding through FFI][48251]
6827 - [Emit UTF-16 files for linker arguments on Windows][48318]
6828 - [Make the error index generator work again][48308]
6829 - [Cargo will warn on Windows 7 if an update is needed][cargo/5069].
6830
6831 [48251]: https://github.com/rust-lang/rust/issues/48251
6832 [48308]: https://github.com/rust-lang/rust/issues/48308
6833 [48318]: https://github.com/rust-lang/rust/issues/48318
6834 [cargo/5069]: https://github.com/rust-lang/cargo/pull/5069
6835
6836
6837 Version 1.24.0 (2018-02-15)
6838 ==========================
6839
6840 Language
6841 --------
6842 - [External `sysv64` ffi is now available.][46528]
6843 eg. `extern "sysv64" fn foo () {}`
6844
6845 Compiler
6846 --------
6847 - [rustc now uses 16 codegen units by default for release builds.][46910]
6848 For the fastest builds, utilize `codegen-units=1`.
6849 - [Added `armv4t-unknown-linux-gnueabi` target.][47018]
6850 - [Add `aarch64-unknown-openbsd` support][46760]
6851
6852 Libraries
6853 ---------
6854 - [`str::find::<char>` now uses memchr.][46735] This should lead to a 10x
6855 improvement in performance in the majority of cases.
6856 - [`OsStr`'s `Debug` implementation is now lossless and consistent
6857 with Windows.][46798]
6858 - [`time::{SystemTime, Instant}` now implement `Hash`.][46828]
6859 - [impl `From<bool>` for `AtomicBool`][46293]
6860 - [impl `From<{CString, &CStr}>` for `{Arc<CStr>, Rc<CStr>}`][45990]
6861 - [impl `From<{OsString, &OsStr}>` for `{Arc<OsStr>, Rc<OsStr>}`][45990]
6862 - [impl `From<{PathBuf, &Path}>` for `{Arc<Path>, Rc<Path>}`][45990]
6863 - [float::from_bits now just uses transmute.][46012] This provides
6864 some optimisations from LLVM.
6865 - [Copied `AsciiExt` methods onto `char`][46077]
6866 - [Remove `T: Sized` requirement on `ptr::is_null()`][46094]
6867 - [impl `From<RecvError>` for `{TryRecvError, RecvTimeoutError}`][45506]
6868 - [Optimised `f32::{min, max}` to generate more efficient x86 assembly][47080]
6869 - [`[u8]::contains` now uses memchr which provides a 3x speed improvement][46713]
6870
6871 Stabilized APIs
6872 ---------------
6873 - [`RefCell::replace`]
6874 - [`RefCell::swap`]
6875 - [`atomic::spin_loop_hint`]
6876
6877 The following functions can now be used in a constant expression.
6878 eg. `let buffer: [u8; size_of::<usize>()];`, `static COUNTER: AtomicUsize = AtomicUsize::new(1);`
6879
6880 - [`AtomicBool::new`][46287]
6881 - [`AtomicUsize::new`][46287]
6882 - [`AtomicIsize::new`][46287]
6883 - [`AtomicPtr::new`][46287]
6884 - [`Cell::new`][46287]
6885 - [`{integer}::min_value`][46287]
6886 - [`{integer}::max_value`][46287]
6887 - [`mem::size_of`][46287]
6888 - [`mem::align_of`][46287]
6889 - [`ptr::null`][46287]
6890 - [`ptr::null_mut`][46287]
6891 - [`RefCell::new`][46287]
6892 - [`UnsafeCell::new`][46287]
6893
6894 Cargo
6895 -----
6896 - [Added a `workspace.default-members` config that
6897 overrides implied `--all` in virtual workspaces.][cargo/4743]
6898 - [Enable incremental by default on development builds.][cargo/4817] Also added
6899 configuration keys to `Cargo.toml` and `.cargo/config` to disable on a
6900 per-project or global basis respectively.
6901
6902 Misc
6903 ----
6904
6905 Compatibility Notes
6906 -------------------
6907 - [Floating point types `Debug` impl now always prints a decimal point.][46831]
6908 - [`Ipv6Addr` now rejects superfluous `::`'s in IPv6 addresses][46671] This is
6909 in accordance with IETF RFC 4291 §2.2.
6910 - [Unwinding will no longer go past FFI boundaries, and will instead abort.][46833]
6911 - [`Formatter::flags` method is now deprecated.][46284] The `sign_plus`,
6912 `sign_minus`, `alternate`, and `sign_aware_zero_pad` should be used instead.
6913 - [Leading zeros in tuple struct members is now an error][47084]
6914 - [`column!()` macro is one-based instead of zero-based][46977]
6915 - [`fmt::Arguments` can no longer be shared across threads][45198]
6916 - [Access to `#[repr(packed)]` struct fields is now unsafe][44884]
6917 - [Cargo sets a different working directory for the compiler][cargo/4788]
6918
6919 [44884]: https://github.com/rust-lang/rust/pull/44884
6920 [45198]: https://github.com/rust-lang/rust/pull/45198
6921 [45506]: https://github.com/rust-lang/rust/pull/45506
6922 [45990]: https://github.com/rust-lang/rust/pull/45990
6923 [46012]: https://github.com/rust-lang/rust/pull/46012
6924 [46077]: https://github.com/rust-lang/rust/pull/46077
6925 [46094]: https://github.com/rust-lang/rust/pull/46094
6926 [46284]: https://github.com/rust-lang/rust/pull/46284
6927 [46287]: https://github.com/rust-lang/rust/pull/46287
6928 [46293]: https://github.com/rust-lang/rust/pull/46293
6929 [46528]: https://github.com/rust-lang/rust/pull/46528
6930 [46671]: https://github.com/rust-lang/rust/pull/46671
6931 [46713]: https://github.com/rust-lang/rust/pull/46713
6932 [46735]: https://github.com/rust-lang/rust/pull/46735
6933 [46760]: https://github.com/rust-lang/rust/pull/46760
6934 [46798]: https://github.com/rust-lang/rust/pull/46798
6935 [46828]: https://github.com/rust-lang/rust/pull/46828
6936 [46831]: https://github.com/rust-lang/rust/pull/46831
6937 [46833]: https://github.com/rust-lang/rust/pull/46833
6938 [46910]: https://github.com/rust-lang/rust/pull/46910
6939 [46977]: https://github.com/rust-lang/rust/pull/46977
6940 [47018]: https://github.com/rust-lang/rust/pull/47018
6941 [47080]: https://github.com/rust-lang/rust/pull/47080
6942 [47084]: https://github.com/rust-lang/rust/pull/47084
6943 [cargo/4743]: https://github.com/rust-lang/cargo/pull/4743
6944 [cargo/4788]: https://github.com/rust-lang/cargo/pull/4788
6945 [cargo/4817]: https://github.com/rust-lang/cargo/pull/4817
6946 [`RefCell::replace`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.replace
6947 [`RefCell::swap`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.swap
6948 [`atomic::spin_loop_hint`]: https://doc.rust-lang.org/std/sync/atomic/fn.spin_loop_hint.html
6949
6950
6951 Version 1.23.0 (2018-01-04)
6952 ==========================
6953
6954 Language
6955 --------
6956 - [Arbitrary `auto` traits are now permitted in trait objects.][45772]
6957 - [rustc now uses subtyping on the left hand side of binary operations.][45435]
6958 Which should fix some confusing errors in some operations.
6959
6960 Compiler
6961 --------
6962 - [Enabled `TrapUnreachable` in LLVM which should mitigate the impact of
6963 undefined behavior.][45920]
6964 - [rustc now suggests renaming import if names clash.][45660]
6965 - [Display errors/warnings correctly when there are zero-width or
6966 wide characters.][45711]
6967 - [rustc now avoids unnecessary copies of arguments that are
6968 simple bindings][45380] This should improve memory usage on average by 5-10%.
6969 - [Updated musl used to build musl rustc to 1.1.17][45393]
6970
6971 Libraries
6972 ---------
6973 - [Allow a trailing comma in `assert_eq/ne` macro][45887]
6974 - [Implement Hash for raw pointers to unsized types][45483]
6975 - [impl `From<*mut T>` for `AtomicPtr<T>`][45610]
6976 - [impl `From<usize/isize>` for `AtomicUsize/AtomicIsize`.][45610]
6977 - [Removed the `T: Sync` requirement for `RwLock<T>: Send`][45267]
6978 - [Removed `T: Sized` requirement for `{<*const T>, <*mut T>}::as_ref`
6979 and `<*mut T>::as_mut`][44932]
6980 - [Optimized `Thread::{park, unpark}` implementation][45524]
6981 - [Improved `SliceExt::binary_search` performance.][45333]
6982 - [impl `FromIterator<()>` for `()`][45379]
6983 - [Copied `AsciiExt` trait methods to primitive types.][44042] Use of `AsciiExt`
6984 is now deprecated.
6985
6986 Stabilized APIs
6987 ---------------
6988
6989 Cargo
6990 -----
6991 - [Cargo now supports uninstallation of multiple packages][cargo/4561]
6992 eg. `cargo uninstall foo bar` uninstalls `foo` and `bar`.
6993 - [Added unit test checking to `cargo check`][cargo/4592]
6994 - [Cargo now lets you install a specific version
6995 using `cargo install --version`][cargo/4637]
6996
6997 Misc
6998 ----
6999 - [Releases now ship with the Cargo book documentation.][45692]
7000 - [rustdoc now prints rendering warnings on every run.][45324]
7001
7002 Compatibility Notes
7003 -------------------
7004 - [Changes have been made to type equality to make it more correct,
7005 in rare cases this could break some code.][45853] [Tracking issue for
7006 further information][45852]
7007 - [`char::escape_debug` now uses Unicode 10 over 9.][45571]
7008 - [Upgraded Android SDK to 27, and NDK to r15c.][45580] This drops support for
7009 Android 9, the minimum supported version is Android 14.
7010 - [Bumped the minimum LLVM to 3.9][45326]
7011
7012 [44042]: https://github.com/rust-lang/rust/pull/44042
7013 [44932]: https://github.com/rust-lang/rust/pull/44932
7014 [45267]: https://github.com/rust-lang/rust/pull/45267
7015 [45324]: https://github.com/rust-lang/rust/pull/45324
7016 [45326]: https://github.com/rust-lang/rust/pull/45326
7017 [45333]: https://github.com/rust-lang/rust/pull/45333
7018 [45379]: https://github.com/rust-lang/rust/pull/45379
7019 [45380]: https://github.com/rust-lang/rust/pull/45380
7020 [45393]: https://github.com/rust-lang/rust/pull/45393
7021 [45435]: https://github.com/rust-lang/rust/pull/45435
7022 [45483]: https://github.com/rust-lang/rust/pull/45483
7023 [45524]: https://github.com/rust-lang/rust/pull/45524
7024 [45571]: https://github.com/rust-lang/rust/pull/45571
7025 [45580]: https://github.com/rust-lang/rust/pull/45580
7026 [45610]: https://github.com/rust-lang/rust/pull/45610
7027 [45660]: https://github.com/rust-lang/rust/pull/45660
7028 [45692]: https://github.com/rust-lang/rust/pull/45692
7029 [45711]: https://github.com/rust-lang/rust/pull/45711
7030 [45772]: https://github.com/rust-lang/rust/pull/45772
7031 [45852]: https://github.com/rust-lang/rust/issues/45852
7032 [45853]: https://github.com/rust-lang/rust/pull/45853
7033 [45887]: https://github.com/rust-lang/rust/pull/45887
7034 [45920]: https://github.com/rust-lang/rust/pull/45920
7035 [cargo/4561]: https://github.com/rust-lang/cargo/pull/4561
7036 [cargo/4592]: https://github.com/rust-lang/cargo/pull/4592
7037 [cargo/4637]: https://github.com/rust-lang/cargo/pull/4637
7038
7039
7040 Version 1.22.1 (2017-11-22)
7041 ==========================
7042
7043 - [Update Cargo to fix an issue with macOS 10.13 "High Sierra"][46183]
7044
7045 [46183]: https://github.com/rust-lang/rust/pull/46183
7046
7047 Version 1.22.0 (2017-11-22)
7048 ==========================
7049
7050 Language
7051 --------
7052 - [`non_snake_case` lint now allows extern no-mangle functions][44966]
7053 - [Now accepts underscores in unicode escapes][43716]
7054 - [`T op= &T` now works for numeric types.][44287] eg. `let mut x = 2; x += &8;`
7055 - [types that impl `Drop` are now allowed in `const` and `static` types][44456]
7056
7057 Compiler
7058 --------
7059 - [rustc now defaults to having 16 codegen units at debug on supported platforms.][45064]
7060 - [rustc will no longer inline in codegen units when compiling for debug][45075]
7061 This should decrease compile times for debug builds.
7062 - [strict memory alignment now enabled on ARMv6][45094]
7063 - [Remove support for the PNaCl target `le32-unknown-nacl`][45041]
7064
7065 Libraries
7066 ---------
7067 - [Allow atomic operations up to 32 bits
7068 on `armv5te_unknown_linux_gnueabi`][44978]
7069 - [`Box<Error>` now impls `From<Cow<str>>`][44466]
7070 - [`std::mem::Discriminant` is now guaranteed to be `Send + Sync`][45095]
7071 - [`fs::copy` now returns the length of the main stream on NTFS.][44895]
7072 - [Properly detect overflow in `Instant += Duration`.][44220]
7073 - [impl `Hasher` for `{&mut Hasher, Box<Hasher>}`][44015]
7074 - [impl `fmt::Debug` for `SplitWhitespace`.][44303]
7075 - [`Option<T>` now impls `Try`][42526] This allows for using `?` with `Option` types.
7076
7077 Stabilized APIs
7078 ---------------
7079
7080 Cargo
7081 -----
7082 - [Cargo will now build multi file examples in subdirectories of the `examples`
7083 folder that have a `main.rs` file.][cargo/4496]
7084 - [Changed `[root]` to `[package]` in `Cargo.lock`][cargo/4571] Packages with
7085 the old format will continue to work and can be updated with `cargo update`.
7086 - [Now supports vendoring git repositories][cargo/3992]
7087
7088 Misc
7089 ----
7090 - [`libbacktrace` is now available on Apple platforms.][44251]
7091 - [Stabilised the `compile_fail` attribute for code fences in doc-comments.][43949]
7092 This now lets you specify that a given code example will fail to compile.
7093
7094 Compatibility Notes
7095 -------------------
7096 - [The minimum Android version that rustc can build for has been bumped
7097 to `4.0` from `2.3`][45656]
7098 - [Allowing `T op= &T` for numeric types has broken some type
7099 inference cases][45480]
7100
7101
7102 [42526]: https://github.com/rust-lang/rust/pull/42526
7103 [43716]: https://github.com/rust-lang/rust/pull/43716
7104 [43949]: https://github.com/rust-lang/rust/pull/43949
7105 [44015]: https://github.com/rust-lang/rust/pull/44015
7106 [44220]: https://github.com/rust-lang/rust/pull/44220
7107 [44251]: https://github.com/rust-lang/rust/pull/44251
7108 [44287]: https://github.com/rust-lang/rust/pull/44287
7109 [44303]: https://github.com/rust-lang/rust/pull/44303
7110 [44456]: https://github.com/rust-lang/rust/pull/44456
7111 [44466]: https://github.com/rust-lang/rust/pull/44466
7112 [44895]: https://github.com/rust-lang/rust/pull/44895
7113 [44966]: https://github.com/rust-lang/rust/pull/44966
7114 [44978]: https://github.com/rust-lang/rust/pull/44978
7115 [45041]: https://github.com/rust-lang/rust/pull/45041
7116 [45064]: https://github.com/rust-lang/rust/pull/45064
7117 [45075]: https://github.com/rust-lang/rust/pull/45075
7118 [45094]: https://github.com/rust-lang/rust/pull/45094
7119 [45095]: https://github.com/rust-lang/rust/pull/45095
7120 [45480]: https://github.com/rust-lang/rust/issues/45480
7121 [45656]: https://github.com/rust-lang/rust/pull/45656
7122 [cargo/3992]: https://github.com/rust-lang/cargo/pull/3992
7123 [cargo/4496]: https://github.com/rust-lang/cargo/pull/4496
7124 [cargo/4571]: https://github.com/rust-lang/cargo/pull/4571
7125
7126
7127
7128
7129
7130
7131 Version 1.21.0 (2017-10-12)
7132 ==========================
7133
7134 Language
7135 --------
7136 - [You can now use static references for literals.][43838]
7137 Example:
7138 ```rust
7139 fn main() {
7140 let x: &'static u32 = &0;
7141 }
7142 ```
7143 - [Relaxed path syntax. Optional `::` before `<` is now allowed in all contexts.][43540]
7144 Example:
7145 ```rust
7146 my_macro!(Vec<i32>::new); // Always worked
7147 my_macro!(Vec::<i32>::new); // Now works
7148 ```
7149
7150 Compiler
7151 --------
7152 - [Upgraded jemalloc to 4.5.0][43911]
7153 - [Enabled unwinding panics on Redox][43917]
7154 - [Now runs LLVM in parallel during translation phase.][43506]
7155 This should reduce peak memory usage.
7156
7157 Libraries
7158 ---------
7159 - [Generate builtin impls for `Clone` for all arrays and tuples that
7160 are `T: Clone`][43690]
7161 - [`Stdin`, `Stdout`, and `Stderr` now implement `AsRawFd`.][43459]
7162 - [`Rc` and `Arc` now implement `From<&[T]> where T: Clone`, `From<str>`,
7163 `From<String>`, `From<Box<T>> where T: ?Sized`, and `From<Vec<T>>`.][42565]
7164
7165 Stabilized APIs
7166 ---------------
7167
7168 [`std::mem::discriminant`]
7169
7170 Cargo
7171 -----
7172 - [You can now call `cargo install` with multiple package names][cargo/4216]
7173 - [Cargo commands inside a virtual workspace will now implicitly
7174 pass `--all`][cargo/4335]
7175 - [Added a `[patch]` section to `Cargo.toml` to handle
7176 prepublication dependencies][cargo/4123] [RFC 1969]
7177 - [`include` & `exclude` fields in `Cargo.toml` now accept gitignore
7178 like patterns][cargo/4270]
7179 - [Added the `--all-targets` option][cargo/4400]
7180 - [Using required dependencies as a feature is now deprecated and emits
7181 a warning][cargo/4364]
7182
7183
7184 Misc
7185 ----
7186 - [Cargo docs are moving][43916]
7187 to [doc.rust-lang.org/cargo](https://doc.rust-lang.org/cargo)
7188 - [The rustdoc book is now available][43863]
7189 at [doc.rust-lang.org/rustdoc](https://doc.rust-lang.org/rustdoc)
7190 - [Added a preview of RLS has been made available through rustup][44204]
7191 Install with `rustup component add rls-preview`
7192 - [`std::os` documentation for Unix, Linux, and Windows now appears on doc.rust-lang.org][43348]
7193 Previously only showed `std::os::unix`.
7194
7195 Compatibility Notes
7196 -------------------
7197 - [Changes in method matching against higher-ranked types][43880] This may cause
7198 breakage in subtyping corner cases. [A more in-depth explanation is available.][info/43880]
7199 - [rustc's JSON error output's byte position start at top of file.][42973]
7200 Was previously relative to the rustc's internal `CodeMap` struct which
7201 required the unstable library `libsyntax` to correctly use.
7202 - [`unused_results` lint no longer ignores booleans][43728]
7203
7204 [42565]: https://github.com/rust-lang/rust/pull/42565
7205 [42973]: https://github.com/rust-lang/rust/pull/42973
7206 [43348]: https://github.com/rust-lang/rust/pull/43348
7207 [43459]: https://github.com/rust-lang/rust/pull/43459
7208 [43506]: https://github.com/rust-lang/rust/pull/43506
7209 [43540]: https://github.com/rust-lang/rust/pull/43540
7210 [43690]: https://github.com/rust-lang/rust/pull/43690
7211 [43728]: https://github.com/rust-lang/rust/pull/43728
7212 [43838]: https://github.com/rust-lang/rust/pull/43838
7213 [43863]: https://github.com/rust-lang/rust/pull/43863
7214 [43880]: https://github.com/rust-lang/rust/pull/43880
7215 [43911]: https://github.com/rust-lang/rust/pull/43911
7216 [43916]: https://github.com/rust-lang/rust/pull/43916
7217 [43917]: https://github.com/rust-lang/rust/pull/43917
7218 [44204]: https://github.com/rust-lang/rust/pull/44204
7219 [cargo/4123]: https://github.com/rust-lang/cargo/pull/4123
7220 [cargo/4216]: https://github.com/rust-lang/cargo/pull/4216
7221 [cargo/4270]: https://github.com/rust-lang/cargo/pull/4270
7222 [cargo/4335]: https://github.com/rust-lang/cargo/pull/4335
7223 [cargo/4364]: https://github.com/rust-lang/cargo/pull/4364
7224 [cargo/4400]: https://github.com/rust-lang/cargo/pull/4400
7225 [RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969
7226 [info/43880]: https://github.com/rust-lang/rust/issues/44224#issuecomment-330058902
7227 [`std::mem::discriminant`]: https://doc.rust-lang.org/std/mem/fn.discriminant.html
7228
7229 Version 1.20.0 (2017-08-31)
7230 ===========================
7231
7232 Language
7233 --------
7234 - [Associated constants are now stabilised.][42809]
7235 - [A lot of macro bugs are now fixed.][42913]
7236
7237 Compiler
7238 --------
7239
7240 - [Struct fields are now properly coerced to the expected field type.][42807]
7241 - [Enabled wasm LLVM backend][42571] WASM can now be built with the
7242 `wasm32-experimental-emscripten` target.
7243 - [Changed some of the error messages to be more helpful.][42033]
7244 - [Add support for RELRO(RELocation Read-Only) for platforms that support
7245 it.][43170]
7246 - [rustc now reports the total number of errors on compilation failure][43015]
7247 previously this was only the number of errors in the pass that failed.
7248 - [Expansion in rustc has been sped up 29x.][42533]
7249 - [added `msp430-none-elf` target.][43099]
7250 - [rustc will now suggest one-argument enum variant to fix type mismatch when
7251 applicable][43178]
7252 - [Fixes backtraces on Redox][43228]
7253 - [rustc now identifies different versions of same crate when absolute paths of
7254 different types match in an error message.][42826]
7255
7256 Libraries
7257 ---------
7258
7259
7260 - [Relaxed Debug constraints on `{HashMap,BTreeMap}::{Keys,Values}`.][42854]
7261 - [Impl `PartialEq`, `Eq`, `PartialOrd`, `Ord`, `Debug`, `Hash` for unsized
7262 tuples.][43011]
7263 - [Impl `fmt::{Display, Debug}` for `Ref`, `RefMut`, `MutexGuard`,
7264 `RwLockReadGuard`, `RwLockWriteGuard`][42822]
7265 - [Impl `Clone` for `DefaultHasher`.][42799]
7266 - [Impl `Sync` for `SyncSender`.][42397]
7267 - [Impl `FromStr` for `char`][42271]
7268 - [Fixed how `{f32, f64}::{is_sign_negative, is_sign_positive}` handles
7269 NaN.][42431]
7270 - [allow messages in the `unimplemented!()` macro.][42155]
7271 ie. `unimplemented!("Waiting for 1.21 to be stable")`
7272 - [`pub(restricted)` is now supported in the `thread_local!` macro.][43185]
7273 - [Upgrade to Unicode 10.0.0][42999]
7274 - [Reimplemented `{f32, f64}::{min, max}` in Rust instead of using CMath.][42430]
7275 - [Skip the main thread's manual stack guard on Linux][43072]
7276 - [Iterator::nth for `ops::{Range, RangeFrom}` is now done in *O*(1) time][43077]
7277 - [`#[repr(align(N))]` attribute max number is now 2^31 - 1.][43097] This was
7278 previously 2^15.
7279 - [`{OsStr, Path}::Display` now avoids allocations where possible][42613]
7280
7281 Stabilized APIs
7282 ---------------
7283
7284 - [`CStr::into_c_string`]
7285 - [`CString::as_c_str`]
7286 - [`CString::into_boxed_c_str`]
7287 - [`Chain::get_mut`]
7288 - [`Chain::get_ref`]
7289 - [`Chain::into_inner`]
7290 - [`Option::get_or_insert_with`]
7291 - [`Option::get_or_insert`]
7292 - [`OsStr::into_os_string`]
7293 - [`OsString::into_boxed_os_str`]
7294 - [`Take::get_mut`]
7295 - [`Take::get_ref`]
7296 - [`Utf8Error::error_len`]
7297 - [`char::EscapeDebug`]
7298 - [`char::escape_debug`]
7299 - [`compile_error!`]
7300 - [`f32::from_bits`]
7301 - [`f32::to_bits`]
7302 - [`f64::from_bits`]
7303 - [`f64::to_bits`]
7304 - [`mem::ManuallyDrop`]
7305 - [`slice::sort_unstable_by_key`]
7306 - [`slice::sort_unstable_by`]
7307 - [`slice::sort_unstable`]
7308 - [`str::from_boxed_utf8_unchecked`]
7309 - [`str::as_bytes_mut`]
7310 - [`str::as_bytes_mut`]
7311 - [`str::from_utf8_mut`]
7312 - [`str::from_utf8_unchecked_mut`]
7313 - [`str::get_mut`]
7314 - [`str::get_unchecked_mut`]
7315 - [`str::get_unchecked`]
7316 - [`str::get`]
7317 - [`str::into_boxed_bytes`]
7318
7319
7320 Cargo
7321 -----
7322 - [Cargo API token location moved from `~/.cargo/config` to
7323 `~/.cargo/credentials`.][cargo/3978]
7324 - [Cargo will now build `main.rs` binaries that are in sub-directories of
7325 `src/bin`.][cargo/4214] ie. Having `src/bin/server/main.rs` and
7326 `src/bin/client/main.rs` generates `target/debug/server` and `target/debug/client`
7327 - [You can now specify version of a binary when installed through
7328 `cargo install` using `--vers`.][cargo/4229]
7329 - [Added `--no-fail-fast` flag to cargo to run all benchmarks regardless of
7330 failure.][cargo/4248]
7331 - [Changed the convention around which file is the crate root.][cargo/4259]
7332
7333 Compatibility Notes
7334 -------------------
7335
7336 - [Functions with `'static` in their return types will now not be as usable as
7337 if they were using lifetime parameters instead.][42417]
7338 - [The reimplementation of `{f32, f64}::is_sign_{negative, positive}` now
7339 takes the sign of NaN into account where previously didn't.][42430]
7340
7341 [42033]: https://github.com/rust-lang/rust/pull/42033
7342 [42155]: https://github.com/rust-lang/rust/pull/42155
7343 [42271]: https://github.com/rust-lang/rust/pull/42271
7344 [42397]: https://github.com/rust-lang/rust/pull/42397
7345 [42417]: https://github.com/rust-lang/rust/pull/42417
7346 [42430]: https://github.com/rust-lang/rust/pull/42430
7347 [42431]: https://github.com/rust-lang/rust/pull/42431
7348 [42533]: https://github.com/rust-lang/rust/pull/42533
7349 [42571]: https://github.com/rust-lang/rust/pull/42571
7350 [42613]: https://github.com/rust-lang/rust/pull/42613
7351 [42799]: https://github.com/rust-lang/rust/pull/42799
7352 [42807]: https://github.com/rust-lang/rust/pull/42807
7353 [42809]: https://github.com/rust-lang/rust/pull/42809
7354 [42822]: https://github.com/rust-lang/rust/pull/42822
7355 [42826]: https://github.com/rust-lang/rust/pull/42826
7356 [42854]: https://github.com/rust-lang/rust/pull/42854
7357 [42913]: https://github.com/rust-lang/rust/pull/42913
7358 [42999]: https://github.com/rust-lang/rust/pull/42999
7359 [43011]: https://github.com/rust-lang/rust/pull/43011
7360 [43015]: https://github.com/rust-lang/rust/pull/43015
7361 [43072]: https://github.com/rust-lang/rust/pull/43072
7362 [43077]: https://github.com/rust-lang/rust/pull/43077
7363 [43097]: https://github.com/rust-lang/rust/pull/43097
7364 [43099]: https://github.com/rust-lang/rust/pull/43099
7365 [43170]: https://github.com/rust-lang/rust/pull/43170
7366 [43178]: https://github.com/rust-lang/rust/pull/43178
7367 [43185]: https://github.com/rust-lang/rust/pull/43185
7368 [43228]: https://github.com/rust-lang/rust/pull/43228
7369 [cargo/3978]: https://github.com/rust-lang/cargo/pull/3978
7370 [cargo/4214]: https://github.com/rust-lang/cargo/pull/4214
7371 [cargo/4229]: https://github.com/rust-lang/cargo/pull/4229
7372 [cargo/4248]: https://github.com/rust-lang/cargo/pull/4248
7373 [cargo/4259]: https://github.com/rust-lang/cargo/pull/4259
7374 [`CStr::into_c_string`]: https://doc.rust-lang.org/std/ffi/struct.CStr.html#method.into_c_string
7375 [`CString::as_c_str`]: https://doc.rust-lang.org/std/ffi/struct.CString.html#method.as_c_str
7376 [`CString::into_boxed_c_str`]: https://doc.rust-lang.org/std/ffi/struct.CString.html#method.into_boxed_c_str
7377 [`Chain::get_mut`]: https://doc.rust-lang.org/std/io/struct.Chain.html#method.get_mut
7378 [`Chain::get_ref`]: https://doc.rust-lang.org/std/io/struct.Chain.html#method.get_ref
7379 [`Chain::into_inner`]: https://doc.rust-lang.org/std/io/struct.Chain.html#method.into_inner
7380 [`Option::get_or_insert_with`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.get_or_insert_with
7381 [`Option::get_or_insert`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.get_or_insert
7382 [`OsStr::into_os_string`]: https://doc.rust-lang.org/std/ffi/struct.OsStr.html#method.into_os_string
7383 [`OsString::into_boxed_os_str`]: https://doc.rust-lang.org/std/ffi/struct.OsString.html#method.into_boxed_os_str
7384 [`Take::get_mut`]: https://doc.rust-lang.org/std/io/struct.Take.html#method.get_mut
7385 [`Take::get_ref`]: https://doc.rust-lang.org/std/io/struct.Take.html#method.get_ref
7386 [`Utf8Error::error_len`]: https://doc.rust-lang.org/std/str/struct.Utf8Error.html#method.error_len
7387 [`char::EscapeDebug`]: https://doc.rust-lang.org/std/char/struct.EscapeDebug.html
7388 [`char::escape_debug`]: https://doc.rust-lang.org/std/primitive.char.html#method.escape_debug
7389 [`compile_error!`]: https://doc.rust-lang.org/std/macro.compile_error.html
7390 [`f32::from_bits`]: https://doc.rust-lang.org/std/primitive.f32.html#method.from_bits
7391 [`f32::to_bits`]: https://doc.rust-lang.org/std/primitive.f32.html#method.to_bits
7392 [`f64::from_bits`]: https://doc.rust-lang.org/std/primitive.f64.html#method.from_bits
7393 [`f64::to_bits`]: https://doc.rust-lang.org/std/primitive.f64.html#method.to_bits
7394 [`mem::ManuallyDrop`]: https://doc.rust-lang.org/std/mem/union.ManuallyDrop.html
7395 [`slice::sort_unstable_by_key`]: https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable_by_key
7396 [`slice::sort_unstable_by`]: https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable_by
7397 [`slice::sort_unstable`]: https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable
7398 [`str::from_boxed_utf8_unchecked`]: https://doc.rust-lang.org/std/str/fn.from_boxed_utf8_unchecked.html
7399 [`str::as_bytes_mut`]: https://doc.rust-lang.org/std/primitive.str.html#method.as_bytes_mut
7400 [`str::from_utf8_mut`]: https://doc.rust-lang.org/std/str/fn.from_utf8_mut.html
7401 [`str::from_utf8_unchecked_mut`]: https://doc.rust-lang.org/std/str/fn.from_utf8_unchecked_mut.html
7402 [`str::get_mut`]: https://doc.rust-lang.org/std/primitive.str.html#method.get_mut
7403 [`str::get_unchecked_mut`]: https://doc.rust-lang.org/std/primitive.str.html#method.get_unchecked_mut
7404 [`str::get_unchecked`]: https://doc.rust-lang.org/std/primitive.str.html#method.get_unchecked
7405 [`str::get`]: https://doc.rust-lang.org/std/primitive.str.html#method.get
7406 [`str::into_boxed_bytes`]: https://doc.rust-lang.org/std/primitive.str.html#method.into_boxed_bytes
7407
7408
7409 Version 1.19.0 (2017-07-20)
7410 ===========================
7411
7412 Language
7413 --------
7414
7415 - [Numeric fields can now be used for creating tuple structs.][41145] [RFC 1506]
7416 For example `struct Point(u32, u32); let x = Point { 0: 7, 1: 0 };`.
7417 - [Macro recursion limit increased to 1024 from 64.][41676]
7418 - [Added lint for detecting unused macros.][41907]
7419 - [`loop` can now return a value with `break`.][42016] [RFC 1624]
7420 For example: `let x = loop { break 7; };`
7421 - [C compatible `union`s are now available.][42068] [RFC 1444] They can only
7422 contain `Copy` types and cannot have a `Drop` implementation.
7423 Example: `union Foo { bar: u8, baz: usize }`
7424 - [Non capturing closures can now be coerced into `fn`s,][42162] [RFC 1558]
7425 Example: `let foo: fn(u8) -> u8 = |v: u8| { v };`
7426
7427 Compiler
7428 --------
7429
7430 - [Add support for bootstrapping the Rust compiler toolchain on Android.][41370]
7431 - [Change `arm-linux-androideabi` to correspond to the `armeabi`
7432 official ABI.][41656] If you wish to continue targeting the `armeabi-v7a` ABI
7433 you should use `--target armv7-linux-androideabi`.
7434 - [Fixed ICE when removing a source file between compilation sessions.][41873]
7435 - [Minor optimisation of string operations.][42037]
7436 - [Compiler error message is now `aborting due to previous error(s)` instead of
7437 `aborting due to N previous errors`][42150] This was previously inaccurate and
7438 would only count certain kinds of errors.
7439 - [The compiler now supports Visual Studio 2017][42225]
7440 - [The compiler is now built against LLVM 4.0.1 by default][42948]
7441 - [Added a lot][42264] of [new error codes][42302]
7442 - [Added `target-feature=+crt-static` option][37406] [RFC 1721] Which allows
7443 libraries with C Run-time Libraries(CRT) to be statically linked.
7444 - [Fixed various ARM codegen bugs][42740]
7445
7446 Libraries
7447 ---------
7448
7449 - [`String` now implements `FromIterator<Cow<'a, str>>` and
7450 `Extend<Cow<'a, str>>`][41449]
7451 - [`Vec` now implements `From<&mut [T]>`][41530]
7452 - [`Box<[u8]>` now implements `From<Box<str>>`][41258]
7453 - [`SplitWhitespace` now implements `Clone`][41659]
7454 - [`[u8]::reverse` is now 5x faster and `[u16]::reverse` is now
7455 1.5x faster][41764]
7456 - [`eprint!` and `eprintln!` macros added to prelude.][41192] Same as the `print!`
7457 macros, but for printing to stderr.
7458
7459 Stabilized APIs
7460 ---------------
7461
7462 - [`OsString::shrink_to_fit`]
7463 - [`cmp::Reverse`]
7464 - [`Command::envs`]
7465 - [`thread::ThreadId`]
7466
7467 Cargo
7468 -----
7469
7470 - [Build scripts can now add environment variables to the environment
7471 the crate is being compiled in.
7472 Example: `println!("cargo:rustc-env=FOO=bar");`][cargo/3929]
7473 - [Subcommands now replace the current process rather than spawning a new
7474 child process][cargo/3970]
7475 - [Workspace members can now accept glob file patterns][cargo/3979]
7476 - [Added `--all` flag to the `cargo bench` subcommand to run benchmarks of all
7477 the members in a given workspace.][cargo/3988]
7478 - [Updated `libssh2-sys` to 0.2.6][cargo/4008]
7479 - [Target directory path is now in the cargo metadata][cargo/4022]
7480 - [Cargo no longer checks out a local working directory for the
7481 crates.io index][cargo/4026] This should provide smaller file size for the
7482 registry, and improve cloning times, especially on Windows machines.
7483 - [Added an `--exclude` option for excluding certain packages when using the
7484 `--all` option][cargo/4031]
7485 - [Cargo will now automatically retry when receiving a 5xx error
7486 from crates.io][cargo/4032]
7487 - [The `--features` option now accepts multiple comma or space
7488 delimited values.][cargo/4084]
7489 - [Added support for custom target specific runners][cargo/3954]
7490
7491 Misc
7492 ----
7493
7494 - [Added `rust-windbg.cmd`][39983] for loading rust `.natvis` files in the
7495 Windows Debugger.
7496 - [Rust will now release XZ compressed packages][rust-installer/57]
7497 - [rustup will now prefer to download rust packages with
7498 XZ compression][rustup/1100] over GZip packages.
7499 - [Added the ability to escape `#` in rust documentation][41785] By adding
7500 additional `#`'s ie. `##` is now `#`
7501
7502 Compatibility Notes
7503 -------------------
7504
7505 - [`MutexGuard<T>` may only be `Sync` if `T` is `Sync`.][41624]
7506 - [`-Z` flags are now no longer allowed to be used on the stable
7507 compiler.][41751] This has been a warning for a year previous to this.
7508 - [As a result of the `-Z` flag change, the `cargo-check` plugin no
7509 longer works][42844]. Users should migrate to the built-in `check`
7510 command, which has been available since 1.16.
7511 - [Ending a float literal with `._` is now a hard error.
7512 Example: `42._` .][41946]
7513 - [Any use of a private `extern crate` outside of its module is now a
7514 hard error.][36886] This was previously a warning.
7515 - [`use ::self::foo;` is now a hard error.][36888] `self` paths are always
7516 relative while the `::` prefix makes a path absolute, but was ignored and the
7517 path was relative regardless.
7518 - [Floating point constants in match patterns is now a hard error][36890]
7519 This was previously a warning.
7520 - [Struct or enum constants that don't derive `PartialEq` & `Eq` used
7521 match patterns is now a hard error][36891] This was previously a warning.
7522 - [Lifetimes named `'_` are no longer allowed.][36892] This was previously
7523 a warning.
7524 - [From the pound escape, lines consisting of multiple `#`s are
7525 now visible][41785]
7526 - [It is an error to re-export private enum variants][42460]. This is
7527 known to break a number of crates that depend on an older version of
7528 mustache.
7529 - [On Windows, if `VCINSTALLDIR` is set incorrectly, `rustc` will try
7530 to use it to find the linker, and the build will fail where it did
7531 not previously][42607]
7532
7533 [36886]: https://github.com/rust-lang/rust/issues/36886
7534 [36888]: https://github.com/rust-lang/rust/issues/36888
7535 [36890]: https://github.com/rust-lang/rust/issues/36890
7536 [36891]: https://github.com/rust-lang/rust/issues/36891
7537 [36892]: https://github.com/rust-lang/rust/issues/36892
7538 [37406]: https://github.com/rust-lang/rust/issues/37406
7539 [39983]: https://github.com/rust-lang/rust/pull/39983
7540 [41145]: https://github.com/rust-lang/rust/pull/41145
7541 [41192]: https://github.com/rust-lang/rust/pull/41192
7542 [41258]: https://github.com/rust-lang/rust/pull/41258
7543 [41370]: https://github.com/rust-lang/rust/pull/41370
7544 [41449]: https://github.com/rust-lang/rust/pull/41449
7545 [41530]: https://github.com/rust-lang/rust/pull/41530
7546 [41624]: https://github.com/rust-lang/rust/pull/41624
7547 [41656]: https://github.com/rust-lang/rust/pull/41656
7548 [41659]: https://github.com/rust-lang/rust/pull/41659
7549 [41676]: https://github.com/rust-lang/rust/pull/41676
7550 [41751]: https://github.com/rust-lang/rust/pull/41751
7551 [41764]: https://github.com/rust-lang/rust/pull/41764
7552 [41785]: https://github.com/rust-lang/rust/pull/41785
7553 [41873]: https://github.com/rust-lang/rust/pull/41873
7554 [41907]: https://github.com/rust-lang/rust/pull/41907
7555 [41946]: https://github.com/rust-lang/rust/pull/41946
7556 [42016]: https://github.com/rust-lang/rust/pull/42016
7557 [42037]: https://github.com/rust-lang/rust/pull/42037
7558 [42068]: https://github.com/rust-lang/rust/pull/42068
7559 [42150]: https://github.com/rust-lang/rust/pull/42150
7560 [42162]: https://github.com/rust-lang/rust/pull/42162
7561 [42225]: https://github.com/rust-lang/rust/pull/42225
7562 [42264]: https://github.com/rust-lang/rust/pull/42264
7563 [42302]: https://github.com/rust-lang/rust/pull/42302
7564 [42460]: https://github.com/rust-lang/rust/issues/42460
7565 [42607]: https://github.com/rust-lang/rust/issues/42607
7566 [42740]: https://github.com/rust-lang/rust/pull/42740
7567 [42844]: https://github.com/rust-lang/rust/issues/42844
7568 [42948]: https://github.com/rust-lang/rust/pull/42948
7569 [RFC 1444]: https://github.com/rust-lang/rfcs/pull/1444
7570 [RFC 1506]: https://github.com/rust-lang/rfcs/pull/1506
7571 [RFC 1558]: https://github.com/rust-lang/rfcs/pull/1558
7572 [RFC 1624]: https://github.com/rust-lang/rfcs/pull/1624
7573 [RFC 1721]: https://github.com/rust-lang/rfcs/pull/1721
7574 [`Command::envs`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.envs
7575 [`OsString::shrink_to_fit`]: https://doc.rust-lang.org/std/ffi/struct.OsString.html#method.shrink_to_fit
7576 [`cmp::Reverse`]: https://doc.rust-lang.org/std/cmp/struct.Reverse.html
7577 [`thread::ThreadId`]: https://doc.rust-lang.org/std/thread/struct.ThreadId.html
7578 [cargo/3929]: https://github.com/rust-lang/cargo/pull/3929
7579 [cargo/3954]: https://github.com/rust-lang/cargo/pull/3954
7580 [cargo/3970]: https://github.com/rust-lang/cargo/pull/3970
7581 [cargo/3979]: https://github.com/rust-lang/cargo/pull/3979
7582 [cargo/3988]: https://github.com/rust-lang/cargo/pull/3988
7583 [cargo/4008]: https://github.com/rust-lang/cargo/pull/4008
7584 [cargo/4022]: https://github.com/rust-lang/cargo/pull/4022
7585 [cargo/4026]: https://github.com/rust-lang/cargo/pull/4026
7586 [cargo/4031]: https://github.com/rust-lang/cargo/pull/4031
7587 [cargo/4032]: https://github.com/rust-lang/cargo/pull/4032
7588 [cargo/4084]: https://github.com/rust-lang/cargo/pull/4084
7589 [rust-installer/57]: https://github.com/rust-lang/rust-installer/pull/57
7590 [rustup/1100]: https://github.com/rust-lang-nursery/rustup.rs/pull/1100
7591
7592
7593 Version 1.18.0 (2017-06-08)
7594 ===========================
7595
7596 Language
7597 --------
7598
7599 - [Stabilize pub(restricted)][40556] `pub` can now accept a module path to
7600 make the item visible to just that module tree. Also accepts the keyword
7601 `crate` to make something public to the whole crate but not users of the
7602 library. Example: `pub(crate) mod utils;`. [RFC 1422].
7603 - [Stabilize `#![windows_subsystem]` attribute][40870] conservative exposure of the
7604 `/SUBSYSTEM` linker flag on Windows platforms. [RFC 1665].
7605 - [Refactor of trait object type parsing][40043] Now `ty` in macros can accept
7606 types like `Write + Send`, trailing `+` are now supported in trait objects,
7607 and better error reporting for trait objects starting with `?Sized`.
7608 - [0e+10 is now a valid floating point literal][40589]
7609 - [Now warns if you bind a lifetime parameter to 'static][40734]
7610 - [Tuples, Enum variant fields, and structs with no `repr` attribute or with
7611 `#[repr(Rust)]` are reordered to minimize padding and produce a smaller
7612 representation in some cases.][40377]
7613
7614 Compiler
7615 --------
7616
7617 - [rustc can now emit mir with `--emit mir`][39891]
7618 - [Improved LLVM IR for trivial functions][40367]
7619 - [Added explanation for E0090(Wrong number of lifetimes are supplied)][40723]
7620 - [rustc compilation is now 15%-20% faster][41469] Thanks to optimisation
7621 opportunities found through profiling
7622 - [Improved backtrace formatting when panicking][38165]
7623
7624 Libraries
7625 ---------
7626
7627 - [Specialized `Vec::from_iter` being passed `vec::IntoIter`][40731] if the
7628 iterator hasn't been advanced the original `Vec` is reassembled with no actual
7629 iteration or reallocation.
7630 - [Simplified HashMap Bucket interface][40561] provides performance
7631 improvements for iterating and cloning.
7632 - [Specialize Vec::from_elem to use calloc][40409]
7633 - [Fixed Race condition in fs::create_dir_all][39799]
7634 - [No longer caching stdio on Windows][40516]
7635 - [Optimized insertion sort in slice][40807] insertion sort in some cases
7636 2.50%~ faster and in one case now 12.50% faster.
7637 - [Optimized `AtomicBool::fetch_nand`][41143]
7638
7639 Stabilized APIs
7640 ---------------
7641
7642 - [`Child::try_wait`]
7643 - [`HashMap::retain`]
7644 - [`HashSet::retain`]
7645 - [`PeekMut::pop`]
7646 - [`TcpStream::peek`]
7647 - [`UdpSocket::peek`]
7648 - [`UdpSocket::peek_from`]
7649
7650 Cargo
7651 -----
7652
7653 - [Added partial Pijul support][cargo/3842] Pijul is a version control system in Rust.
7654 You can now create new cargo projects with Pijul using `cargo new --vcs pijul`
7655 - [Now always emits build script warnings for crates that fail to build][cargo/3847]
7656 - [Added Android build support][cargo/3885]
7657 - [Added `--bins` and `--tests` flags][cargo/3901] now you can build all programs
7658 of a certain type, for example `cargo build --bins` will build all
7659 binaries.
7660 - [Added support for haiku][cargo/3952]
7661
7662 Misc
7663 ----
7664
7665 - [rustdoc can now use pulldown-cmark with the `--enable-commonmark` flag][40338]
7666 - [Rust now uses the official cross compiler for NetBSD][40612]
7667 - [rustdoc now accepts `#` at the start of files][40828]
7668 - [Fixed jemalloc support for musl][41168]
7669
7670 Compatibility Notes
7671 -------------------
7672
7673 - [Changes to how the `0` flag works in format!][40241] Padding zeroes are now
7674 always placed after the sign if it exists and before the digits. With the `#`
7675 flag the zeroes are placed after the prefix and before the digits.
7676 - [Due to the struct field optimisation][40377], using `transmute` on structs
7677 that have no `repr` attribute or `#[repr(Rust)]` will no longer work. This has
7678 always been undefined behavior, but is now more likely to break in practice.
7679 - [The refactor of trait object type parsing][40043] fixed a bug where `+` was
7680 receiving the wrong priority parsing things like `&for<'a> Tr<'a> + Send` as
7681 `&(for<'a> Tr<'a> + Send)` instead of `(&for<'a> Tr<'a>) + Send`
7682 - [Overlapping inherent `impl`s are now a hard error][40728]
7683 - [`PartialOrd` and `Ord` must agree on the ordering.][41270]
7684 - [`rustc main.rs -o out --emit=asm,llvm-ir`][41085] Now will output
7685 `out.asm` and `out.ll` instead of only one of the filetypes.
7686 - [ calling a function that returns `Self` will no longer work][41805] when
7687 the size of `Self` cannot be statically determined.
7688 - [rustc now builds with a "pthreads" flavour of MinGW for Windows GNU][40805]
7689 this has caused a few regressions namely:
7690
7691 - Changed the link order of local static/dynamic libraries (respecting the
7692 order on given rather than having the compiler reorder).
7693 - Changed how MinGW is linked, native code linked to dynamic libraries
7694 may require manually linking to the gcc support library (for the native
7695 code itself)
7696
7697 [38165]: https://github.com/rust-lang/rust/pull/38165
7698 [39799]: https://github.com/rust-lang/rust/pull/39799
7699 [39891]: https://github.com/rust-lang/rust/pull/39891
7700 [40043]: https://github.com/rust-lang/rust/pull/40043
7701 [40241]: https://github.com/rust-lang/rust/pull/40241
7702 [40338]: https://github.com/rust-lang/rust/pull/40338
7703 [40367]: https://github.com/rust-lang/rust/pull/40367
7704 [40377]: https://github.com/rust-lang/rust/pull/40377
7705 [40409]: https://github.com/rust-lang/rust/pull/40409
7706 [40516]: https://github.com/rust-lang/rust/pull/40516
7707 [40556]: https://github.com/rust-lang/rust/pull/40556
7708 [40561]: https://github.com/rust-lang/rust/pull/40561
7709 [40589]: https://github.com/rust-lang/rust/pull/40589
7710 [40612]: https://github.com/rust-lang/rust/pull/40612
7711 [40723]: https://github.com/rust-lang/rust/pull/40723
7712 [40728]: https://github.com/rust-lang/rust/pull/40728
7713 [40731]: https://github.com/rust-lang/rust/pull/40731
7714 [40734]: https://github.com/rust-lang/rust/pull/40734
7715 [40805]: https://github.com/rust-lang/rust/pull/40805
7716 [40807]: https://github.com/rust-lang/rust/pull/40807
7717 [40828]: https://github.com/rust-lang/rust/pull/40828
7718 [40870]: https://github.com/rust-lang/rust/pull/40870
7719 [41085]: https://github.com/rust-lang/rust/pull/41085
7720 [41143]: https://github.com/rust-lang/rust/pull/41143
7721 [41168]: https://github.com/rust-lang/rust/pull/41168
7722 [41270]: https://github.com/rust-lang/rust/issues/41270
7723 [41469]: https://github.com/rust-lang/rust/pull/41469
7724 [41805]: https://github.com/rust-lang/rust/issues/41805
7725 [RFC 1422]: https://github.com/rust-lang/rfcs/blob/master/text/1422-pub-restricted.md
7726 [RFC 1665]: https://github.com/rust-lang/rfcs/blob/master/text/1665-windows-subsystem.md
7727 [`Child::try_wait`]: https://doc.rust-lang.org/std/process/struct.Child.html#method.try_wait
7728 [`HashMap::retain`]: https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.retain
7729 [`HashSet::retain`]: https://doc.rust-lang.org/std/collections/struct.HashSet.html#method.retain
7730 [`PeekMut::pop`]: https://doc.rust-lang.org/std/collections/binary_heap/struct.PeekMut.html#method.pop
7731 [`TcpStream::peek`]: https://doc.rust-lang.org/std/net/struct.TcpStream.html#method.peek
7732 [`UdpSocket::peek_from`]: https://doc.rust-lang.org/std/net/struct.UdpSocket.html#method.peek_from
7733 [`UdpSocket::peek`]: https://doc.rust-lang.org/std/net/struct.UdpSocket.html#method.peek
7734 [cargo/3842]: https://github.com/rust-lang/cargo/pull/3842
7735 [cargo/3847]: https://github.com/rust-lang/cargo/pull/3847
7736 [cargo/3885]: https://github.com/rust-lang/cargo/pull/3885
7737 [cargo/3901]: https://github.com/rust-lang/cargo/pull/3901
7738 [cargo/3952]: https://github.com/rust-lang/cargo/pull/3952
7739
7740
7741 Version 1.17.0 (2017-04-27)
7742 ===========================
7743
7744 Language
7745 --------
7746
7747 * [The lifetime of statics and consts defaults to `'static`][39265]. [RFC 1623]
7748 * [Fields of structs may be initialized without duplicating the field/variable
7749 names][39761]. [RFC 1682]
7750 * [`Self` may be included in the `where` clause of `impls`][38864]. [RFC 1647]
7751 * [When coercing to an unsized type lifetimes must be equal][40319]. That is,
7752 there is no subtyping between `T` and `U` when `T: Unsize<U>`. For example,
7753 coercing `&mut [&'a X; N]` to `&mut [&'b X]` requires `'a` be equal to
7754 `'b`. Soundness fix.
7755 * [Values passed to the indexing operator, `[]`, automatically coerce][40166]
7756 * [Static variables may contain references to other statics][40027]
7757
7758 Compiler
7759 --------
7760
7761 * [Exit quickly on only `--emit dep-info`][40336]
7762 * [Make `-C relocation-model` more correctly determine whether the linker
7763 creates a position-independent executable][40245]
7764 * [Add `-C overflow-checks` to directly control whether integer overflow
7765 panics][40037]
7766 * [The rustc type checker now checks items on demand instead of in a single
7767 in-order pass][40008]. This is mostly an internal refactoring in support of
7768 future work, including incremental type checking, but also resolves [RFC
7769 1647], allowing `Self` to appear in `impl` `where` clauses.
7770 * [Optimize vtable loads][39995]
7771 * [Turn off vectorization for Emscripten targets][39990]
7772 * [Provide suggestions for unknown macros imported with `use`][39953]
7773 * [Fix ICEs in path resolution][39939]
7774 * [Strip exception handling code on Emscripten when `panic=abort`][39193]
7775 * [Add clearer error message using `&str + &str`][39116]
7776
7777 Stabilized APIs
7778 ---------------
7779
7780 * [`Arc::into_raw`]
7781 * [`Arc::from_raw`]
7782 * [`Arc::ptr_eq`]
7783 * [`Rc::into_raw`]
7784 * [`Rc::from_raw`]
7785 * [`Rc::ptr_eq`]
7786 * [`Ordering::then`]
7787 * [`Ordering::then_with`]
7788 * [`BTreeMap::range`]
7789 * [`BTreeMap::range_mut`]
7790 * [`collections::Bound`]
7791 * [`process::abort`]
7792 * [`ptr::read_unaligned`]
7793 * [`ptr::write_unaligned`]
7794 * [`Result::expect_err`]
7795 * [`Cell::swap`]
7796 * [`Cell::replace`]
7797 * [`Cell::into_inner`]
7798 * [`Cell::take`]
7799
7800 Libraries
7801 ---------
7802
7803 * [`BTreeMap` and `BTreeSet` can iterate over ranges][27787]
7804 * [`Cell` can store non-`Copy` types][39793]. [RFC 1651]
7805 * [`String` implements `FromIterator<&char>`][40028]
7806 * `Box` [implements][40009] a number of new conversions:
7807 `From<Box<str>> for String`,
7808 `From<Box<[T]>> for Vec<T>`,
7809 `From<Box<CStr>> for CString`,
7810 `From<Box<OsStr>> for OsString`,
7811 `From<Box<Path>> for PathBuf`,
7812 `Into<Box<str>> for String`,
7813 `Into<Box<[T]>> for Vec<T>`,
7814 `Into<Box<CStr>> for CString`,
7815 `Into<Box<OsStr>> for OsString`,
7816 `Into<Box<Path>> for PathBuf`,
7817 `Default for Box<str>`,
7818 `Default for Box<CStr>`,
7819 `Default for Box<OsStr>`,
7820 `From<&CStr> for Box<CStr>`,
7821 `From<&OsStr> for Box<OsStr>`,
7822 `From<&Path> for Box<Path>`
7823 * [`ffi::FromBytesWithNulError` implements `Error` and `Display`][39960]
7824 * [Specialize `PartialOrd<A> for [A] where A: Ord`][39642]
7825 * [Slightly optimize `slice::sort`][39538]
7826 * [Add `ToString` trait specialization for `Cow<'a, str>` and `String`][39440]
7827 * [`Box<[T]>` implements `From<&[T]> where T: Copy`,
7828 `Box<str>` implements `From<&str>`][39438]
7829 * [`IpAddr` implements `From` for various arrays. `SocketAddr` implements
7830 `From<(I, u16)> where I: Into<IpAddr>`][39372]
7831 * [`format!` estimates the needed capacity before writing a string][39356]
7832 * [Support unprivileged symlink creation in Windows][38921]
7833 * [`PathBuf` implements `Default`][38764]
7834 * [Implement `PartialEq<[A]>` for `VecDeque<A>`][38661]
7835 * [`HashMap` resizes adaptively][38368] to guard against DOS attacks
7836 and poor hash functions.
7837
7838 Cargo
7839 -----
7840
7841 * [Add `cargo check --all`][cargo/3731]
7842 * [Add an option to ignore SSL revocation checking][cargo/3699]
7843 * [Add `cargo run --package`][cargo/3691]
7844 * [Add `required_features`][cargo/3667]
7845 * [Assume `build.rs` is a build script][cargo/3664]
7846 * [Find workspace via `workspace_root` link in containing member][cargo/3562]
7847
7848 Misc
7849 ----
7850
7851 * [Documentation is rendered with mdbook instead of the obsolete, in-tree
7852 `rustbook`][39633]
7853 * [The "Unstable Book" documents nightly-only features][ubook]
7854 * [Improve the style of the sidebar in rustdoc output][40265]
7855 * [Configure build correctly on 64-bit CPU's with the armhf ABI][40261]
7856 * [Fix MSP430 breakage due to `i128`][40257]
7857 * [Preliminary Solaris/SPARCv9 support][39903]
7858 * [`rustc` is linked statically on Windows MSVC targets][39837], allowing it to
7859 run without installing the MSVC runtime.
7860 * [`rustdoc --test` includes file names in test names][39788]
7861 * This release includes builds of `std` for `sparc64-unknown-linux-gnu`,
7862 `aarch64-unknown-linux-fuchsia`, and `x86_64-unknown-linux-fuchsia`.
7863 * [Initial support for `aarch64-unknown-freebsd`][39491]
7864 * [Initial support for `i686-unknown-netbsd`][39426]
7865 * [This release no longer includes the old makefile build system][39431]. Rust
7866 is built with a custom build system, written in Rust, and with Cargo.
7867 * [Add Debug implementations for libcollection structs][39002]
7868 * [`TypeId` implements `PartialOrd` and `Ord`][38981]
7869 * [`--test-threads=0` produces an error][38945]
7870 * [`rustup` installs documentation by default][40526]
7871 * [The Rust source includes NatVis visualizations][39843]. These can be used by
7872 WinDbg and Visual Studio to improve the debugging experience.
7873
7874 Compatibility Notes
7875 -------------------
7876
7877 * [Rust 1.17 does not correctly detect the MSVC 2017 linker][38584]. As a
7878 workaround, either use MSVC 2015 or run vcvars.bat.
7879 * [When coercing to an unsized type lifetimes must be equal][40319]. That is,
7880 disallow subtyping between `T` and `U` when `T: Unsize<U>`, e.g. coercing
7881 `&mut [&'a X; N]` to `&mut [&'b X]` requires `'a` be equal to `'b`. Soundness
7882 fix.
7883 * [`format!` and `Display::to_string` panic if an underlying formatting
7884 implementation returns an error][40117]. Previously the error was silently
7885 ignored. It is incorrect for `write_fmt` to return an error when writing
7886 to a string.
7887 * [In-tree crates are verified to be unstable][39851]. Previously, some minor
7888 crates were marked stable and could be accessed from the stable toolchain.
7889 * [Rust git source no longer includes vendored crates][39728]. Those that need
7890 to build with vendored crates should build from release tarballs.
7891 * [Fix inert attributes from `proc_macro_derives`][39572]
7892 * [During crate resolution, rustc prefers a crate in the sysroot if two crates
7893 are otherwise identical][39518]. Unlikely to be encountered outside the Rust
7894 build system.
7895 * [Fixed bugs around how type inference interacts with dead-code][39485]. The
7896 existing code generally ignores the type of dead-code unless a type-hint is
7897 provided; this can cause surprising inference interactions particularly around
7898 defaulting. The new code uniformly ignores the result type of dead-code.
7899 * [Tuple-struct constructors with private fields are no longer visible][38932]
7900 * [Lifetime parameters that do not appear in the arguments are now considered
7901 early-bound][38897], resolving a soundness bug (#[32330]). The
7902 `hr_lifetime_in_assoc_type` future-compatibility lint has been in effect since
7903 April of 2016.
7904 * [rustdoc: fix doctests with non-feature crate attributes][38161]
7905 * [Make transmuting from fn item types to pointer-sized types a hard
7906 error][34198]
7907
7908 [27787]: https://github.com/rust-lang/rust/issues/27787
7909 [32330]: https://github.com/rust-lang/rust/issues/32330
7910 [34198]: https://github.com/rust-lang/rust/pull/34198
7911 [38161]: https://github.com/rust-lang/rust/pull/38161
7912 [38368]: https://github.com/rust-lang/rust/pull/38368
7913 [38584]: https://github.com/rust-lang/rust/issues/38584
7914 [38661]: https://github.com/rust-lang/rust/pull/38661
7915 [38764]: https://github.com/rust-lang/rust/pull/38764
7916 [38864]: https://github.com/rust-lang/rust/issues/38864
7917 [38897]: https://github.com/rust-lang/rust/pull/38897
7918 [38921]: https://github.com/rust-lang/rust/pull/38921
7919 [38932]: https://github.com/rust-lang/rust/pull/38932
7920 [38945]: https://github.com/rust-lang/rust/pull/38945
7921 [38981]: https://github.com/rust-lang/rust/pull/38981
7922 [39002]: https://github.com/rust-lang/rust/pull/39002
7923 [39116]: https://github.com/rust-lang/rust/pull/39116
7924 [39193]: https://github.com/rust-lang/rust/pull/39193
7925 [39265]: https://github.com/rust-lang/rust/pull/39265
7926 [39356]: https://github.com/rust-lang/rust/pull/39356
7927 [39372]: https://github.com/rust-lang/rust/pull/39372
7928 [39426]: https://github.com/rust-lang/rust/pull/39426
7929 [39431]: https://github.com/rust-lang/rust/pull/39431
7930 [39438]: https://github.com/rust-lang/rust/pull/39438
7931 [39440]: https://github.com/rust-lang/rust/pull/39440
7932 [39485]: https://github.com/rust-lang/rust/pull/39485
7933 [39491]: https://github.com/rust-lang/rust/pull/39491
7934 [39518]: https://github.com/rust-lang/rust/pull/39518
7935 [39538]: https://github.com/rust-lang/rust/pull/39538
7936 [39572]: https://github.com/rust-lang/rust/pull/39572
7937 [39633]: https://github.com/rust-lang/rust/pull/39633
7938 [39642]: https://github.com/rust-lang/rust/pull/39642
7939 [39728]: https://github.com/rust-lang/rust/pull/39728
7940 [39761]: https://github.com/rust-lang/rust/pull/39761
7941 [39788]: https://github.com/rust-lang/rust/pull/39788
7942 [39793]: https://github.com/rust-lang/rust/pull/39793
7943 [39837]: https://github.com/rust-lang/rust/pull/39837
7944 [39843]: https://github.com/rust-lang/rust/pull/39843
7945 [39851]: https://github.com/rust-lang/rust/pull/39851
7946 [39903]: https://github.com/rust-lang/rust/pull/39903
7947 [39939]: https://github.com/rust-lang/rust/pull/39939
7948 [39953]: https://github.com/rust-lang/rust/pull/39953
7949 [39960]: https://github.com/rust-lang/rust/pull/39960
7950 [39990]: https://github.com/rust-lang/rust/pull/39990
7951 [39995]: https://github.com/rust-lang/rust/pull/39995
7952 [40008]: https://github.com/rust-lang/rust/pull/40008
7953 [40009]: https://github.com/rust-lang/rust/pull/40009
7954 [40027]: https://github.com/rust-lang/rust/pull/40027
7955 [40028]: https://github.com/rust-lang/rust/pull/40028
7956 [40037]: https://github.com/rust-lang/rust/pull/40037
7957 [40117]: https://github.com/rust-lang/rust/pull/40117
7958 [40166]: https://github.com/rust-lang/rust/pull/40166
7959 [40245]: https://github.com/rust-lang/rust/pull/40245
7960 [40257]: https://github.com/rust-lang/rust/pull/40257
7961 [40261]: https://github.com/rust-lang/rust/pull/40261
7962 [40265]: https://github.com/rust-lang/rust/pull/40265
7963 [40319]: https://github.com/rust-lang/rust/pull/40319
7964 [40336]: https://github.com/rust-lang/rust/pull/40336
7965 [40526]: https://github.com/rust-lang/rust/pull/40526
7966 [RFC 1623]: https://github.com/rust-lang/rfcs/blob/master/text/1623-static.md
7967 [RFC 1647]: https://github.com/rust-lang/rfcs/blob/master/text/1647-allow-self-in-where-clauses.md
7968 [RFC 1651]: https://github.com/rust-lang/rfcs/blob/master/text/1651-movecell.md
7969 [RFC 1682]: https://github.com/rust-lang/rfcs/blob/master/text/1682-field-init-shorthand.md
7970 [`Arc::from_raw`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.from_raw
7971 [`Arc::into_raw`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.into_raw
7972 [`Arc::ptr_eq`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.ptr_eq
7973 [`BTreeMap::range_mut`]: https://doc.rust-lang.org/std/collections/btree_map/struct.BTreeMap.html#method.range_mut
7974 [`BTreeMap::range`]: https://doc.rust-lang.org/std/collections/btree_map/struct.BTreeMap.html#method.range
7975 [`Cell::into_inner`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.into_inner
7976 [`Cell::replace`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.replace
7977 [`Cell::swap`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.swap
7978 [`Cell::take`]: https://doc.rust-lang.org/std/cell/struct.Cell.html#method.take
7979 [`Ordering::then_with`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.then_with
7980 [`Ordering::then`]: https://doc.rust-lang.org/std/cmp/enum.Ordering.html#method.then
7981 [`Rc::from_raw`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.from_raw
7982 [`Rc::into_raw`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.into_raw
7983 [`Rc::ptr_eq`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.ptr_eq
7984 [`Result::expect_err`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.expect_err
7985 [`collections::Bound`]: https://doc.rust-lang.org/std/collections/enum.Bound.html
7986 [`process::abort`]: https://doc.rust-lang.org/std/process/fn.abort.html
7987 [`ptr::read_unaligned`]: https://doc.rust-lang.org/std/ptr/fn.read_unaligned.html
7988 [`ptr::write_unaligned`]: https://doc.rust-lang.org/std/ptr/fn.write_unaligned.html
7989 [cargo/3562]: https://github.com/rust-lang/cargo/pull/3562
7990 [cargo/3664]: https://github.com/rust-lang/cargo/pull/3664
7991 [cargo/3667]: https://github.com/rust-lang/cargo/pull/3667
7992 [cargo/3691]: https://github.com/rust-lang/cargo/pull/3691
7993 [cargo/3699]: https://github.com/rust-lang/cargo/pull/3699
7994 [cargo/3731]: https://github.com/rust-lang/cargo/pull/3731
7995 [ubook]: https://doc.rust-lang.org/unstable-book/
7996
7997
7998 Version 1.16.0 (2017-03-16)
7999 ===========================
8000
8001 Language
8002 --------
8003
8004 * [The compiler's `dead_code` lint now accounts for type aliases][38051].
8005 * [Uninhabitable enums (those without any variants) no longer permit wildcard
8006 match patterns][38069]
8007 * [Clean up semantics of `self` in an import list][38313]
8008 * [`Self` may appear in `impl` headers][38920]
8009 * [`Self` may appear in struct expressions][39282]
8010
8011 Compiler
8012 --------
8013
8014 * [`rustc` now supports `--emit=metadata`, which causes rustc to emit
8015 a `.rmeta` file containing only crate metadata][38571]. This can be
8016 used by tools like the Rust Language Service to perform
8017 metadata-only builds.
8018 * [Levenshtein based typo suggestions now work in most places, while
8019 previously they worked only for fields and sometimes for local
8020 variables][38927]. Together with the overhaul of "no
8021 resolution"/"unexpected resolution" errors (#[38154]) they result in
8022 large and systematic improvement in resolution diagnostics.
8023 * [Fix `transmute::<T, U>` where `T` requires a bigger alignment than
8024 `U`][38670]
8025 * [rustc: use -Xlinker when specifying an rpath with ',' in it][38798]
8026 * [`rustc` no longer attempts to provide "consider using an explicit
8027 lifetime" suggestions][37057]. They were inaccurate.
8028
8029 Stabilized APIs
8030 ---------------
8031
8032 * [`VecDeque::truncate`]
8033 * [`VecDeque::resize`]
8034 * [`String::insert_str`]
8035 * [`Duration::checked_add`]
8036 * [`Duration::checked_sub`]
8037 * [`Duration::checked_div`]
8038 * [`Duration::checked_mul`]
8039 * [`str::replacen`]
8040 * [`str::repeat`]
8041 * [`SocketAddr::is_ipv4`]
8042 * [`SocketAddr::is_ipv6`]
8043 * [`IpAddr::is_ipv4`]
8044 * [`IpAddr::is_ipv6`]
8045 * [`Vec::dedup_by`]
8046 * [`Vec::dedup_by_key`]
8047 * [`Result::unwrap_or_default`]
8048 * [`<*const T>::wrapping_offset`]
8049 * [`<*mut T>::wrapping_offset`]
8050 * `CommandExt::creation_flags`
8051 * [`File::set_permissions`]
8052 * [`String::split_off`]
8053
8054 Libraries
8055 ---------
8056
8057 * [`[T]::binary_search` and `[T]::binary_search_by_key` now take
8058 their argument by `Borrow` parameter][37761]
8059 * [All public types in std implement `Debug`][38006]
8060 * [`IpAddr` implements `From<Ipv4Addr>` and `From<Ipv6Addr>`][38327]
8061 * [`Ipv6Addr` implements `From<[u16; 8]>`][38131]
8062 * [Ctrl-Z returns from `Stdin.read()` when reading from the console on
8063 Windows][38274]
8064 * [std: Fix partial writes in `LineWriter`][38062]
8065 * [std: Clamp max read/write sizes on Unix][38622]
8066 * [Use more specific panic message for `&str` slicing errors][38066]
8067 * [`TcpListener::set_only_v6` is deprecated][38304]. This
8068 functionality cannot be achieved in std currently.
8069 * [`writeln!`, like `println!`, now accepts a form with no string
8070 or formatting arguments, to just print a newline][38469]
8071 * [Implement `iter::Sum` and `iter::Product` for `Result`][38580]
8072 * [Reduce the size of static data in `std_unicode::tables`][38781]
8073 * [`char::EscapeDebug`, `EscapeDefault`, `EscapeUnicode`,
8074 `CaseMappingIter`, `ToLowercase`, `ToUppercase`, implement
8075 `Display`][38909]
8076 * [`Duration` implements `Sum`][38712]
8077 * [`String` implements `ToSocketAddrs`][39048]
8078
8079 Cargo
8080 -----
8081
8082 * [The `cargo check` command does a type check of a project without
8083 building it][cargo/3296]
8084 * [crates.io will display CI badges from Travis and AppVeyor, if
8085 specified in Cargo.toml][cargo/3546]
8086 * [crates.io will display categories listed in Cargo.toml][cargo/3301]
8087 * [Compilation profiles accept integer values for `debug`, in addition
8088 to `true` and `false`. These are passed to `rustc` as the value to
8089 `-C debuginfo`][cargo/3534]
8090 * [Implement `cargo --version --verbose`][cargo/3604]
8091 * [All builds now output 'dep-info' build dependencies compatible with
8092 make and ninja][cargo/3557]
8093 * [Build all workspace members with `build --all`][cargo/3511]
8094 * [Document all workspace members with `doc --all`][cargo/3515]
8095 * [Path deps outside workspace are not members][cargo/3443]
8096
8097 Misc
8098 ----
8099
8100 * [`rustdoc` has a `--sysroot` argument that, like `rustc`, specifies
8101 the path to the Rust implementation][38589]
8102 * [The `armv7-linux-androideabi` target no longer enables NEON
8103 extensions, per Google's ABI guide][38413]
8104 * [The stock standard library can be compiled for Redox OS][38401]
8105 * [Rust has initial SPARC support][38726]. Tier 3. No builds
8106 available.
8107 * [Rust has experimental support for Nvidia PTX][38559]. Tier 3. No
8108 builds available.
8109 * [Fix backtraces on i686-pc-windows-gnu by disabling FPO][39379]
8110
8111 Compatibility Notes
8112 -------------------
8113
8114 * [Uninhabitable enums (those without any variants) no longer permit wildcard
8115 match patterns][38069]
8116 * In this release, references to uninhabited types can not be
8117 pattern-matched. This was accidentally allowed in 1.15.
8118 * [The compiler's `dead_code` lint now accounts for type aliases][38051].
8119 * [Ctrl-Z returns from `Stdin.read()` when reading from the console on
8120 Windows][38274]
8121 * [Clean up semantics of `self` in an import list][38313]
8122 * Reimplemented lifetime elision. This change was almost entirely compatible
8123 with existing code, but it did close a number of small bugs and loopholes,
8124 as well as being more accepting in some other [cases][41105].
8125
8126 [37057]: https://github.com/rust-lang/rust/pull/37057
8127 [37761]: https://github.com/rust-lang/rust/pull/37761
8128 [38006]: https://github.com/rust-lang/rust/pull/38006
8129 [38051]: https://github.com/rust-lang/rust/pull/38051
8130 [38062]: https://github.com/rust-lang/rust/pull/38062
8131 [38622]: https://github.com/rust-lang/rust/pull/38622
8132 [38066]: https://github.com/rust-lang/rust/pull/38066
8133 [38069]: https://github.com/rust-lang/rust/pull/38069
8134 [38131]: https://github.com/rust-lang/rust/pull/38131
8135 [38154]: https://github.com/rust-lang/rust/pull/38154
8136 [38274]: https://github.com/rust-lang/rust/pull/38274
8137 [38304]: https://github.com/rust-lang/rust/pull/38304
8138 [38313]: https://github.com/rust-lang/rust/pull/38313
8139 [38327]: https://github.com/rust-lang/rust/pull/38327
8140 [38401]: https://github.com/rust-lang/rust/pull/38401
8141 [38413]: https://github.com/rust-lang/rust/pull/38413
8142 [38469]: https://github.com/rust-lang/rust/pull/38469
8143 [38559]: https://github.com/rust-lang/rust/pull/38559
8144 [38571]: https://github.com/rust-lang/rust/pull/38571
8145 [38580]: https://github.com/rust-lang/rust/pull/38580
8146 [38589]: https://github.com/rust-lang/rust/pull/38589
8147 [38670]: https://github.com/rust-lang/rust/pull/38670
8148 [38712]: https://github.com/rust-lang/rust/pull/38712
8149 [38726]: https://github.com/rust-lang/rust/pull/38726
8150 [38781]: https://github.com/rust-lang/rust/pull/38781
8151 [38798]: https://github.com/rust-lang/rust/pull/38798
8152 [38909]: https://github.com/rust-lang/rust/pull/38909
8153 [38920]: https://github.com/rust-lang/rust/pull/38920
8154 [38927]: https://github.com/rust-lang/rust/pull/38927
8155 [39048]: https://github.com/rust-lang/rust/pull/39048
8156 [39282]: https://github.com/rust-lang/rust/pull/39282
8157 [39379]: https://github.com/rust-lang/rust/pull/39379
8158 [41105]: https://github.com/rust-lang/rust/issues/41105
8159 [`<*const T>::wrapping_offset`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_offset
8160 [`<*mut T>::wrapping_offset`]: https://doc.rust-lang.org/std/primitive.pointer.html#method.wrapping_offset-1
8161 [`Duration::checked_add`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.checked_add
8162 [`Duration::checked_div`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.checked_div
8163 [`Duration::checked_mul`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.checked_mul
8164 [`Duration::checked_sub`]: https://doc.rust-lang.org/std/time/struct.Duration.html#method.checked_sub
8165 [`File::set_permissions`]: https://doc.rust-lang.org/std/fs/struct.File.html#method.set_permissions
8166 [`IpAddr::is_ipv4`]: https://doc.rust-lang.org/std/net/enum.IpAddr.html#method.is_ipv4
8167 [`IpAddr::is_ipv6`]: https://doc.rust-lang.org/std/net/enum.IpAddr.html#method.is_ipv6
8168 [`Result::unwrap_or_default`]: https://doc.rust-lang.org/std/result/enum.Result.html#method.unwrap_or_default
8169 [`SocketAddr::is_ipv4`]: https://doc.rust-lang.org/std/net/enum.SocketAddr.html#method.is_ipv4
8170 [`SocketAddr::is_ipv6`]: https://doc.rust-lang.org/std/net/enum.SocketAddr.html#method.is_ipv6
8171 [`String::insert_str`]: https://doc.rust-lang.org/std/string/struct.String.html#method.insert_str
8172 [`String::split_off`]: https://doc.rust-lang.org/std/string/struct.String.html#method.split_off
8173 [`Vec::dedup_by_key`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.dedup_by_key
8174 [`Vec::dedup_by`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.dedup_by
8175 [`VecDeque::resize`]: https://doc.rust-lang.org/std/collections/vec_deque/struct.VecDeque.html#method.resize
8176 [`VecDeque::truncate`]: https://doc.rust-lang.org/std/collections/vec_deque/struct.VecDeque.html#method.truncate
8177 [`str::repeat`]: https://doc.rust-lang.org/std/primitive.str.html#method.repeat
8178 [`str::replacen`]: https://doc.rust-lang.org/std/primitive.str.html#method.replacen
8179 [cargo/3296]: https://github.com/rust-lang/cargo/pull/3296
8180 [cargo/3301]: https://github.com/rust-lang/cargo/pull/3301
8181 [cargo/3443]: https://github.com/rust-lang/cargo/pull/3443
8182 [cargo/3511]: https://github.com/rust-lang/cargo/pull/3511
8183 [cargo/3515]: https://github.com/rust-lang/cargo/pull/3515
8184 [cargo/3534]: https://github.com/rust-lang/cargo/pull/3534
8185 [cargo/3546]: https://github.com/rust-lang/cargo/pull/3546
8186 [cargo/3557]: https://github.com/rust-lang/cargo/pull/3557
8187 [cargo/3604]: https://github.com/rust-lang/cargo/pull/3604
8188
8189
8190 Version 1.15.1 (2017-02-09)
8191 ===========================
8192
8193 * [Fix IntoIter::as_mut_slice's signature][39466]
8194 * [Compile compiler builtins with `-fPIC` on 32-bit platforms][39523]
8195
8196 [39466]: https://github.com/rust-lang/rust/pull/39466
8197 [39523]: https://github.com/rust-lang/rust/pull/39523
8198
8199
8200 Version 1.15.0 (2017-02-02)
8201 ===========================
8202
8203 Language
8204 --------
8205
8206 * Basic procedural macros allowing custom `#[derive]`, aka "macros 1.1", are
8207 stable. This allows popular code-generating crates like Serde and Diesel to
8208 work ergonomically. [RFC 1681].
8209 * [Tuple structs may be empty. Unary and empty tuple structs may be instantiated
8210 with curly braces][36868]. Part of [RFC 1506].
8211 * [A number of minor changes to name resolution have been activated][37127].
8212 They add up to more consistent semantics, allowing for future evolution of
8213 Rust macros. Specified in [RFC 1560], see its section on ["changes"] for
8214 details of what is different. The breaking changes here have been transitioned
8215 through the [`legacy_imports`] lint since 1.14, with no known regressions.
8216 * [In `macro_rules`, `path` fragments can now be parsed as type parameter
8217 bounds][38279]
8218 * [`?Sized` can be used in `where` clauses][37791]
8219 * [There is now a limit on the size of monomorphized types and it can be
8220 modified with the `#![type_size_limit]` crate attribute, similarly to
8221 the `#![recursion_limit]` attribute][37789]
8222
8223 Compiler
8224 --------
8225
8226 * [On Windows, the compiler will apply dllimport attributes when linking to
8227 extern functions][37973]. Additional attributes and flags can control which
8228 library kind is linked and its name. [RFC 1717].
8229 * [Rust-ABI symbols are no longer exported from cdylibs][38117]
8230 * [The `--test` flag works with procedural macro crates][38107]
8231 * [Fix `extern "aapcs" fn` ABI][37814]
8232 * [The `-C no-stack-check` flag is deprecated][37636]. It does nothing.
8233 * [The `format!` expander recognizes incorrect `printf` and shell-style
8234 formatting directives and suggests the correct format][37613].
8235 * [Only report one error for all unused imports in an import list][37456]
8236
8237 Compiler Performance
8238 --------------------
8239
8240 * [Avoid unnecessary `mk_ty` calls in `Ty::super_fold_with`][37705]
8241 * [Avoid more unnecessary `mk_ty` calls in `Ty::super_fold_with`][37979]
8242 * [Don't clone in `UnificationTable::probe`][37848]
8243 * [Remove `scope_auxiliary` to cut RSS by 10%][37764]
8244 * [Use small vectors in type walker][37760]
8245 * [Macro expansion performance was improved][37701]
8246 * [Change `HirVec<P<T>>` to `HirVec<T>` in `hir::Expr`][37642]
8247 * [Replace FNV with a faster hash function][37229]
8248
8249 Stabilized APIs
8250 ---------------
8251
8252 * [`std::iter::Iterator::min_by`]
8253 * [`std::iter::Iterator::max_by`]
8254 * [`std::os::*::fs::FileExt`]
8255 * [`std::sync::atomic::Atomic*::get_mut`]
8256 * [`std::sync::atomic::Atomic*::into_inner`]
8257 * [`std::vec::IntoIter::as_slice`]
8258 * [`std::vec::IntoIter::as_mut_slice`]
8259 * [`std::sync::mpsc::Receiver::try_iter`]
8260 * [`std::os::unix::process::CommandExt::before_exec`]
8261 * [`std::rc::Rc::strong_count`]
8262 * [`std::rc::Rc::weak_count`]
8263 * [`std::sync::Arc::strong_count`]
8264 * [`std::sync::Arc::weak_count`]
8265 * [`std::char::encode_utf8`]
8266 * [`std::char::encode_utf16`]
8267 * [`std::cell::Ref::clone`]
8268 * [`std::io::Take::into_inner`]
8269
8270 Libraries
8271 ---------
8272
8273 * [The standard sorting algorithm has been rewritten for dramatic performance
8274 improvements][38192]. It is a hybrid merge sort, drawing influences from
8275 Timsort. Previously it was a naive merge sort.
8276 * [`Iterator::nth` no longer has a `Sized` bound][38134]
8277 * [`Extend<&T>` is specialized for `Vec` where `T: Copy`][38182] to improve
8278 performance.
8279 * [`chars().count()` is much faster][37888] and so are [`chars().last()`
8280 and `char_indices().last()`][37882]
8281 * [Fix ARM Objective-C ABI in `std::env::args`][38146]
8282 * [Chinese characters display correctly in `fmt::Debug`][37855]
8283 * [Derive `Default` for `Duration`][37699]
8284 * [Support creation of anonymous pipes on WinXP/2k][37677]
8285 * [`mpsc::RecvTimeoutError` implements `Error`][37527]
8286 * [Don't pass overlapped handles to processes][38835]
8287
8288 Cargo
8289 -----
8290
8291 * [In this release, Cargo build scripts no longer have access to the `OUT_DIR`
8292 environment variable at build time via `env!("OUT_DIR")`][cargo/3368]. They
8293 should instead check the variable at runtime with `std::env`. That the value
8294 was set at build time was a bug, and incorrect when cross-compiling. This
8295 change is known to cause breakage.
8296 * [Add `--all` flag to `cargo test`][cargo/3221]
8297 * [Compile statically against the MSVC CRT][cargo/3363]
8298 * [Mix feature flags into fingerprint/metadata shorthash][cargo/3102]
8299 * [Link OpenSSL statically on OSX][cargo/3311]
8300 * [Apply new fingerprinting to build dir outputs][cargo/3310]
8301 * [Test for bad path overrides with summaries][cargo/3336]
8302 * [Require `cargo install --vers` to take a semver version][cargo/3338]
8303 * [Fix retrying crate downloads for network errors][cargo/3348]
8304 * [Implement string lookup for `build.rustflags` config key][cargo/3356]
8305 * [Emit more info on --message-format=json][cargo/3319]
8306 * [Assume `build.rs` in the same directory as `Cargo.toml` is a build script][cargo/3361]
8307 * [Don't ignore errors in workspace manifest][cargo/3409]
8308 * [Fix `--message-format JSON` when rustc emits non-JSON warnings][cargo/3410]
8309
8310 Tooling
8311 -------
8312
8313 * [Test runners (binaries built with `--test`) now support a `--list` argument
8314 that lists the tests it contains][38185]
8315 * [Test runners now support a `--exact` argument that makes the test filter
8316 match exactly, instead of matching only a substring of the test name][38181]
8317 * [rustdoc supports a `--playground-url` flag][37763]
8318 * [rustdoc provides more details about `#[should_panic]` errors][37749]
8319
8320 Misc
8321 ----
8322
8323 * [The Rust build system is now written in Rust][37817]. The Makefiles may
8324 continue to be used in this release by passing `--disable-rustbuild` to the
8325 configure script, but they will be deleted soon. Note that the new build
8326 system uses a different on-disk layout that will likely affect any scripts
8327 building Rust.
8328 * [Rust supports i686-unknown-openbsd][38086]. Tier 3 support. No testing or
8329 releases.
8330 * [Rust supports the MSP430][37627]. Tier 3 support. No testing or releases.
8331 * [Rust supports the ARMv5TE architecture][37615]. Tier 3 support. No testing or
8332 releases.
8333
8334 Compatibility Notes
8335 -------------------
8336
8337 * [A number of minor changes to name resolution have been activated][37127].
8338 They add up to more consistent semantics, allowing for future evolution of
8339 Rust macros. Specified in [RFC 1560], see its section on ["changes"] for
8340 details of what is different. The breaking changes here have been transitioned
8341 through the [`legacy_imports`] lint since 1.14, with no known regressions.
8342 * [In this release, Cargo build scripts no longer have access to the `OUT_DIR`
8343 environment variable at build time via `env!("OUT_DIR")`][cargo/3368]. They
8344 should instead check the variable at runtime with `std::env`. That the value
8345 was set at build time was a bug, and incorrect when cross-compiling. This
8346 change is known to cause breakage.
8347 * [Higher-ranked lifetimes are no longer allowed to appear _only_ in associated
8348 types][33685]. The [`hr_lifetime_in_assoc_type` lint] has been a warning since
8349 1.10 and is now an error by default. It will become a hard error in the near
8350 future.
8351 * [The semantics relating modules to file system directories are changing in
8352 minor ways][37602]. This is captured in the new `legacy_directory_ownership`
8353 lint, which is a warning in this release, and will become a hard error in the
8354 future.
8355 * [Rust-ABI symbols are no longer exported from cdylibs][38117]
8356 * [Once `Peekable` peeks a `None` it will return that `None` without re-querying
8357 the underlying iterator][37834]
8358
8359 ["changes"]: https://github.com/rust-lang/rfcs/blob/master/text/1560-name-resolution.md#changes-to-name-resolution-rules
8360 [33685]: https://github.com/rust-lang/rust/issues/33685
8361 [36868]: https://github.com/rust-lang/rust/pull/36868
8362 [37127]: https://github.com/rust-lang/rust/pull/37127
8363 [37229]: https://github.com/rust-lang/rust/pull/37229
8364 [37456]: https://github.com/rust-lang/rust/pull/37456
8365 [37527]: https://github.com/rust-lang/rust/pull/37527
8366 [37602]: https://github.com/rust-lang/rust/pull/37602
8367 [37613]: https://github.com/rust-lang/rust/pull/37613
8368 [37615]: https://github.com/rust-lang/rust/pull/37615
8369 [37636]: https://github.com/rust-lang/rust/pull/37636
8370 [37627]: https://github.com/rust-lang/rust/pull/37627
8371 [37642]: https://github.com/rust-lang/rust/pull/37642
8372 [37677]: https://github.com/rust-lang/rust/pull/37677
8373 [37699]: https://github.com/rust-lang/rust/pull/37699
8374 [37701]: https://github.com/rust-lang/rust/pull/37701
8375 [37705]: https://github.com/rust-lang/rust/pull/37705
8376 [37749]: https://github.com/rust-lang/rust/pull/37749
8377 [37760]: https://github.com/rust-lang/rust/pull/37760
8378 [37763]: https://github.com/rust-lang/rust/pull/37763
8379 [37764]: https://github.com/rust-lang/rust/pull/37764
8380 [37789]: https://github.com/rust-lang/rust/pull/37789
8381 [37791]: https://github.com/rust-lang/rust/pull/37791
8382 [37814]: https://github.com/rust-lang/rust/pull/37814
8383 [37817]: https://github.com/rust-lang/rust/pull/37817
8384 [37834]: https://github.com/rust-lang/rust/pull/37834
8385 [37848]: https://github.com/rust-lang/rust/pull/37848
8386 [37855]: https://github.com/rust-lang/rust/pull/37855
8387 [37882]: https://github.com/rust-lang/rust/pull/37882
8388 [37888]: https://github.com/rust-lang/rust/pull/37888
8389 [37973]: https://github.com/rust-lang/rust/pull/37973
8390 [37979]: https://github.com/rust-lang/rust/pull/37979
8391 [38086]: https://github.com/rust-lang/rust/pull/38086
8392 [38107]: https://github.com/rust-lang/rust/pull/38107
8393 [38117]: https://github.com/rust-lang/rust/pull/38117
8394 [38134]: https://github.com/rust-lang/rust/pull/38134
8395 [38146]: https://github.com/rust-lang/rust/pull/38146
8396 [38181]: https://github.com/rust-lang/rust/pull/38181
8397 [38182]: https://github.com/rust-lang/rust/pull/38182
8398 [38185]: https://github.com/rust-lang/rust/pull/38185
8399 [38192]: https://github.com/rust-lang/rust/pull/38192
8400 [38279]: https://github.com/rust-lang/rust/pull/38279
8401 [38835]: https://github.com/rust-lang/rust/pull/38835
8402 [RFC 1506]: https://github.com/rust-lang/rfcs/blob/master/text/1506-adt-kinds.md
8403 [RFC 1560]: https://github.com/rust-lang/rfcs/blob/master/text/1560-name-resolution.md
8404 [RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
8405 [RFC 1717]: https://github.com/rust-lang/rfcs/blob/master/text/1717-dllimport.md
8406 [`hr_lifetime_in_assoc_type` lint]: https://github.com/rust-lang/rust/issues/33685
8407 [`legacy_imports`]: https://github.com/rust-lang/rust/pull/38271
8408 [cargo/3102]: https://github.com/rust-lang/cargo/pull/3102
8409 [cargo/3221]: https://github.com/rust-lang/cargo/pull/3221
8410 [cargo/3310]: https://github.com/rust-lang/cargo/pull/3310
8411 [cargo/3311]: https://github.com/rust-lang/cargo/pull/3311
8412 [cargo/3319]: https://github.com/rust-lang/cargo/pull/3319
8413 [cargo/3336]: https://github.com/rust-lang/cargo/pull/3336
8414 [cargo/3338]: https://github.com/rust-lang/cargo/pull/3338
8415 [cargo/3348]: https://github.com/rust-lang/cargo/pull/3348
8416 [cargo/3356]: https://github.com/rust-lang/cargo/pull/3356
8417 [cargo/3361]: https://github.com/rust-lang/cargo/pull/3361
8418 [cargo/3363]: https://github.com/rust-lang/cargo/pull/3363
8419 [cargo/3368]: https://github.com/rust-lang/cargo/issues/3368
8420 [cargo/3409]: https://github.com/rust-lang/cargo/pull/3409
8421 [cargo/3410]: https://github.com/rust-lang/cargo/pull/3410
8422 [`std::iter::Iterator::min_by`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.min_by
8423 [`std::iter::Iterator::max_by`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.max_by
8424 [`std::os::*::fs::FileExt`]: https://doc.rust-lang.org/std/os/unix/fs/trait.FileExt.html
8425 [`std::sync::atomic::Atomic*::get_mut`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU8.html#method.get_mut
8426 [`std::sync::atomic::Atomic*::into_inner`]: https://doc.rust-lang.org/std/sync/atomic/struct.AtomicU8.html#method.into_inner
8427 [`std::vec::IntoIter::as_slice`]: https://doc.rust-lang.org/std/vec/struct.IntoIter.html#method.as_slice
8428 [`std::vec::IntoIter::as_mut_slice`]: https://doc.rust-lang.org/std/vec/struct.IntoIter.html#method.as_mut_slice
8429 [`std::sync::mpsc::Receiver::try_iter`]: https://doc.rust-lang.org/std/sync/mpsc/struct.Receiver.html#method.try_iter
8430 [`std::os::unix::process::CommandExt::before_exec`]: https://doc.rust-lang.org/std/os/unix/process/trait.CommandExt.html#tymethod.before_exec
8431 [`std::rc::Rc::strong_count`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.strong_count
8432 [`std::rc::Rc::weak_count`]: https://doc.rust-lang.org/std/rc/struct.Rc.html#method.weak_count
8433 [`std::sync::Arc::strong_count`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.strong_count
8434 [`std::sync::Arc::weak_count`]: https://doc.rust-lang.org/std/sync/struct.Arc.html#method.weak_count
8435 [`std::char::encode_utf8`]: https://doc.rust-lang.org/std/primitive.char.html#method.encode_utf8
8436 [`std::char::encode_utf16`]: https://doc.rust-lang.org/std/primitive.char.html#method.encode_utf16
8437 [`std::cell::Ref::clone`]: https://doc.rust-lang.org/std/cell/struct.Ref.html#method.clone
8438 [`std::io::Take::into_inner`]: https://doc.rust-lang.org/std/io/struct.Take.html#method.into_inner
8439
8440
8441 Version 1.14.0 (2016-12-22)
8442 ===========================
8443
8444 Language
8445 --------
8446
8447 * [`..` matches multiple tuple fields in enum variants, structs
8448 and tuples][36843]. [RFC 1492].
8449 * [Safe `fn` items can be coerced to `unsafe fn` pointers][37389]
8450 * [`use *` and `use ::*` both glob-import from the crate root][37367]
8451 * [It's now possible to call a `Vec<Box<Fn()>>` without explicit
8452 dereferencing][36822]
8453
8454 Compiler
8455 --------
8456
8457 * [Mark enums with non-zero discriminant as non-zero][37224]
8458 * [Lower-case `static mut` names are linted like other
8459 statics and consts][37162]
8460 * [Fix ICE on some macros in const integer positions
8461 (e.g. `[u8; m!()]`)][36819]
8462 * [Improve error message and snippet for "did you mean `x`"][36798]
8463 * [Add a panic-strategy field to the target specification][36794]
8464 * [Include LLVM version in `--version --verbose`][37200]
8465
8466 Compile-time Optimizations
8467 --------------------------
8468
8469 * [Improve macro expansion performance][37569]
8470 * [Shrink `Expr_::ExprInlineAsm`][37445]
8471 * [Replace all uses of SHA-256 with BLAKE2b][37439]
8472 * [Reduce the number of bytes hashed by `IchHasher`][37427]
8473 * [Avoid more allocations when compiling html5ever][37373]
8474 * [Use `SmallVector` in `CombineFields::instantiate`][37322]
8475 * [Avoid some allocations in the macro parser][37318]
8476 * [Use a faster deflate setting][37298]
8477 * [Add `ArrayVec` and `AccumulateVec` to reduce heap allocations
8478 during interning of slices][37270]
8479 * [Optimize `write_metadata`][37267]
8480 * [Don't process obligation forest cycles when stalled][37231]
8481 * [Avoid many `CrateConfig` clones][37161]
8482 * [Optimize `Substs::super_fold_with`][37108]
8483 * [Optimize `ObligationForest`'s `NodeState` handling][36993]
8484 * [Speed up `plug_leaks`][36917]
8485
8486 Libraries
8487 ---------
8488
8489 * [`println!()`, with no arguments, prints newline][36825].
8490 Previously, an empty string was required to achieve the same.
8491 * [`Wrapping` impls standard binary and unary operators, as well as
8492 the `Sum` and `Product` iterators][37356]
8493 * [Implement `From<Cow<str>> for String` and `From<Cow<[T]>> for
8494 Vec<T>`][37326]
8495 * [Improve `fold` performance for `chain`, `cloned`, `map`, and
8496 `VecDeque` iterators][37315]
8497 * [Improve `SipHasher` performance on small values][37312]
8498 * [Add Iterator trait TrustedLen to enable better FromIterator /
8499 Extend][37306]
8500 * [Expand `.zip()` specialization to `.map()` and `.cloned()`][37230]
8501 * [`ReadDir` implements `Debug`][37221]
8502 * [Implement `RefUnwindSafe` for atomic types][37178]
8503 * [Specialize `Vec::extend` to `Vec::extend_from_slice`][37094]
8504 * [Avoid allocations in `Decoder::read_str`][37064]
8505 * [`io::Error` implements `From<io::ErrorKind>`][37037]
8506 * [Impl `Debug` for raw pointers to unsized data][36880]
8507 * [Don't reuse `HashMap` random seeds][37470]
8508 * [The internal memory layout of `HashMap` is more cache-friendly, for
8509 significant improvements in some operations][36692]
8510 * [`HashMap` uses less memory on 32-bit architectures][36595]
8511 * [Impl `Add<{str, Cow<str>}>` for `Cow<str>`][36430]
8512
8513 Cargo
8514 -----
8515
8516 * [Expose rustc cfg values to build scripts][cargo/3243]
8517 * [Allow cargo to work with read-only `CARGO_HOME`][cargo/3259]
8518 * [Fix passing --features when testing multiple packages][cargo/3280]
8519 * [Use a single profile set per workspace][cargo/3249]
8520 * [Load `replace` sections from lock files][cargo/3220]
8521 * [Ignore `panic` configuration for test/bench profiles][cargo/3175]
8522
8523 Tooling
8524 -------
8525
8526 * [rustup is the recommended Rust installation method][1.14rustup]
8527 * This release includes host (rustc) builds for Linux on MIPS, PowerPC, and
8528 S390x. These are [tier 2] platforms and may have major defects. Follow the
8529 instructions on the website to install, or add the targets to an existing
8530 installation with `rustup target add`. The new target triples are:
8531 - `mips-unknown-linux-gnu`
8532 - `mipsel-unknown-linux-gnu`
8533 - `mips64-unknown-linux-gnuabi64`
8534 - `mips64el-unknown-linux-gnuabi64 `
8535 - `powerpc-unknown-linux-gnu`
8536 - `powerpc64-unknown-linux-gnu`
8537 - `powerpc64le-unknown-linux-gnu`
8538 - `s390x-unknown-linux-gnu `
8539 * This release includes target (std) builds for ARM Linux running MUSL
8540 libc. These are [tier 2] platforms and may have major defects. Add the
8541 following triples to an existing rustup installation with `rustup target add`:
8542 - `arm-unknown-linux-musleabi`
8543 - `arm-unknown-linux-musleabihf`
8544 - `armv7-unknown-linux-musleabihf`
8545 * This release includes [experimental support for WebAssembly][1.14wasm], via
8546 the `wasm32-unknown-emscripten` target. This target is known to have major
8547 defects. Please test, report, and fix.
8548 * rustup no longer installs documentation by default. Run `rustup
8549 component add rust-docs` to install.
8550 * [Fix line stepping in debugger][37310]
8551 * [Enable line number debuginfo in releases][37280]
8552
8553 Misc
8554 ----
8555
8556 * [Disable jemalloc on aarch64/powerpc/mips][37392]
8557 * [Add support for Fuchsia OS][37313]
8558 * [Detect local-rebuild by only MAJOR.MINOR version][37273]
8559
8560 Compatibility Notes
8561 -------------------
8562
8563 * [A number of forward-compatibility lints used by the compiler
8564 to gradually introduce language changes have been converted
8565 to deny by default][36894]:
8566 - ["use of inaccessible extern crate erroneously allowed"][36886]
8567 - ["type parameter default erroneously allowed in invalid location"][36887]
8568 - ["detects super or self keywords at the beginning of global path"][36888]
8569 - ["two overlapping inherent impls define an item with the same name
8570 were erroneously allowed"][36889]
8571 - ["floating-point constants cannot be used in patterns"][36890]
8572 - ["constants of struct or enum type can only be used in a pattern if
8573 the struct or enum has `#[derive(PartialEq, Eq)]`"][36891]
8574 - ["lifetimes or labels named `'_` were erroneously allowed"][36892]
8575 * [Prohibit patterns in trait methods without bodies][37378]
8576 * [The atomic `Ordering` enum may not be matched exhaustively][37351]
8577 * [Future-proofing `#[no_link]` breaks some obscure cases][37247]
8578 * [The `$crate` macro variable is accepted in fewer locations][37213]
8579 * [Impls specifying extra region requirements beyond the trait
8580 they implement are rejected][37167]
8581 * [Enums may not be unsized][37111]. Unsized enums are intended to
8582 work but never have. For now they are forbidden.
8583 * [Enforce the shadowing restrictions from RFC 1560 for today's macros][36767]
8584
8585 [tier 2]: https://forge.rust-lang.org/platform-support.html
8586 [1.14rustup]: https://internals.rust-lang.org/t/beta-testing-rustup-rs/3316/204
8587 [1.14wasm]: https://users.rust-lang.org/t/compiling-to-the-web-with-rust-and-emscripten/7627
8588 [36430]: https://github.com/rust-lang/rust/pull/36430
8589 [36595]: https://github.com/rust-lang/rust/pull/36595
8590 [36692]: https://github.com/rust-lang/rust/pull/36692
8591 [36767]: https://github.com/rust-lang/rust/pull/36767
8592 [36794]: https://github.com/rust-lang/rust/pull/36794
8593 [36798]: https://github.com/rust-lang/rust/pull/36798
8594 [36819]: https://github.com/rust-lang/rust/pull/36819
8595 [36822]: https://github.com/rust-lang/rust/pull/36822
8596 [36825]: https://github.com/rust-lang/rust/pull/36825
8597 [36843]: https://github.com/rust-lang/rust/pull/36843
8598 [36880]: https://github.com/rust-lang/rust/pull/36880
8599 [36886]: https://github.com/rust-lang/rust/issues/36886
8600 [36887]: https://github.com/rust-lang/rust/issues/36887
8601 [36888]: https://github.com/rust-lang/rust/issues/36888
8602 [36889]: https://github.com/rust-lang/rust/issues/36889
8603 [36890]: https://github.com/rust-lang/rust/issues/36890
8604 [36891]: https://github.com/rust-lang/rust/issues/36891
8605 [36892]: https://github.com/rust-lang/rust/issues/36892
8606 [36894]: https://github.com/rust-lang/rust/pull/36894
8607 [36917]: https://github.com/rust-lang/rust/pull/36917
8608 [36993]: https://github.com/rust-lang/rust/pull/36993
8609 [37037]: https://github.com/rust-lang/rust/pull/37037
8610 [37064]: https://github.com/rust-lang/rust/pull/37064
8611 [37094]: https://github.com/rust-lang/rust/pull/37094
8612 [37108]: https://github.com/rust-lang/rust/pull/37108
8613 [37111]: https://github.com/rust-lang/rust/pull/37111
8614 [37161]: https://github.com/rust-lang/rust/pull/37161
8615 [37162]: https://github.com/rust-lang/rust/pull/37162
8616 [37167]: https://github.com/rust-lang/rust/pull/37167
8617 [37178]: https://github.com/rust-lang/rust/pull/37178
8618 [37200]: https://github.com/rust-lang/rust/pull/37200
8619 [37213]: https://github.com/rust-lang/rust/pull/37213
8620 [37221]: https://github.com/rust-lang/rust/pull/37221
8621 [37224]: https://github.com/rust-lang/rust/pull/37224
8622 [37230]: https://github.com/rust-lang/rust/pull/37230
8623 [37231]: https://github.com/rust-lang/rust/pull/37231
8624 [37247]: https://github.com/rust-lang/rust/pull/37247
8625 [37267]: https://github.com/rust-lang/rust/pull/37267
8626 [37270]: https://github.com/rust-lang/rust/pull/37270
8627 [37273]: https://github.com/rust-lang/rust/pull/37273
8628 [37280]: https://github.com/rust-lang/rust/pull/37280
8629 [37298]: https://github.com/rust-lang/rust/pull/37298
8630 [37306]: https://github.com/rust-lang/rust/pull/37306
8631 [37310]: https://github.com/rust-lang/rust/pull/37310
8632 [37312]: https://github.com/rust-lang/rust/pull/37312
8633 [37313]: https://github.com/rust-lang/rust/pull/37313
8634 [37315]: https://github.com/rust-lang/rust/pull/37315
8635 [37318]: https://github.com/rust-lang/rust/pull/37318
8636 [37322]: https://github.com/rust-lang/rust/pull/37322
8637 [37326]: https://github.com/rust-lang/rust/pull/37326
8638 [37351]: https://github.com/rust-lang/rust/pull/37351
8639 [37356]: https://github.com/rust-lang/rust/pull/37356
8640 [37367]: https://github.com/rust-lang/rust/pull/37367
8641 [37373]: https://github.com/rust-lang/rust/pull/37373
8642 [37378]: https://github.com/rust-lang/rust/pull/37378
8643 [37389]: https://github.com/rust-lang/rust/pull/37389
8644 [37392]: https://github.com/rust-lang/rust/pull/37392
8645 [37427]: https://github.com/rust-lang/rust/pull/37427
8646 [37439]: https://github.com/rust-lang/rust/pull/37439
8647 [37445]: https://github.com/rust-lang/rust/pull/37445
8648 [37470]: https://github.com/rust-lang/rust/pull/37470
8649 [37569]: https://github.com/rust-lang/rust/pull/37569
8650 [RFC 1492]: https://github.com/rust-lang/rfcs/blob/master/text/1492-dotdot-in-patterns.md
8651 [cargo/3175]: https://github.com/rust-lang/cargo/pull/3175
8652 [cargo/3220]: https://github.com/rust-lang/cargo/pull/3220
8653 [cargo/3243]: https://github.com/rust-lang/cargo/pull/3243
8654 [cargo/3249]: https://github.com/rust-lang/cargo/pull/3249
8655 [cargo/3259]: https://github.com/rust-lang/cargo/pull/3259
8656 [cargo/3280]: https://github.com/rust-lang/cargo/pull/3280
8657
8658
8659 Version 1.13.0 (2016-11-10)
8660 ===========================
8661
8662 Language
8663 --------
8664
8665 * [Stabilize the `?` operator][36995]. `?` is a simple way to propagate
8666 errors, like the `try!` macro, described in [RFC 0243].
8667 * [Stabilize macros in type position][36014]. Described in [RFC 873].
8668 * [Stabilize attributes on statements][36995]. Described in [RFC 0016].
8669 * [Fix `#[derive]` for empty tuple structs/variants][35728]
8670 * [Fix lifetime rules for 'if' conditions][36029]
8671 * [Avoid loading and parsing unconfigured non-inline modules][36482]
8672
8673 Compiler
8674 --------
8675
8676 * [Add the `-C link-arg` argument][36574]
8677 * [Remove the old AST-based backend from rustc_trans][35764]
8678 * [Don't enable NEON by default on armv7 Linux][35814]
8679 * [Fix debug line number info for macro expansions][35238]
8680 * [Do not emit "class method" debuginfo for types that are not
8681 DICompositeType][36008]
8682 * [Warn about multiple conflicting #[repr] hints][34623]
8683 * [When sizing DST, don't double-count nested struct prefixes][36351]
8684 * [Default RUST_MIN_STACK to 16MiB for now][36505]
8685 * [Improve rlib metadata format][36551]. Reduces rlib size significantly.
8686 * [Reject macros with empty repetitions to avoid infinite loop][36721]
8687 * [Expand macros without recursing to avoid stack overflows][36214]
8688
8689 Diagnostics
8690 -----------
8691
8692 * [Replace macro backtraces with labeled local uses][35702]
8693 * [Improve error message for misplaced doc comments][33922]
8694 * [Buffer unix and lock windows to prevent message interleaving][35975]
8695 * [Update lifetime errors to specifically note temporaries][36171]
8696 * [Special case a few colors for Windows][36178]
8697 * [Suggest `use self` when such an import resolves][36289]
8698 * [Be more specific when type parameter shadows primitive type][36338]
8699 * Many minor improvements
8700
8701 Compile-time Optimizations
8702 --------------------------
8703
8704 * [Compute and cache HIR hashes at beginning][35854]
8705 * [Don't hash types in loan paths][36004]
8706 * [Cache projections in trans][35761]
8707 * [Optimize the parser's last token handling][36527]
8708 * [Only instantiate #[inline] functions in codegen units referencing
8709 them][36524]. This leads to big improvements in cases where crates export
8710 define many inline functions without using them directly.
8711 * [Lazily allocate TypedArena's first chunk][36592]
8712 * [Don't allocate during default HashSet creation][36734]
8713
8714 Stabilized APIs
8715 ---------------
8716
8717 * [`checked_abs`]
8718 * [`wrapping_abs`]
8719 * [`overflowing_abs`]
8720 * [`RefCell::try_borrow`]
8721 * [`RefCell::try_borrow_mut`]
8722
8723 Libraries
8724 ---------
8725
8726 * [Add `assert_ne!` and `debug_assert_ne!`][35074]
8727 * [Make `vec_deque::Drain`, `hash_map::Drain`, and `hash_set::Drain`
8728 covariant][35354]
8729 * [Implement `AsRef<[T]>` for `std::slice::Iter`][35559]
8730 * [Implement `Debug` for `std::vec::IntoIter`][35707]
8731 * [`CString`: avoid excessive growth just to 0-terminate][35871]
8732 * [Implement `CoerceUnsized` for `{Cell, RefCell, UnsafeCell}`][35627]
8733 * [Use arc4rand on FreeBSD][35884]
8734 * [memrchr: Correct aligned offset computation][35969]
8735 * [Improve Demangling of Rust Symbols][36059]
8736 * [Use monotonic time in condition variables][35048]
8737 * [Implement `Debug` for `std::path::{Components,Iter}`][36101]
8738 * [Implement conversion traits for `char`][35755]
8739 * [Fix illegal instruction caused by overflow in channel cloning][36104]
8740 * [Zero first byte of CString on drop][36264]
8741 * [Inherit overflow checks for sum and product][36372]
8742 * [Add missing Eq implementations][36423]
8743 * [Implement `Debug` for `DirEntry`][36631]
8744 * [When `getaddrinfo` returns `EAI_SYSTEM` retrieve actual error from
8745 `errno`][36754]
8746 * [`SipHasher`] is deprecated. Use [`DefaultHasher`].
8747 * [Implement more traits for `std::io::ErrorKind`][35911]
8748 * [Optimize BinaryHeap bounds checking][36072]
8749 * [Work around pointer aliasing issue in `Vec::extend_from_slice`,
8750 `extend_with_element`][36355]
8751 * [Fix overflow checking in unsigned pow()][34942]
8752
8753 Cargo
8754 -----
8755
8756 * This release includes security fixes to both curl and OpenSSL.
8757 * [Fix transitive doctests when panic=abort][cargo/3021]
8758 * [Add --all-features flag to cargo][cargo/3038]
8759 * [Reject path-based dependencies in `cargo package`][cargo/3060]
8760 * [Don't parse the home directory more than once][cargo/3078]
8761 * [Don't try to generate Cargo.lock on empty workspaces][cargo/3092]
8762 * [Update OpenSSL to 1.0.2j][cargo/3121]
8763 * [Add license and license_file to cargo metadata output][cargo/3110]
8764 * [Make crates-io registry URL optional in config; ignore all changes to
8765 source.crates-io][cargo/3089]
8766 * [Don't download dependencies from other platforms][cargo/3123]
8767 * [Build transitive dev-dependencies when needed][cargo/3125]
8768 * [Add support for per-target rustflags in .cargo/config][cargo/3157]
8769 * [Avoid updating registry when adding existing deps][cargo/3144]
8770 * [Warn about path overrides that won't work][cargo/3136]
8771 * [Use workspaces during `cargo install`][cargo/3146]
8772 * [Leak mspdbsrv.exe processes on Windows][cargo/3162]
8773 * [Add --message-format flag][cargo/3000]
8774 * [Pass target environment for rustdoc][cargo/3205]
8775 * [Use `CommandExt::exec` for `cargo run` on Unix][cargo/2818]
8776 * [Update curl and curl-sys][cargo/3241]
8777 * [Call rustdoc test with the correct cfg flags of a package][cargo/3242]
8778
8779 Tooling
8780 -------
8781
8782 * [rustdoc: Add the `--sysroot` argument][36586]
8783 * [rustdoc: Fix a couple of issues with the search results][35655]
8784 * [rustdoc: remove the `!` from macro URLs and titles][35234]
8785 * [gdb: Fix pretty-printing special-cased Rust types][35585]
8786 * [rustdoc: Filter more incorrect methods inherited through Deref][36266]
8787
8788 Misc
8789 ----
8790
8791 * [Remove unmaintained style guide][35124]
8792 * [Add s390x support][36369]
8793 * [Initial work at Haiku OS support][36727]
8794 * [Add mips-uclibc targets][35734]
8795 * [Crate-ify compiler-rt into compiler-builtins][35021]
8796 * [Add rustc version info (git hash + date) to dist tarball][36213]
8797 * Many documentation improvements
8798
8799 Compatibility Notes
8800 -------------------
8801
8802 * [`SipHasher`] is deprecated. Use [`DefaultHasher`].
8803 * [Deny (by default) transmuting from fn item types to pointer-sized
8804 types][34923]. Continuing the long transition to zero-sized fn items,
8805 per [RFC 401].
8806 * [Fix `#[derive]` for empty tuple structs/variants][35728].
8807 Part of [RFC 1506].
8808 * [Issue deprecation warnings for safe accesses to extern statics][36173]
8809 * [Fix lifetime rules for 'if' conditions][36029].
8810 * [Inherit overflow checks for sum and product][36372].
8811 * [Forbid user-defined macros named "macro_rules"][36730].
8812
8813 [33922]: https://github.com/rust-lang/rust/pull/33922
8814 [34623]: https://github.com/rust-lang/rust/pull/34623
8815 [34923]: https://github.com/rust-lang/rust/pull/34923
8816 [34942]: https://github.com/rust-lang/rust/pull/34942
8817 [35021]: https://github.com/rust-lang/rust/pull/35021
8818 [35048]: https://github.com/rust-lang/rust/pull/35048
8819 [35074]: https://github.com/rust-lang/rust/pull/35074
8820 [35124]: https://github.com/rust-lang/rust/pull/35124
8821 [35234]: https://github.com/rust-lang/rust/pull/35234
8822 [35238]: https://github.com/rust-lang/rust/pull/35238
8823 [35354]: https://github.com/rust-lang/rust/pull/35354
8824 [35559]: https://github.com/rust-lang/rust/pull/35559
8825 [35585]: https://github.com/rust-lang/rust/pull/35585
8826 [35627]: https://github.com/rust-lang/rust/pull/35627
8827 [35655]: https://github.com/rust-lang/rust/pull/35655
8828 [35702]: https://github.com/rust-lang/rust/pull/35702
8829 [35707]: https://github.com/rust-lang/rust/pull/35707
8830 [35728]: https://github.com/rust-lang/rust/pull/35728
8831 [35734]: https://github.com/rust-lang/rust/pull/35734
8832 [35755]: https://github.com/rust-lang/rust/pull/35755
8833 [35761]: https://github.com/rust-lang/rust/pull/35761
8834 [35764]: https://github.com/rust-lang/rust/pull/35764
8835 [35814]: https://github.com/rust-lang/rust/pull/35814
8836 [35854]: https://github.com/rust-lang/rust/pull/35854
8837 [35871]: https://github.com/rust-lang/rust/pull/35871
8838 [35884]: https://github.com/rust-lang/rust/pull/35884
8839 [35911]: https://github.com/rust-lang/rust/pull/35911
8840 [35969]: https://github.com/rust-lang/rust/pull/35969
8841 [35975]: https://github.com/rust-lang/rust/pull/35975
8842 [36004]: https://github.com/rust-lang/rust/pull/36004
8843 [36008]: https://github.com/rust-lang/rust/pull/36008
8844 [36014]: https://github.com/rust-lang/rust/pull/36014
8845 [36029]: https://github.com/rust-lang/rust/pull/36029
8846 [36059]: https://github.com/rust-lang/rust/pull/36059
8847 [36072]: https://github.com/rust-lang/rust/pull/36072
8848 [36101]: https://github.com/rust-lang/rust/pull/36101
8849 [36104]: https://github.com/rust-lang/rust/pull/36104
8850 [36171]: https://github.com/rust-lang/rust/pull/36171
8851 [36173]: https://github.com/rust-lang/rust/pull/36173
8852 [36178]: https://github.com/rust-lang/rust/pull/36178
8853 [36213]: https://github.com/rust-lang/rust/pull/36213
8854 [36214]: https://github.com/rust-lang/rust/pull/36214
8855 [36264]: https://github.com/rust-lang/rust/pull/36264
8856 [36266]: https://github.com/rust-lang/rust/pull/36266
8857 [36289]: https://github.com/rust-lang/rust/pull/36289
8858 [36338]: https://github.com/rust-lang/rust/pull/36338
8859 [36351]: https://github.com/rust-lang/rust/pull/36351
8860 [36355]: https://github.com/rust-lang/rust/pull/36355
8861 [36369]: https://github.com/rust-lang/rust/pull/36369
8862 [36372]: https://github.com/rust-lang/rust/pull/36372
8863 [36423]: https://github.com/rust-lang/rust/pull/36423
8864 [36482]: https://github.com/rust-lang/rust/pull/36482
8865 [36505]: https://github.com/rust-lang/rust/pull/36505
8866 [36524]: https://github.com/rust-lang/rust/pull/36524
8867 [36527]: https://github.com/rust-lang/rust/pull/36527
8868 [36551]: https://github.com/rust-lang/rust/pull/36551
8869 [36574]: https://github.com/rust-lang/rust/pull/36574
8870 [36586]: https://github.com/rust-lang/rust/pull/36586
8871 [36592]: https://github.com/rust-lang/rust/pull/36592
8872 [36631]: https://github.com/rust-lang/rust/pull/36631
8873 [36721]: https://github.com/rust-lang/rust/pull/36721
8874 [36727]: https://github.com/rust-lang/rust/pull/36727
8875 [36730]: https://github.com/rust-lang/rust/pull/36730
8876 [36734]: https://github.com/rust-lang/rust/pull/36734
8877 [36754]: https://github.com/rust-lang/rust/pull/36754
8878 [36995]: https://github.com/rust-lang/rust/pull/36995
8879 [RFC 0016]: https://github.com/rust-lang/rfcs/blob/master/text/0016-more-attributes.md
8880 [RFC 0243]: https://github.com/rust-lang/rfcs/blob/master/text/0243-trait-based-exception-handling.md
8881 [RFC 1506]: https://github.com/rust-lang/rfcs/blob/master/text/1506-adt-kinds.md
8882 [RFC 401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
8883 [RFC 873]: https://github.com/rust-lang/rfcs/blob/master/text/0873-type-macros.md
8884 [cargo/2818]: https://github.com/rust-lang/cargo/pull/2818
8885 [cargo/3000]: https://github.com/rust-lang/cargo/pull/3000
8886 [cargo/3021]: https://github.com/rust-lang/cargo/pull/3021
8887 [cargo/3038]: https://github.com/rust-lang/cargo/pull/3038
8888 [cargo/3060]: https://github.com/rust-lang/cargo/pull/3060
8889 [cargo/3078]: https://github.com/rust-lang/cargo/pull/3078
8890 [cargo/3089]: https://github.com/rust-lang/cargo/pull/3089
8891 [cargo/3092]: https://github.com/rust-lang/cargo/pull/3092
8892 [cargo/3110]: https://github.com/rust-lang/cargo/pull/3110
8893 [cargo/3121]: https://github.com/rust-lang/cargo/pull/3121
8894 [cargo/3123]: https://github.com/rust-lang/cargo/pull/3123
8895 [cargo/3125]: https://github.com/rust-lang/cargo/pull/3125
8896 [cargo/3136]: https://github.com/rust-lang/cargo/pull/3136
8897 [cargo/3144]: https://github.com/rust-lang/cargo/pull/3144
8898 [cargo/3146]: https://github.com/rust-lang/cargo/pull/3146
8899 [cargo/3157]: https://github.com/rust-lang/cargo/pull/3157
8900 [cargo/3162]: https://github.com/rust-lang/cargo/pull/3162
8901 [cargo/3205]: https://github.com/rust-lang/cargo/pull/3205
8902 [cargo/3241]: https://github.com/rust-lang/cargo/pull/3241
8903 [cargo/3242]: https://github.com/rust-lang/cargo/pull/3242
8904 [`checked_abs`]: https://doc.rust-lang.org/std/primitive.i32.html#method.checked_abs
8905 [`wrapping_abs`]: https://doc.rust-lang.org/std/primitive.i32.html#method.wrapping_abs
8906 [`overflowing_abs`]: https://doc.rust-lang.org/std/primitive.i32.html#method.overflowing_abs
8907 [`RefCell::try_borrow`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.try_borrow
8908 [`RefCell::try_borrow_mut`]: https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.try_borrow_mut
8909 [`SipHasher`]: https://doc.rust-lang.org/std/hash/struct.SipHasher.html
8910 [`DefaultHasher`]: https://doc.rust-lang.org/std/collections/hash_map/struct.DefaultHasher.html
8911
8912
8913 Version 1.12.1 (2016-10-20)
8914 ===========================
8915
8916 Regression Fixes
8917 ----------------
8918
8919 * [ICE: 'rustc' panicked at 'assertion failed: concrete_substs.is_normalized_for_trans()' #36381][36381]
8920 * [Confusion with double negation and booleans][36856]
8921 * [rustc 1.12.0 fails with SIGSEGV in release mode (syn crate 0.8.0)][36875]
8922 * [Rustc 1.12.0 Windows build of `ethcore` crate fails with LLVM error][36924]
8923 * [1.12.0: High memory usage when linking in release mode with debug info][36926]
8924 * [Corrupted memory after updated to 1.12][36936]
8925 * ["Let NullaryConstructor = something;" causes internal compiler error: "tried to overwrite interned AdtDef"][37026]
8926 * [Fix ICE: inject bitcast if types mismatch for invokes/calls/stores][37112]
8927 * [debuginfo: Handle spread_arg case in MIR-trans in a more stable way.][37153]
8928
8929 [36381]: https://github.com/rust-lang/rust/issues/36381
8930 [36856]: https://github.com/rust-lang/rust/issues/36856
8931 [36875]: https://github.com/rust-lang/rust/issues/36875
8932 [36924]: https://github.com/rust-lang/rust/issues/36924
8933 [36926]: https://github.com/rust-lang/rust/issues/36926
8934 [36936]: https://github.com/rust-lang/rust/issues/36936
8935 [37026]: https://github.com/rust-lang/rust/issues/37026
8936 [37112]: https://github.com/rust-lang/rust/issues/37112
8937 [37153]: https://github.com/rust-lang/rust/issues/37153
8938
8939
8940 Version 1.12.0 (2016-09-29)
8941 ===========================
8942
8943 Highlights
8944 ----------
8945
8946 * [`rustc` translates code to LLVM IR via its own "middle" IR (MIR)](https://github.com/rust-lang/rust/pull/34096).
8947 This translation pass is far simpler than the previous AST->LLVM pass, and
8948 creates opportunities to perform new optimizations directly on the MIR. It
8949 was previously described [on the Rust blog](https://blog.rust-lang.org/2016/04/19/MIR.html).
8950 * [`rustc` presents a new, more readable error format, along with
8951 machine-readable JSON error output for use by IDEs](https://github.com/rust-lang/rust/pull/35401).
8952 Most common editors supporting Rust have been updated to work with it. It was
8953 previously described [on the Rust blog](https://blog.rust-lang.org/2016/08/10/Shape-of-errors-to-come.html).
8954
8955 Compiler
8956 --------
8957
8958 * [`rustc` translates code to LLVM IR via its own "middle" IR (MIR)](https://github.com/rust-lang/rust/pull/34096).
8959 This translation pass is far simpler than the previous AST->LLVM pass, and
8960 creates opportunities to perform new optimizations directly on the MIR. It
8961 was previously described [on the Rust blog](https://blog.rust-lang.org/2016/04/19/MIR.html).
8962 * [Print the Rust target name, not the LLVM target name, with
8963 `--print target-list`](https://github.com/rust-lang/rust/pull/35489)
8964 * [The computation of `TypeId` is correct in some cases where it was previously
8965 producing inconsistent results](https://github.com/rust-lang/rust/pull/35267)
8966 * [The `mips-unknown-linux-gnu` target uses hardware floating point by default](https://github.com/rust-lang/rust/pull/34910)
8967 * [The `rustc` arguments, `--print target-cpus`, `--print target-features`,
8968 `--print relocation-models`, and `--print code-models` print the available
8969 options to the `-C target-cpu`, `-C target-feature`, `-C relocation-model` and
8970 `-C code-model` code generation arguments](https://github.com/rust-lang/rust/pull/34845)
8971 * [`rustc` supports three new MUSL targets on ARM: `arm-unknown-linux-musleabi`,
8972 `arm-unknown-linux-musleabihf`, and `armv7-unknown-linux-musleabihf`](https://github.com/rust-lang/rust/pull/35060).
8973 These targets produce statically-linked binaries. There are no binary release
8974 builds yet though.
8975
8976 Diagnostics
8977 -----------
8978
8979 * [`rustc` presents a new, more readable error format, along with
8980 machine-readable JSON error output for use by IDEs](https://github.com/rust-lang/rust/pull/35401).
8981 Most common editors supporting Rust have been updated to work with it. It was
8982 previously described [on the Rust blog](https://blog.rust-lang.org/2016/08/10/Shape-of-errors-to-come.html).
8983 * [In error descriptions, references are now described in plain English,
8984 instead of as "&-ptr"](https://github.com/rust-lang/rust/pull/35611)
8985 * [In error type descriptions, unknown numeric types are named `{integer}` or
8986 `{float}` instead of `_`](https://github.com/rust-lang/rust/pull/35080)
8987 * [`rustc` emits a clearer error when inner attributes follow a doc comment](https://github.com/rust-lang/rust/pull/34676)
8988
8989 Language
8990 --------
8991
8992 * [`macro_rules!` invocations can be made within `macro_rules!` invocations](https://github.com/rust-lang/rust/pull/34925)
8993 * [`macro_rules!` meta-variables are hygienic](https://github.com/rust-lang/rust/pull/35453)
8994 * [`macro_rules!` `tt` matchers can be reparsed correctly, making them much more
8995 useful](https://github.com/rust-lang/rust/pull/34908)
8996 * [`macro_rules!` `stmt` matchers correctly consume the entire contents when
8997 inside non-braces invocations](https://github.com/rust-lang/rust/pull/34886)
8998 * [Semicolons are properly required as statement delimiters inside
8999 `macro_rules!` invocations](https://github.com/rust-lang/rust/pull/34660)
9000 * [`cfg_attr` works on `path` attributes](https://github.com/rust-lang/rust/pull/34546)
9001
9002 Stabilized APIs
9003 ---------------
9004
9005 * [`Cell::as_ptr`](https://doc.rust-lang.org/std/cell/struct.Cell.html#method.as_ptr)
9006 * [`RefCell::as_ptr`](https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.as_ptr)
9007 * [`IpAddr::is_unspecified`](https://doc.rust-lang.org/std/net/enum.IpAddr.html#method.is_unspecified)
9008 * [`IpAddr::is_loopback`](https://doc.rust-lang.org/std/net/enum.IpAddr.html#method.is_loopback)
9009 * [`IpAddr::is_multicast`](https://doc.rust-lang.org/std/net/enum.IpAddr.html#method.is_multicast)
9010 * [`Ipv4Addr::is_unspecified`](https://doc.rust-lang.org/std/net/struct.Ipv4Addr.html#method.is_unspecified)
9011 * [`Ipv6Addr::octets`](https://doc.rust-lang.org/std/net/struct.Ipv6Addr.html#method.octets)
9012 * [`LinkedList::contains`](https://doc.rust-lang.org/std/collections/linked_list/struct.LinkedList.html#method.contains)
9013 * [`VecDeque::contains`](https://doc.rust-lang.org/std/collections/vec_deque/struct.VecDeque.html#method.contains)
9014 * [`ExitStatusExt::from_raw`](https://doc.rust-lang.org/std/os/unix/process/trait.ExitStatusExt.html#tymethod.from_raw).
9015 Both on Unix and Windows.
9016 * [`Receiver::recv_timeout`](https://doc.rust-lang.org/std/sync/mpsc/struct.Receiver.html#method.recv_timeout)
9017 * [`RecvTimeoutError`](https://doc.rust-lang.org/std/sync/mpsc/enum.RecvTimeoutError.html)
9018 * [`BinaryHeap::peek_mut`](https://doc.rust-lang.org/std/collections/binary_heap/struct.BinaryHeap.html#method.peek_mut)
9019 * [`PeekMut`](https://doc.rust-lang.org/std/collections/binary_heap/struct.PeekMut.html)
9020 * [`iter::Product`](https://doc.rust-lang.org/std/iter/trait.Product.html)
9021 * [`iter::Sum`](https://doc.rust-lang.org/std/iter/trait.Sum.html)
9022 * [`OccupiedEntry::remove_entry`](https://doc.rust-lang.org/std/collections/btree_map/struct.OccupiedEntry.html#method.remove_entry)
9023 * [`VacantEntry::into_key`](https://doc.rust-lang.org/std/collections/btree_map/struct.VacantEntry.html#method.into_key)
9024
9025 Libraries
9026 ---------
9027
9028 * [The `format!` macro and friends now allow a single argument to be formatted
9029 in multiple styles](https://github.com/rust-lang/rust/pull/33642)
9030 * [The lifetime bounds on `[T]::binary_search_by` and
9031 `[T]::binary_search_by_key` have been adjusted to be more flexible](https://github.com/rust-lang/rust/pull/34762)
9032 * [`Option` implements `From` for its contained type](https://github.com/rust-lang/rust/pull/34828)
9033 * [`Cell`, `RefCell` and `UnsafeCell` implement `From` for their contained type](https://github.com/rust-lang/rust/pull/35392)
9034 * [`RwLock` panics if the reader count overflows](https://github.com/rust-lang/rust/pull/35378)
9035 * [`vec_deque::Drain`, `hash_map::Drain` and `hash_set::Drain` are covariant](https://github.com/rust-lang/rust/pull/35354)
9036 * [`vec::Drain` and `binary_heap::Drain` are covariant](https://github.com/rust-lang/rust/pull/34951)
9037 * [`Cow<str>` implements `FromIterator` for `char`, `&str` and `String`](https://github.com/rust-lang/rust/pull/35064)
9038 * [Sockets on Linux are correctly closed in subprocesses via `SOCK_CLOEXEC`](https://github.com/rust-lang/rust/pull/34946)
9039 * [`hash_map::Entry`, `hash_map::VacantEntry` and `hash_map::OccupiedEntry`
9040 implement `Debug`](https://github.com/rust-lang/rust/pull/34937)
9041 * [`btree_map::Entry`, `btree_map::VacantEntry` and `btree_map::OccupiedEntry`
9042 implement `Debug`](https://github.com/rust-lang/rust/pull/34885)
9043 * [`String` implements `AddAssign`](https://github.com/rust-lang/rust/pull/34890)
9044 * [Variadic `extern fn` pointers implement the `Clone`, `PartialEq`, `Eq`,
9045 `PartialOrd`, `Ord`, `Hash`, `fmt::Pointer`, and `fmt::Debug` traits](https://github.com/rust-lang/rust/pull/34879)
9046 * [`FileType` implements `Debug`](https://github.com/rust-lang/rust/pull/34757)
9047 * [References to `Mutex` and `RwLock` are unwind-safe](https://github.com/rust-lang/rust/pull/34756)
9048 * [`mpsc::sync_channel` `Receiver`s return any available message before
9049 reporting a disconnect](https://github.com/rust-lang/rust/pull/34731)
9050 * [Unicode definitions have been updated to 9.0](https://github.com/rust-lang/rust/pull/34599)
9051 * [`env` iterators implement `DoubleEndedIterator`](https://github.com/rust-lang/rust/pull/33312)
9052
9053 Cargo
9054 -----
9055
9056 * [Support local mirrors of registries](https://github.com/rust-lang/cargo/pull/2857)
9057 * [Add support for command aliases](https://github.com/rust-lang/cargo/pull/2679)
9058 * [Allow `opt-level="s"` / `opt-level="z"` in profile overrides](https://github.com/rust-lang/cargo/pull/3007)
9059 * [Make `cargo doc --open --target` work as expected](https://github.com/rust-lang/cargo/pull/2988)
9060 * [Speed up noop registry updates](https://github.com/rust-lang/cargo/pull/2974)
9061 * [Update OpenSSL](https://github.com/rust-lang/cargo/pull/2971)
9062 * [Fix `--panic=abort` with plugins](https://github.com/rust-lang/cargo/pull/2954)
9063 * [Always pass `-C metadata` to the compiler](https://github.com/rust-lang/cargo/pull/2946)
9064 * [Fix depending on git repos with workspaces](https://github.com/rust-lang/cargo/pull/2938)
9065 * [Add a `--lib` flag to `cargo new`](https://github.com/rust-lang/cargo/pull/2921)
9066 * [Add `http.cainfo` for custom certs](https://github.com/rust-lang/cargo/pull/2917)
9067 * [Indicate the compilation profile after compiling](https://github.com/rust-lang/cargo/pull/2909)
9068 * [Allow enabling features for dependencies with `--features`](https://github.com/rust-lang/cargo/pull/2876)
9069 * [Add `--jobs` flag to `cargo package`](https://github.com/rust-lang/cargo/pull/2867)
9070 * [Add `--dry-run` to `cargo publish`](https://github.com/rust-lang/cargo/pull/2849)
9071 * [Add support for `RUSTDOCFLAGS`](https://github.com/rust-lang/cargo/pull/2794)
9072
9073 Performance
9074 -----------
9075
9076 * [`panic::catch_unwind` is more optimized](https://github.com/rust-lang/rust/pull/35444)
9077 * [`panic::catch_unwind` no longer accesses thread-local storage on entry](https://github.com/rust-lang/rust/pull/34866)
9078
9079 Tooling
9080 -------
9081
9082 * [Test binaries now support a `--test-threads` argument to specify the number
9083 of threads used to run tests, and which acts the same as the
9084 `RUST_TEST_THREADS` environment variable](https://github.com/rust-lang/rust/pull/35414)
9085 * [The test runner now emits a warning when tests run over 60 seconds](https://github.com/rust-lang/rust/pull/35405)
9086 * [rustdoc: Fix methods in search results](https://github.com/rust-lang/rust/pull/34752)
9087 * [`rust-lldb` warns about unsupported versions of LLDB](https://github.com/rust-lang/rust/pull/34646)
9088 * [Rust releases now come with source packages that can be installed by rustup
9089 via `rustup component add rust-src`](https://github.com/rust-lang/rust/pull/34366).
9090 The resulting source code can be used by tools and IDES, located in the
9091 sysroot under `lib/rustlib/src`.
9092
9093 Misc
9094 ----
9095
9096 * [The compiler can now be built against LLVM 3.9](https://github.com/rust-lang/rust/pull/35594)
9097 * Many minor improvements to the documentation.
9098 * [The Rust exception handling "personality" routine is now written in Rust](https://github.com/rust-lang/rust/pull/34832)
9099
9100 Compatibility Notes
9101 -------------------
9102
9103 * [When printing Windows `OsStr`s, unpaired surrogate codepoints are escaped
9104 with the lowercase format instead of the uppercase](https://github.com/rust-lang/rust/pull/35084)
9105 * [When formatting strings, if "precision" is specified, the "fill",
9106 "align" and "width" specifiers are no longer ignored](https://github.com/rust-lang/rust/pull/34544)
9107 * [The `Debug` impl for strings no longer escapes all non-ASCII characters](https://github.com/rust-lang/rust/pull/34485)
9108
9109
9110 Version 1.11.0 (2016-08-18)
9111 ===========================
9112
9113 Language
9114 --------
9115
9116 * [Support nested `cfg_attr` attributes](https://github.com/rust-lang/rust/pull/34216)
9117 * [Allow statement-generating braced macro invocations at the end of blocks](https://github.com/rust-lang/rust/pull/34436)
9118 * [Macros can be expanded inside of trait definitions](https://github.com/rust-lang/rust/pull/34213)
9119 * [`#[macro_use]` works properly when it is itself expanded from a macro](https://github.com/rust-lang/rust/pull/34032)
9120
9121 Stabilized APIs
9122 ---------------
9123
9124 * [`BinaryHeap::append`](https://doc.rust-lang.org/std/collections/binary_heap/struct.BinaryHeap.html#method.append)
9125 * [`BTreeMap::append`](https://doc.rust-lang.org/std/collections/btree_map/struct.BTreeMap.html#method.append)
9126 * [`BTreeMap::split_off`](https://doc.rust-lang.org/std/collections/btree_map/struct.BTreeMap.html#method.split_off)
9127 * [`BTreeSet::append`](https://doc.rust-lang.org/std/collections/btree_set/struct.BTreeSet.html#method.append)
9128 * [`BTreeSet::split_off`](https://doc.rust-lang.org/std/collections/btree_set/struct.BTreeSet.html#method.split_off)
9129 * [`f32::to_degrees`](https://doc.rust-lang.org/std/primitive.f32.html#method.to_degrees)
9130 (in libcore - previously stabilized in libstd)
9131 * [`f32::to_radians`](https://doc.rust-lang.org/std/primitive.f32.html#method.to_radians)
9132 (in libcore - previously stabilized in libstd)
9133 * [`f64::to_degrees`](https://doc.rust-lang.org/std/primitive.f64.html#method.to_degrees)
9134 (in libcore - previously stabilized in libstd)
9135 * [`f64::to_radians`](https://doc.rust-lang.org/std/primitive.f64.html#method.to_radians)
9136 (in libcore - previously stabilized in libstd)
9137 * [`Iterator::sum`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.sum)
9138 * [`Iterator::product`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.product)
9139 * [`Cell::get_mut`](https://doc.rust-lang.org/std/cell/struct.Cell.html#method.get_mut)
9140 * [`RefCell::get_mut`](https://doc.rust-lang.org/std/cell/struct.RefCell.html#method.get_mut)
9141
9142 Libraries
9143 ---------
9144
9145 * [The `thread_local!` macro supports multiple definitions in a single
9146 invocation, and can apply attributes](https://github.com/rust-lang/rust/pull/34077)
9147 * [`Cow` implements `Default`](https://github.com/rust-lang/rust/pull/34305)
9148 * [`Wrapping` implements binary, octal, lower-hex and upper-hex
9149 `Display` formatting](https://github.com/rust-lang/rust/pull/34190)
9150 * [The range types implement `Hash`](https://github.com/rust-lang/rust/pull/34180)
9151 * [`lookup_host` ignores unknown address types](https://github.com/rust-lang/rust/pull/34067)
9152 * [`assert_eq!` accepts a custom error message, like `assert!` does](https://github.com/rust-lang/rust/pull/33976)
9153 * [The main thread is now called "main" instead of "&lt;main&gt;"](https://github.com/rust-lang/rust/pull/33803)
9154
9155 Cargo
9156 -----
9157
9158 * [Disallow specifying features of transitive deps](https://github.com/rust-lang/cargo/pull/2821)
9159 * [Add color support for Windows consoles](https://github.com/rust-lang/cargo/pull/2804)
9160 * [Fix `harness = false` on `[lib]` sections](https://github.com/rust-lang/cargo/pull/2795)
9161 * [Don't panic when `links` contains a '.'](https://github.com/rust-lang/cargo/pull/2787)
9162 * [Build scripts can emit warnings](https://github.com/rust-lang/cargo/pull/2630),
9163 and `-vv` prints warnings for all crates.
9164 * [Ignore file locks on OS X NFS mounts](https://github.com/rust-lang/cargo/pull/2720)
9165 * [Don't warn about `package.metadata` keys](https://github.com/rust-lang/cargo/pull/2668).
9166 This provides room for expansion by arbitrary tools.
9167 * [Add support for cdylib crate types](https://github.com/rust-lang/cargo/pull/2741)
9168 * [Prevent publishing crates when files are dirty](https://github.com/rust-lang/cargo/pull/2781)
9169 * [Don't fetch all crates on clean](https://github.com/rust-lang/cargo/pull/2704)
9170 * [Propagate --color option to rustc](https://github.com/rust-lang/cargo/pull/2779)
9171 * [Fix `cargo doc --open` on Windows](https://github.com/rust-lang/cargo/pull/2780)
9172 * [Improve autocompletion](https://github.com/rust-lang/cargo/pull/2772)
9173 * [Configure colors of stderr as well as stdout](https://github.com/rust-lang/cargo/pull/2739)
9174
9175 Performance
9176 -----------
9177
9178 * [Caching projections speeds up type check dramatically for some
9179 workloads](https://github.com/rust-lang/rust/pull/33816)
9180 * [The default `HashMap` hasher is SipHash 1-3 instead of SipHash 2-4](https://github.com/rust-lang/rust/pull/33940)
9181 This hasher is faster, but is believed to provide sufficient
9182 protection from collision attacks.
9183 * [Comparison of `Ipv4Addr` is 10x faster](https://github.com/rust-lang/rust/pull/33891)
9184
9185 Rustdoc
9186 -------
9187
9188 * [Fix empty implementation section on some module pages](https://github.com/rust-lang/rust/pull/34536)
9189 * [Fix inlined renamed re-exports in import lists](https://github.com/rust-lang/rust/pull/34479)
9190 * [Fix search result layout for enum variants and struct fields](https://github.com/rust-lang/rust/pull/34477)
9191 * [Fix issues with source links to external crates](https://github.com/rust-lang/rust/pull/34387)
9192 * [Fix redirect pages for renamed re-exports](https://github.com/rust-lang/rust/pull/34245)
9193
9194 Tooling
9195 -------
9196
9197 * [rustc is better at finding the MSVC toolchain](https://github.com/rust-lang/rust/pull/34492)
9198 * [When emitting debug info, rustc emits frame pointers for closures,
9199 shims and glue, as it does for all other functions](https://github.com/rust-lang/rust/pull/33909)
9200 * [rust-lldb warns about unsupported versions of LLDB](https://github.com/rust-lang/rust/pull/34646)
9201 * Many more errors have been given error codes and extended
9202 explanations
9203 * API documentation continues to be improved, with many new examples
9204
9205 Misc
9206 ----
9207
9208 * [rustc no longer hangs when dependencies recursively re-export
9209 submodules](https://github.com/rust-lang/rust/pull/34542)
9210 * [rustc requires LLVM 3.7+](https://github.com/rust-lang/rust/pull/34104)
9211 * [The 'How Safe and Unsafe Interact' chapter of The Rustonomicon was
9212 rewritten](https://github.com/rust-lang/rust/pull/33895)
9213 * [rustc support 16-bit pointer sizes](https://github.com/rust-lang/rust/pull/33460).
9214 No targets use this yet, but it works toward AVR support.
9215
9216 Compatibility Notes
9217 -------------------
9218
9219 * [`const`s and `static`s may not have unsized types](https://github.com/rust-lang/rust/pull/34443)
9220 * [The new follow-set rules that place restrictions on `macro_rules!`
9221 in order to ensure syntax forward-compatibility have been enabled](https://github.com/rust-lang/rust/pull/33982)
9222 This was an [amendment to RFC 550](https://github.com/rust-lang/rfcs/pull/1384),
9223 and has been a warning since 1.10.
9224 * [`cfg` attribute process has been refactored to fix various bugs](https://github.com/rust-lang/rust/pull/33706).
9225 This causes breakage in some corner cases.
9226
9227
9228 Version 1.10.0 (2016-07-07)
9229 ===========================
9230
9231 Language
9232 --------
9233
9234 * [`Copy` types are required to have a trivial implementation of `Clone`](https://github.com/rust-lang/rust/pull/33420).
9235 [RFC 1521](https://github.com/rust-lang/rfcs/blob/master/text/1521-copy-clone-semantics.md).
9236 * [Single-variant enums support the `#[repr(..)]` attribute](https://github.com/rust-lang/rust/pull/33355).
9237 * [Fix `#[derive(RustcEncodable)]` in the presence of other `encode` methods](https://github.com/rust-lang/rust/pull/32908).
9238 * [`panic!` can be converted to a runtime abort with the
9239 `-C panic=abort` flag](https://github.com/rust-lang/rust/pull/32900).
9240 [RFC 1513](https://github.com/rust-lang/rfcs/blob/master/text/1513-less-unwinding.md).
9241 * [Add a new crate type, 'cdylib'](https://github.com/rust-lang/rust/pull/33553).
9242 cdylibs are dynamic libraries suitable for loading by non-Rust hosts.
9243 [RFC 1510](https://github.com/rust-lang/rfcs/blob/master/text/1510-cdylib.md).
9244 Note that Cargo does not yet directly support cdylibs.
9245
9246 Stabilized APIs
9247 ---------------
9248
9249 * `os::windows::fs::OpenOptionsExt::access_mode`
9250 * `os::windows::fs::OpenOptionsExt::share_mode`
9251 * `os::windows::fs::OpenOptionsExt::custom_flags`
9252 * `os::windows::fs::OpenOptionsExt::attributes`
9253 * `os::windows::fs::OpenOptionsExt::security_qos_flags`
9254 * `os::unix::fs::OpenOptionsExt::custom_flags`
9255 * [`sync::Weak::new`](http://doc.rust-lang.org/alloc/arc/struct.Weak.html#method.new)
9256 * `Default for sync::Weak`
9257 * [`panic::set_hook`](http://doc.rust-lang.org/std/panic/fn.set_hook.html)
9258 * [`panic::take_hook`](http://doc.rust-lang.org/std/panic/fn.take_hook.html)
9259 * [`panic::PanicInfo`](http://doc.rust-lang.org/std/panic/struct.PanicInfo.html)
9260 * [`panic::PanicInfo::payload`](http://doc.rust-lang.org/std/panic/struct.PanicInfo.html#method.payload)
9261 * [`panic::PanicInfo::location`](http://doc.rust-lang.org/std/panic/struct.PanicInfo.html#method.location)
9262 * [`panic::Location`](http://doc.rust-lang.org/std/panic/struct.Location.html)
9263 * [`panic::Location::file`](http://doc.rust-lang.org/std/panic/struct.Location.html#method.file)
9264 * [`panic::Location::line`](http://doc.rust-lang.org/std/panic/struct.Location.html#method.line)
9265 * [`ffi::CStr::from_bytes_with_nul`](http://doc.rust-lang.org/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
9266 * [`ffi::CStr::from_bytes_with_nul_unchecked`](http://doc.rust-lang.org/std/ffi/struct.CStr.html#method.from_bytes_with_nul_unchecked)
9267 * [`ffi::FromBytesWithNulError`](http://doc.rust-lang.org/std/ffi/struct.FromBytesWithNulError.html)
9268 * [`fs::Metadata::modified`](http://doc.rust-lang.org/std/fs/struct.Metadata.html#method.modified)
9269 * [`fs::Metadata::accessed`](http://doc.rust-lang.org/std/fs/struct.Metadata.html#method.accessed)
9270 * [`fs::Metadata::created`](http://doc.rust-lang.org/std/fs/struct.Metadata.html#method.created)
9271 * `sync::atomic::Atomic{Usize,Isize,Bool,Ptr}::compare_exchange`
9272 * `sync::atomic::Atomic{Usize,Isize,Bool,Ptr}::compare_exchange_weak`
9273 * `collections::{btree,hash}_map::{Occupied,Vacant,}Entry::key`
9274 * `os::unix::net::{UnixStream, UnixListener, UnixDatagram, SocketAddr}`
9275 * [`SocketAddr::is_unnamed`](http://doc.rust-lang.org/std/os/unix/net/struct.SocketAddr.html#method.is_unnamed)
9276 * [`SocketAddr::as_pathname`](http://doc.rust-lang.org/std/os/unix/net/struct.SocketAddr.html#method.as_pathname)
9277 * [`UnixStream::connect`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.connect)
9278 * [`UnixStream::pair`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.pair)
9279 * [`UnixStream::try_clone`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.try_clone)
9280 * [`UnixStream::local_addr`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.local_addr)
9281 * [`UnixStream::peer_addr`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.peer_addr)
9282 * [`UnixStream::set_read_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.read_timeout)
9283 * [`UnixStream::set_write_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.write_timeout)
9284 * [`UnixStream::read_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.read_timeout)
9285 * [`UnixStream::write_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.write_timeout)
9286 * [`UnixStream::set_nonblocking`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.set_nonblocking)
9287 * [`UnixStream::take_error`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.take_error)
9288 * [`UnixStream::shutdown`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixStream.html#method.shutdown)
9289 * Read/Write/RawFd impls for `UnixStream`
9290 * [`UnixListener::bind`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.bind)
9291 * [`UnixListener::accept`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.accept)
9292 * [`UnixListener::try_clone`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.try_clone)
9293 * [`UnixListener::local_addr`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.local_addr)
9294 * [`UnixListener::set_nonblocking`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.set_nonblocking)
9295 * [`UnixListener::take_error`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.take_error)
9296 * [`UnixListener::incoming`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixListener.html#method.incoming)
9297 * RawFd impls for `UnixListener`
9298 * [`UnixDatagram::bind`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.bind)
9299 * [`UnixDatagram::unbound`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.unbound)
9300 * [`UnixDatagram::pair`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.pair)
9301 * [`UnixDatagram::connect`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.connect)
9302 * [`UnixDatagram::try_clone`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.try_clone)
9303 * [`UnixDatagram::local_addr`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.local_addr)
9304 * [`UnixDatagram::peer_addr`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.peer_addr)
9305 * [`UnixDatagram::recv_from`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.recv_from)
9306 * [`UnixDatagram::recv`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.recv)
9307 * [`UnixDatagram::send_to`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.send_to)
9308 * [`UnixDatagram::send`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.send)
9309 * [`UnixDatagram::set_read_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.set_read_timeout)
9310 * [`UnixDatagram::set_write_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.set_write_timeout)
9311 * [`UnixDatagram::read_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.read_timeout)
9312 * [`UnixDatagram::write_timeout`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.write_timeout)
9313 * [`UnixDatagram::set_nonblocking`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.set_nonblocking)
9314 * [`UnixDatagram::take_error`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.take_error)
9315 * [`UnixDatagram::shutdown`](http://doc.rust-lang.org/std/os/unix/net/struct.UnixDatagram.html#method.shutdown)
9316 * RawFd impls for `UnixDatagram`
9317 * `{BTree,Hash}Map::values_mut`
9318 * [`<[_]>::binary_search_by_key`](http://doc.rust-lang.org/std/primitive.slice.html#method.binary_search_by_key)
9319
9320 Libraries
9321 ---------
9322
9323 * [The `abs_sub` method of floats is deprecated](https://github.com/rust-lang/rust/pull/33664).
9324 The semantics of this minor method are subtle and probably not what
9325 most people want.
9326 * [Add implementation of Ord for Cell<T> and RefCell<T> where T: Ord](https://github.com/rust-lang/rust/pull/33306).
9327 * [On Linux, if `HashMap`s can't be initialized with `getrandom` they
9328 will fall back to `/dev/urandom` temporarily to avoid blocking
9329 during early boot](https://github.com/rust-lang/rust/pull/33086).
9330 * [Implemented negation for wrapping numerals](https://github.com/rust-lang/rust/pull/33067).
9331 * [Implement `Clone` for `binary_heap::IntoIter`](https://github.com/rust-lang/rust/pull/33050).
9332 * [Implement `Display` and `Hash` for `std::num::Wrapping`](https://github.com/rust-lang/rust/pull/33023).
9333 * [Add `Default` implementation for `&CStr`, `CString`](https://github.com/rust-lang/rust/pull/32990).
9334 * [Implement `From<Vec<T>>` and `Into<Vec<T>>` for `VecDeque<T>`](https://github.com/rust-lang/rust/pull/32866).
9335 * [Implement `Default` for `UnsafeCell`, `fmt::Error`, `Condvar`,
9336 `Mutex`, `RwLock`](https://github.com/rust-lang/rust/pull/32785).
9337
9338 Cargo
9339 -----
9340 * [Cargo.toml supports the `profile.*.panic` option](https://github.com/rust-lang/cargo/pull/2687).
9341 This controls the runtime behavior of the `panic!` macro
9342 and can be either "unwind" (the default), or "abort".
9343 [RFC 1513](https://github.com/rust-lang/rfcs/blob/master/text/1513-less-unwinding.md).
9344 * [Don't throw away errors with `-p` arguments](https://github.com/rust-lang/cargo/pull/2723).
9345 * [Report status to stderr instead of stdout](https://github.com/rust-lang/cargo/pull/2693).
9346 * [Build scripts are passed a `CARGO_MANIFEST_LINKS` environment
9347 variable that corresponds to the `links` field of the manifest](https://github.com/rust-lang/cargo/pull/2710).
9348 * [Ban keywords from crate names](https://github.com/rust-lang/cargo/pull/2707).
9349 * [Canonicalize `CARGO_HOME` on Windows](https://github.com/rust-lang/cargo/pull/2604).
9350 * [Retry network requests](https://github.com/rust-lang/cargo/pull/2396).
9351 By default they are retried twice, which can be customized with the
9352 `net.retry` value in `.cargo/config`.
9353 * [Don't print extra error info for failing subcommands](https://github.com/rust-lang/cargo/pull/2674).
9354 * [Add `--force` flag to `cargo install`](https://github.com/rust-lang/cargo/pull/2405).
9355 * [Don't use `flock` on NFS mounts](https://github.com/rust-lang/cargo/pull/2623).
9356 * [Prefer building `cargo install` artifacts in temporary directories](https://github.com/rust-lang/cargo/pull/2610).
9357 Makes it possible to install multiple crates in parallel.
9358 * [Add `cargo test --doc`](https://github.com/rust-lang/cargo/pull/2578).
9359 * [Add `cargo --explain`](https://github.com/rust-lang/cargo/pull/2551).
9360 * [Don't print warnings when `-q` is passed](https://github.com/rust-lang/cargo/pull/2576).
9361 * [Add `cargo doc --lib` and `--bin`](https://github.com/rust-lang/cargo/pull/2577).
9362 * [Don't require build script output to be UTF-8](https://github.com/rust-lang/cargo/pull/2560).
9363 * [Correctly attempt multiple git usernames](https://github.com/rust-lang/cargo/pull/2584).
9364
9365 Performance
9366 -----------
9367
9368 * [rustc memory usage was reduced by refactoring the context used for
9369 type checking](https://github.com/rust-lang/rust/pull/33425).
9370 * [Speed up creation of `HashMap`s by caching the random keys used
9371 to initialize the hash state](https://github.com/rust-lang/rust/pull/33318).
9372 * [The `find` implementation for `Chain` iterators is 2x faster](https://github.com/rust-lang/rust/pull/33289).
9373 * [Trait selection optimizations speed up type checking by 15%](https://github.com/rust-lang/rust/pull/33138).
9374 * [Efficient trie lookup for boolean Unicode properties](https://github.com/rust-lang/rust/pull/33098).
9375 10x faster than the previous lookup tables.
9376 * [Special case `#[derive(Copy, Clone)]` to avoid bloat](https://github.com/rust-lang/rust/pull/31414).
9377
9378 Usability
9379 ---------
9380
9381 * Many incremental improvements to documentation and rustdoc.
9382 * [rustdoc: List blanket trait impls](https://github.com/rust-lang/rust/pull/33514).
9383 * [rustdoc: Clean up ABI rendering](https://github.com/rust-lang/rust/pull/33151).
9384 * [Indexing with the wrong type produces a more informative error](https://github.com/rust-lang/rust/pull/33401).
9385 * [Improve diagnostics for constants being used in irrefutable patterns](https://github.com/rust-lang/rust/pull/33406).
9386 * [When many method candidates are in scope limit the suggestions to 10](https://github.com/rust-lang/rust/pull/33338).
9387 * [Remove confusing suggestion when calling a `fn` type](https://github.com/rust-lang/rust/pull/33325).
9388 * [Do not suggest changing `&mut self` to `&mut mut self`](https://github.com/rust-lang/rust/pull/33319).
9389
9390 Misc
9391 ----
9392
9393 * [Update i686-linux-android features to match Android ABI](https://github.com/rust-lang/rust/pull/33651).
9394 * [Update aarch64-linux-android features to match Android ABI](https://github.com/rust-lang/rust/pull/33500).
9395 * [`std` no longer prints backtraces on platforms where the running
9396 module must be loaded with `env::current_exe`, which can't be relied
9397 on](https://github.com/rust-lang/rust/pull/33554).
9398 * This release includes std binaries for the i586-unknown-linux-gnu,
9399 i686-unknown-linux-musl, and armv7-linux-androideabi targets. The
9400 i586 target is for old x86 hardware without SSE2, and the armv7
9401 target is for Android running on modern ARM architectures.
9402 * [The `rust-gdb` and `rust-lldb` scripts are distributed on all
9403 Unix platforms](https://github.com/rust-lang/rust/pull/32835).
9404 * [On Unix the runtime aborts by calling `libc::abort` instead of
9405 generating an illegal instruction](https://github.com/rust-lang/rust/pull/31457).
9406 * [Rust is now bootstrapped from the previous release of Rust,
9407 instead of a snapshot from an arbitrary commit](https://github.com/rust-lang/rust/pull/32942).
9408
9409 Compatibility Notes
9410 -------------------
9411
9412 * [`AtomicBool` is now bool-sized, not word-sized](https://github.com/rust-lang/rust/pull/33579).
9413 * [`target_env` for Linux ARM targets is just `gnu`, not
9414 `gnueabihf`, `gnueabi`, etc](https://github.com/rust-lang/rust/pull/33403).
9415 * [Consistently panic on overflow in `Duration::new`](https://github.com/rust-lang/rust/pull/33072).
9416 * [Change `String::truncate` to panic less](https://github.com/rust-lang/rust/pull/32977).
9417 * [Add `:block` to the follow set for `:ty` and `:path`](https://github.com/rust-lang/rust/pull/32945).
9418 Affects how macros are parsed.
9419 * [Fix macro hygiene bug](https://github.com/rust-lang/rust/pull/32923).
9420 * [Feature-gated attributes on macro-generated macro invocations are
9421 now rejected](https://github.com/rust-lang/rust/pull/32791).
9422 * [Suppress fallback and ambiguity errors during type inference](https://github.com/rust-lang/rust/pull/32258).
9423 This caused some minor changes to type inference.
9424
9425
9426 Version 1.9.0 (2016-05-26)
9427 ==========================
9428
9429 Language
9430 --------
9431
9432 * The `#[deprecated]` attribute when applied to an API will generate
9433 warnings when used. The warnings may be suppressed with
9434 `#[allow(deprecated)]`. [RFC 1270].
9435 * [`fn` item types are zero sized, and each `fn` names a unique
9436 type][1.9fn]. This will break code that transmutes `fn`s, so calling
9437 `transmute` on a `fn` type will generate a warning for a few cycles,
9438 then will be converted to an error.
9439 * [Field and method resolution understand visibility, so private
9440 fields and methods cannot prevent the proper use of public fields
9441 and methods][1.9fv].
9442 * [The parser considers unicode codepoints in the
9443 `PATTERN_WHITE_SPACE` category to be whitespace][1.9ws].
9444
9445 Stabilized APIs
9446 ---------------
9447
9448 * [`std::panic`]
9449 * [`std::panic::catch_unwind`] (renamed from `recover`)
9450 * [`std::panic::resume_unwind`] (renamed from `propagate`)
9451 * [`std::panic::AssertUnwindSafe`] (renamed from `AssertRecoverSafe`)
9452 * [`std::panic::UnwindSafe`] (renamed from `RecoverSafe`)
9453 * [`str::is_char_boundary`]
9454 * [`<*const T>::as_ref`]
9455 * [`<*mut T>::as_ref`]
9456 * [`<*mut T>::as_mut`]
9457 * [`AsciiExt::make_ascii_uppercase`]
9458 * [`AsciiExt::make_ascii_lowercase`]
9459 * [`char::decode_utf16`]
9460 * [`char::DecodeUtf16`]
9461 * [`char::DecodeUtf16Error`]
9462 * [`char::DecodeUtf16Error::unpaired_surrogate`]
9463 * [`BTreeSet::take`]
9464 * [`BTreeSet::replace`]
9465 * [`BTreeSet::get`]
9466 * [`HashSet::take`]
9467 * [`HashSet::replace`]
9468 * [`HashSet::get`]
9469 * [`OsString::with_capacity`]
9470 * [`OsString::clear`]
9471 * [`OsString::capacity`]
9472 * [`OsString::reserve`]
9473 * [`OsString::reserve_exact`]
9474 * [`OsStr::is_empty`]
9475 * [`OsStr::len`]
9476 * [`std::os::unix::thread`]
9477 * [`RawPthread`]
9478 * [`JoinHandleExt`]
9479 * [`JoinHandleExt::as_pthread_t`]
9480 * [`JoinHandleExt::into_pthread_t`]
9481 * [`HashSet::hasher`]
9482 * [`HashMap::hasher`]
9483 * [`CommandExt::exec`]
9484 * [`File::try_clone`]
9485 * [`SocketAddr::set_ip`]
9486 * [`SocketAddr::set_port`]
9487 * [`SocketAddrV4::set_ip`]
9488 * [`SocketAddrV4::set_port`]
9489 * [`SocketAddrV6::set_ip`]
9490 * [`SocketAddrV6::set_port`]
9491 * [`SocketAddrV6::set_flowinfo`]
9492 * [`SocketAddrV6::set_scope_id`]
9493 * [`slice::copy_from_slice`]
9494 * [`ptr::read_volatile`]
9495 * [`ptr::write_volatile`]
9496 * [`OpenOptions::create_new`]
9497 * [`TcpStream::set_nodelay`]
9498 * [`TcpStream::nodelay`]
9499 * [`TcpStream::set_ttl`]
9500 * [`TcpStream::ttl`]
9501 * [`TcpStream::set_only_v6`]
9502 * [`TcpStream::only_v6`]
9503 * [`TcpStream::take_error`]
9504 * [`TcpStream::set_nonblocking`]
9505 * [`TcpListener::set_ttl`]
9506 * [`TcpListener::ttl`]
9507 * [`TcpListener::set_only_v6`]
9508 * [`TcpListener::only_v6`]
9509 * [`TcpListener::take_error`]
9510 * [`TcpListener::set_nonblocking`]
9511 * [`UdpSocket::set_broadcast`]
9512 * [`UdpSocket::broadcast`]
9513 * [`UdpSocket::set_multicast_loop_v4`]
9514 * [`UdpSocket::multicast_loop_v4`]
9515 * [`UdpSocket::set_multicast_ttl_v4`]
9516 * [`UdpSocket::multicast_ttl_v4`]
9517 * [`UdpSocket::set_multicast_loop_v6`]
9518 * [`UdpSocket::multicast_loop_v6`]
9519 * [`UdpSocket::set_multicast_ttl_v6`]
9520 * [`UdpSocket::multicast_ttl_v6`]
9521 * [`UdpSocket::set_ttl`]
9522 * [`UdpSocket::ttl`]
9523 * [`UdpSocket::set_only_v6`]
9524 * [`UdpSocket::only_v6`]
9525 * [`UdpSocket::join_multicast_v4`]
9526 * [`UdpSocket::join_multicast_v6`]
9527 * [`UdpSocket::leave_multicast_v4`]
9528 * [`UdpSocket::leave_multicast_v6`]
9529 * [`UdpSocket::take_error`]
9530 * [`UdpSocket::connect`]
9531 * [`UdpSocket::send`]
9532 * [`UdpSocket::recv`]
9533 * [`UdpSocket::set_nonblocking`]
9534
9535 Libraries
9536 ---------
9537
9538 * [`std::sync::Once` is poisoned if its initialization function
9539 fails][1.9o].
9540 * [`cell::Ref` and `cell::RefMut` can contain unsized types][1.9cu].
9541 * [Most types implement `fmt::Debug`][1.9db].
9542 * [The default buffer size used by `BufReader` and `BufWriter` was
9543 reduced to 8K, from 64K][1.9bf]. This is in line with the buffer size
9544 used by other languages.
9545 * [`Instant`, `SystemTime` and `Duration` implement `+=` and `-=`.
9546 `Duration` additionally implements `*=` and `/=`][1.9ta].
9547 * [`Skip` is a `DoubleEndedIterator`][1.9sk].
9548 * [`From<[u8; 4]>` is implemented for `Ipv4Addr`][1.9fi].
9549 * [`Chain` implements `BufRead`][1.9ch].
9550 * [`HashMap`, `HashSet` and iterators are covariant][1.9hc].
9551
9552 Cargo
9553 -----
9554
9555 * [Cargo can now run concurrently][1.9cc].
9556 * [Top-level overrides allow specific revisions of crates to be
9557 overridden through the entire crate graph][1.9ct]. This is intended
9558 to make upgrades easier for large projects, by allowing crates to be
9559 forked temporarily until they've been upgraded and republished.
9560 * [Cargo exports a `CARGO_PKG_AUTHORS` environment variable][1.9cp].
9561 * [Cargo will pass the contents of the `RUSTFLAGS` variable to `rustc`
9562 on the commandline][1.9cf]. `rustc` arguments can also be specified
9563 in the `build.rustflags` configuration key.
9564
9565 Performance
9566 -----------
9567
9568 * [The time complexity of comparing variables for equivalence during type
9569 unification is reduced from _O_(_n_!) to _O_(_n_)][1.9tu]. This leads
9570 to major compilation time improvement in some scenarios.
9571 * [`ToString` is specialized for `str`, giving it the same performance
9572 as `to_owned`][1.9ts].
9573 * [Spawning processes with `Command::output` no longer creates extra
9574 threads][1.9sp].
9575 * [`#[derive(PartialEq)]` and `#[derive(PartialOrd)]` emit less code
9576 for C-like enums][1.9cl].
9577
9578 Misc
9579 ----
9580
9581 * [Passing the `--quiet` flag to a test runner will produce
9582 much-abbreviated output][1.9q].
9583 * The Rust Project now publishes std binaries for the
9584 `mips-unknown-linux-musl`, `mipsel-unknown-linux-musl`, and
9585 `i586-pc-windows-msvc` targets.
9586
9587 Compatibility Notes
9588 -------------------
9589
9590 * [`std::sync::Once` is poisoned if its initialization function
9591 fails][1.9o].
9592 * [It is illegal to define methods with the same name in overlapping
9593 inherent `impl` blocks][1.9sn].
9594 * [`fn` item types are zero sized, and each `fn` names a unique
9595 type][1.9fn]. This will break code that transmutes `fn`s, so calling
9596 `transmute` on a `fn` type will generate a warning for a few cycles,
9597 then will be converted to an error.
9598 * [Improvements to const evaluation may trigger new errors when integer
9599 literals are out of range][1.9ce].
9600
9601
9602 [1.9bf]: https://github.com/rust-lang/rust/pull/32695
9603 [1.9cc]: https://github.com/rust-lang/cargo/pull/2486
9604 [1.9ce]: https://github.com/rust-lang/rust/pull/30587
9605 [1.9cf]: https://github.com/rust-lang/cargo/pull/2241
9606 [1.9ch]: https://github.com/rust-lang/rust/pull/32541
9607 [1.9cl]: https://github.com/rust-lang/rust/pull/31977
9608 [1.9cp]: https://github.com/rust-lang/cargo/pull/2465
9609 [1.9ct]: https://github.com/rust-lang/cargo/pull/2385
9610 [1.9cu]: https://github.com/rust-lang/rust/pull/32652
9611 [1.9db]: https://github.com/rust-lang/rust/pull/32054
9612 [1.9fi]: https://github.com/rust-lang/rust/pull/32050
9613 [1.9fn]: https://github.com/rust-lang/rust/pull/31710
9614 [1.9fv]: https://github.com/rust-lang/rust/pull/31938
9615 [1.9hc]: https://github.com/rust-lang/rust/pull/32635
9616 [1.9o]: https://github.com/rust-lang/rust/pull/32325
9617 [1.9q]: https://github.com/rust-lang/rust/pull/31887
9618 [1.9sk]: https://github.com/rust-lang/rust/pull/31700
9619 [1.9sn]: https://github.com/rust-lang/rust/pull/31925
9620 [1.9sp]: https://github.com/rust-lang/rust/pull/31618
9621 [1.9ta]: https://github.com/rust-lang/rust/pull/32448
9622 [1.9ts]: https://github.com/rust-lang/rust/pull/32586
9623 [1.9tu]: https://github.com/rust-lang/rust/pull/32062
9624 [1.9ws]: https://github.com/rust-lang/rust/pull/29734
9625 [RFC 1270]: https://github.com/rust-lang/rfcs/blob/master/text/1270-deprecation.md
9626 [`<*const T>::as_ref`]: http://doc.rust-lang.org/nightly/std/primitive.pointer.html#method.as_ref
9627 [`<*mut T>::as_mut`]: http://doc.rust-lang.org/nightly/std/primitive.pointer.html#method.as_mut
9628 [`<*mut T>::as_ref`]: http://doc.rust-lang.org/nightly/std/primitive.pointer.html#method.as_ref
9629 [`slice::copy_from_slice`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.copy_from_slice
9630 [`AsciiExt::make_ascii_lowercase`]: http://doc.rust-lang.org/nightly/std/ascii/trait.AsciiExt.html#tymethod.make_ascii_lowercase
9631 [`AsciiExt::make_ascii_uppercase`]: http://doc.rust-lang.org/nightly/std/ascii/trait.AsciiExt.html#tymethod.make_ascii_uppercase
9632 [`BTreeSet::get`]: http://doc.rust-lang.org/nightly/collections/btree/set/struct.BTreeSet.html#method.get
9633 [`BTreeSet::replace`]: http://doc.rust-lang.org/nightly/collections/btree/set/struct.BTreeSet.html#method.replace
9634 [`BTreeSet::take`]: http://doc.rust-lang.org/nightly/collections/btree/set/struct.BTreeSet.html#method.take
9635 [`CommandExt::exec`]: http://doc.rust-lang.org/nightly/std/os/unix/process/trait.CommandExt.html#tymethod.exec
9636 [`File::try_clone`]: http://doc.rust-lang.org/nightly/std/fs/struct.File.html#method.try_clone
9637 [`HashMap::hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html#method.hasher
9638 [`HashSet::get`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.get
9639 [`HashSet::hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.hasher
9640 [`HashSet::replace`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.replace
9641 [`HashSet::take`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.take
9642 [`JoinHandleExt::as_pthread_t`]: http://doc.rust-lang.org/nightly/std/os/unix/thread/trait.JoinHandleExt.html#tymethod.as_pthread_t
9643 [`JoinHandleExt::into_pthread_t`]: http://doc.rust-lang.org/nightly/std/os/unix/thread/trait.JoinHandleExt.html#tymethod.into_pthread_t
9644 [`JoinHandleExt`]: http://doc.rust-lang.org/nightly/std/os/unix/thread/trait.JoinHandleExt.html
9645 [`OpenOptions::create_new`]: http://doc.rust-lang.org/nightly/std/fs/struct.OpenOptions.html#method.create_new
9646 [`OsStr::is_empty`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsStr.html#method.is_empty
9647 [`OsStr::len`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsStr.html#method.len
9648 [`OsString::capacity`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsString.html#method.capacity
9649 [`OsString::clear`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsString.html#method.clear
9650 [`OsString::reserve_exact`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsString.html#method.reserve_exact
9651 [`OsString::reserve`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsString.html#method.reserve
9652 [`OsString::with_capacity`]: http://doc.rust-lang.org/nightly/std/ffi/struct.OsString.html#method.with_capacity
9653 [`RawPthread`]: http://doc.rust-lang.org/nightly/std/os/unix/thread/type.RawPthread.html
9654 [`SocketAddr::set_ip`]: http://doc.rust-lang.org/nightly/std/net/enum.SocketAddr.html#method.set_ip
9655 [`SocketAddr::set_port`]: http://doc.rust-lang.org/nightly/std/net/enum.SocketAddr.html#method.set_port
9656 [`SocketAddrV4::set_ip`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV4.html#method.set_ip
9657 [`SocketAddrV4::set_port`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV4.html#method.set_port
9658 [`SocketAddrV6::set_flowinfo`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV6.html#method.set_flowinfo
9659 [`SocketAddrV6::set_ip`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV6.html#method.set_ip
9660 [`SocketAddrV6::set_port`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV6.html#method.set_port
9661 [`SocketAddrV6::set_scope_id`]: http://doc.rust-lang.org/nightly/std/net/struct.SocketAddrV6.html#method.set_scope_id
9662 [`TcpListener::only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.only_v6
9663 [`TcpListener::set_nonblocking`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_nonblocking
9664 [`TcpListener::set_only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_only_v6
9665 [`TcpListener::set_ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_ttl
9666 [`TcpListener::take_error`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.take_error
9667 [`TcpListener::ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.ttl
9668 [`TcpStream::nodelay`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.nodelay
9669 [`TcpStream::only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.only_v6
9670 [`TcpStream::set_nodelay`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_nodelay
9671 [`TcpStream::set_nonblocking`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_nonblocking
9672 [`TcpStream::set_only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_only_v6
9673 [`TcpStream::set_ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_ttl
9674 [`TcpStream::take_error`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.take_error
9675 [`TcpStream::ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.ttl
9676 [`UdpSocket::broadcast`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.broadcast
9677 [`UdpSocket::connect`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.connect
9678 [`UdpSocket::join_multicast_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.join_multicast_v4
9679 [`UdpSocket::join_multicast_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.join_multicast_v6
9680 [`UdpSocket::leave_multicast_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.leave_multicast_v4
9681 [`UdpSocket::leave_multicast_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.leave_multicast_v6
9682 [`UdpSocket::multicast_loop_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.multicast_loop_v4
9683 [`UdpSocket::multicast_loop_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.multicast_loop_v6
9684 [`UdpSocket::multicast_ttl_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.multicast_ttl_v4
9685 [`UdpSocket::multicast_ttl_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.multicast_ttl_v6
9686 [`UdpSocket::only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.only_v6
9687 [`UdpSocket::recv`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.recv
9688 [`UdpSocket::send`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.send
9689 [`UdpSocket::set_broadcast`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_broadcast
9690 [`UdpSocket::set_multicast_loop_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_multicast_loop_v4
9691 [`UdpSocket::set_multicast_loop_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_multicast_loop_v6
9692 [`UdpSocket::set_multicast_ttl_v4`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_multicast_ttl_v4
9693 [`UdpSocket::set_multicast_ttl_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_multicast_ttl_v6
9694 [`UdpSocket::set_nonblocking`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_nonblocking
9695 [`UdpSocket::set_only_v6`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_only_v6
9696 [`UdpSocket::set_ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.set_ttl
9697 [`UdpSocket::take_error`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.take_error
9698 [`UdpSocket::ttl`]: http://doc.rust-lang.org/nightly/std/net/struct.UdpSocket.html#method.ttl
9699 [`char::DecodeUtf16Error::unpaired_surrogate`]: http://doc.rust-lang.org/nightly/std/char/struct.DecodeUtf16Error.html#method.unpaired_surrogate
9700 [`char::DecodeUtf16Error`]: http://doc.rust-lang.org/nightly/std/char/struct.DecodeUtf16Error.html
9701 [`char::DecodeUtf16`]: http://doc.rust-lang.org/nightly/std/char/struct.DecodeUtf16.html
9702 [`char::decode_utf16`]: http://doc.rust-lang.org/nightly/std/char/fn.decode_utf16.html
9703 [`ptr::read_volatile`]: http://doc.rust-lang.org/nightly/std/ptr/fn.read_volatile.html
9704 [`ptr::write_volatile`]: http://doc.rust-lang.org/nightly/std/ptr/fn.write_volatile.html
9705 [`std::os::unix::thread`]: http://doc.rust-lang.org/nightly/std/os/unix/thread/index.html
9706 [`std::panic::AssertUnwindSafe`]: http://doc.rust-lang.org/nightly/std/panic/struct.AssertUnwindSafe.html
9707 [`std::panic::UnwindSafe`]: http://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html
9708 [`std::panic::catch_unwind`]: http://doc.rust-lang.org/nightly/std/panic/fn.catch_unwind.html
9709 [`std::panic::resume_unwind`]: http://doc.rust-lang.org/nightly/std/panic/fn.resume_unwind.html
9710 [`std::panic`]: http://doc.rust-lang.org/nightly/std/panic/index.html
9711 [`str::is_char_boundary`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.is_char_boundary
9712
9713
9714 Version 1.8.0 (2016-04-14)
9715 ==========================
9716
9717 Language
9718 --------
9719
9720 * Rust supports overloading of compound assignment statements like
9721 `+=` by implementing the [`AddAssign`], [`SubAssign`],
9722 [`MulAssign`], [`DivAssign`], [`RemAssign`], [`BitAndAssign`],
9723 [`BitOrAssign`], [`BitXorAssign`], [`ShlAssign`], or [`ShrAssign`]
9724 traits. [RFC 953].
9725 * Empty structs can be defined with braces, as in `struct Foo { }`, in
9726 addition to the non-braced form, `struct Foo;`. [RFC 218].
9727
9728 Libraries
9729 ---------
9730
9731 * Stabilized APIs:
9732 * [`str::encode_utf16`] (renamed from `utf16_units`)
9733 * [`str::EncodeUtf16`] (renamed from `Utf16Units`)
9734 * [`Ref::map`]
9735 * [`RefMut::map`]
9736 * [`ptr::drop_in_place`]
9737 * [`time::Instant`]
9738 * [`time::SystemTime`]
9739 * [`Instant::now`]
9740 * [`Instant::duration_since`] (renamed from `duration_from_earlier`)
9741 * [`Instant::elapsed`]
9742 * [`SystemTime::now`]
9743 * [`SystemTime::duration_since`] (renamed from `duration_from_earlier`)
9744 * [`SystemTime::elapsed`]
9745 * Various `Add`/`Sub` impls for `Time` and `SystemTime`
9746 * [`SystemTimeError`]
9747 * [`SystemTimeError::duration`]
9748 * Various impls for `SystemTimeError`
9749 * [`UNIX_EPOCH`]
9750 * [`AddAssign`], [`SubAssign`], [`MulAssign`], [`DivAssign`],
9751 [`RemAssign`], [`BitAndAssign`], [`BitOrAssign`],
9752 [`BitXorAssign`], [`ShlAssign`], [`ShrAssign`].
9753 * [The `write!` and `writeln!` macros correctly emit errors if any of
9754 their arguments can't be formatted][1.8w].
9755 * [Various I/O functions support large files on 32-bit Linux][1.8l].
9756 * [The Unix-specific `raw` modules, which contain a number of
9757 redefined C types are deprecated][1.8r], including `os::raw::unix`,
9758 `os::raw::macos`, and `os::raw::linux`. These modules defined types
9759 such as `ino_t` and `dev_t`. The inconsistency of these definitions
9760 across platforms was making it difficult to implement `std`
9761 correctly. Those that need these definitions should use the `libc`
9762 crate. [RFC 1415].
9763 * The Unix-specific `MetadataExt` traits, including
9764 `os::unix::fs::MetadataExt`, which expose values such as inode
9765 numbers [no longer return platform-specific types][1.8r], but
9766 instead return widened integers. [RFC 1415].
9767 * [`btree_set::{IntoIter, Iter, Range}` are covariant][1.8cv].
9768 * [Atomic loads and stores are not volatile][1.8a].
9769 * [All types in `sync::mpsc` implement `fmt::Debug`][1.8mp].
9770
9771 Performance
9772 -----------
9773
9774 * [Inlining hash functions lead to a 3% compile-time improvement in
9775 some workloads][1.8h].
9776 * When using jemalloc, its symbols are [unprefixed so that it
9777 overrides the libc malloc implementation][1.8h]. This means that for
9778 rustc, LLVM is now using jemalloc, which results in a 6%
9779 compile-time improvement on a specific workload.
9780 * [Avoid quadratic growth in function size due to cleanups][1.8cu].
9781
9782 Misc
9783 ----
9784
9785 * [32-bit MSVC builds finally implement unwinding][1.8ms].
9786 i686-pc-windows-msvc is now considered a tier-1 platform.
9787 * [The `--print targets` flag prints a list of supported targets][1.8t].
9788 * [The `--print cfg` flag prints the `cfg`s defined for the current
9789 target][1.8cf].
9790 * [`rustc` can be built with an new Cargo-based build system, written
9791 in Rust][1.8b]. It will eventually replace Rust's Makefile-based
9792 build system. To enable it configure with `configure --rustbuild`.
9793 * [Errors for non-exhaustive `match` patterns now list up to 3 missing
9794 variants while also indicating the total number of missing variants
9795 if more than 3][1.8m].
9796 * [Executable stacks are disabled on Linux and BSD][1.8nx].
9797 * The Rust Project now publishes binary releases of the standard
9798 library for a number of tier-2 targets:
9799 `armv7-unknown-linux-gnueabihf`, `powerpc-unknown-linux-gnu`,
9800 `powerpc64-unknown-linux-gnu`, `powerpc64le-unknown-linux-gnu`
9801 `x86_64-rumprun-netbsd`. These can be installed with
9802 tools such as [multirust][1.8mr].
9803
9804 Cargo
9805 -----
9806
9807 * [`cargo init` creates a new Cargo project in the current
9808 directory][1.8ci]. It is otherwise like `cargo new`.
9809 * [Cargo has configuration keys for `-v` and
9810 `--color`][1.8cc]. `verbose` and `color`, respectively, go in the
9811 `[term]` section of `.cargo/config`.
9812 * [Configuration keys that evaluate to strings or integers can be set
9813 via environment variables][1.8ce]. For example the `build.jobs` key
9814 can be set via `CARGO_BUILD_JOBS`. Environment variables take
9815 precedence over config files.
9816 * [Target-specific dependencies support Rust `cfg` syntax for
9817 describing targets][1.8cfg] so that dependencies for multiple
9818 targets can be specified together. [RFC 1361].
9819 * [The environment variables `CARGO_TARGET_ROOT`, `RUSTC`, and
9820 `RUSTDOC` take precedence over the `build.target-dir`,
9821 `build.rustc`, and `build.rustdoc` configuration values][1.8cfv].
9822 * [The child process tree is killed on Windows when Cargo is
9823 killed][1.8ck].
9824 * [The `build.target` configuration value sets the target platform,
9825 like `--target`][1.8ct].
9826
9827 Compatibility Notes
9828 -------------------
9829
9830 * [Unstable compiler flags have been further restricted][1.8u]. Since
9831 1.0 `-Z` flags have been considered unstable, and other flags that
9832 were considered unstable additionally required passing `-Z
9833 unstable-options` to access. Unlike unstable language and library
9834 features though, these options have been accessible on the stable
9835 release channel. Going forward, *new unstable flags will not be
9836 available on the stable release channel*, and old unstable flags
9837 will warn about their usage. In the future, all unstable flags will
9838 be unavailable on the stable release channel.
9839 * [It is no longer possible to `match` on empty enum variants using
9840 the `Variant(..)` syntax][1.8v]. This has been a warning since 1.6.
9841 * The Unix-specific `MetadataExt` traits, including
9842 `os::unix::fs::MetadataExt`, which expose values such as inode
9843 numbers [no longer return platform-specific types][1.8r], but
9844 instead return widened integers. [RFC 1415].
9845 * [Modules sourced from the filesystem cannot appear within arbitrary
9846 blocks, but only within other modules][1.8mf].
9847 * [`--cfg` compiler flags are parsed strictly as identifiers][1.8c].
9848 * On Unix, [stack overflow triggers a runtime abort instead of a
9849 SIGSEGV][1.8so].
9850 * [`Command::spawn` and its equivalents return an error if any of
9851 its command-line arguments contain interior `NUL`s][1.8n].
9852 * [Tuple and unit enum variants from other crates are in the type
9853 namespace][1.8tn].
9854 * [On Windows `rustc` emits `.lib` files for the `staticlib` library
9855 type instead of `.a` files][1.8st]. Additionally, for the MSVC
9856 toolchain, `rustc` emits import libraries named `foo.dll.lib`
9857 instead of `foo.lib`.
9858
9859
9860 [1.8a]: https://github.com/rust-lang/rust/pull/30962
9861 [1.8b]: https://github.com/rust-lang/rust/pull/31123
9862 [1.8c]: https://github.com/rust-lang/rust/pull/31530
9863 [1.8cc]: https://github.com/rust-lang/cargo/pull/2397
9864 [1.8ce]: https://github.com/rust-lang/cargo/pull/2398
9865 [1.8cf]: https://github.com/rust-lang/rust/pull/31278
9866 [1.8cfg]: https://github.com/rust-lang/cargo/pull/2328
9867 [1.8ci]: https://github.com/rust-lang/cargo/pull/2081
9868 [1.8ck]: https://github.com/rust-lang/cargo/pull/2370
9869 [1.8ct]: https://github.com/rust-lang/cargo/pull/2335
9870 [1.8cu]: https://github.com/rust-lang/rust/pull/31390
9871 [1.8cfv]: https://github.com/rust-lang/cargo/issues/2365
9872 [1.8cv]: https://github.com/rust-lang/rust/pull/30998
9873 [1.8h]: https://github.com/rust-lang/rust/pull/31460
9874 [1.8l]: https://github.com/rust-lang/rust/pull/31668
9875 [1.8m]: https://github.com/rust-lang/rust/pull/31020
9876 [1.8mf]: https://github.com/rust-lang/rust/pull/31534
9877 [1.8mp]: https://github.com/rust-lang/rust/pull/30894
9878 [1.8mr]: https://users.rust-lang.org/t/multirust-0-8-with-cross-std-installation/4901
9879 [1.8ms]: https://github.com/rust-lang/rust/pull/30448
9880 [1.8n]: https://github.com/rust-lang/rust/pull/31056
9881 [1.8nx]: https://github.com/rust-lang/rust/pull/30859
9882 [1.8r]: https://github.com/rust-lang/rust/pull/31551
9883 [1.8so]: https://github.com/rust-lang/rust/pull/31333
9884 [1.8st]: https://github.com/rust-lang/rust/pull/29520
9885 [1.8t]: https://github.com/rust-lang/rust/pull/31358
9886 [1.8tn]: https://github.com/rust-lang/rust/pull/30882
9887 [1.8u]: https://github.com/rust-lang/rust/pull/31793
9888 [1.8v]: https://github.com/rust-lang/rust/pull/31757
9889 [1.8w]: https://github.com/rust-lang/rust/pull/31904
9890 [RFC 1361]: https://github.com/rust-lang/rfcs/blob/master/text/1361-cargo-cfg-dependencies.md
9891 [RFC 1415]: https://github.com/rust-lang/rfcs/blob/master/text/1415-trim-std-os.md
9892 [RFC 218]: https://github.com/rust-lang/rfcs/blob/master/text/0218-empty-struct-with-braces.md
9893 [RFC 953]: https://github.com/rust-lang/rfcs/blob/master/text/0953-op-assign.md
9894 [`AddAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.AddAssign.html
9895 [`BitAndAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitAndAssign.html
9896 [`BitOrAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitOrAssign.html
9897 [`BitXorAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.BitXorAssign.html
9898 [`DivAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.DivAssign.html
9899 [`Instant::duration_since`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.duration_since
9900 [`Instant::elapsed`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.elapsed
9901 [`Instant::now`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html#method.now
9902 [`MulAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.MulAssign.html
9903 [`Ref::map`]: http://doc.rust-lang.org/nightly/std/cell/struct.Ref.html#method.map
9904 [`RefMut::map`]: http://doc.rust-lang.org/nightly/std/cell/struct.RefMut.html#method.map
9905 [`RemAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.RemAssign.html
9906 [`ShlAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.ShlAssign.html
9907 [`ShrAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.ShrAssign.html
9908 [`SubAssign`]: http://doc.rust-lang.org/nightly/std/ops/trait.SubAssign.html
9909 [`SystemTime::duration_since`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.duration_since
9910 [`SystemTime::elapsed`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.elapsed
9911 [`SystemTime::now`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html#method.now
9912 [`SystemTimeError::duration`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTimeError.html#method.duration
9913 [`SystemTimeError`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTimeError.html
9914 [`UNIX_EPOCH`]: http://doc.rust-lang.org/nightly/std/time/constant.UNIX_EPOCH.html
9915 [`ptr::drop_in_place`]: http://doc.rust-lang.org/nightly/std/ptr/fn.drop_in_place.html
9916 [`str::EncodeUtf16`]: http://doc.rust-lang.org/nightly/std/str/struct.EncodeUtf16.html
9917 [`str::encode_utf16`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.encode_utf16
9918 [`time::Instant`]: http://doc.rust-lang.org/nightly/std/time/struct.Instant.html
9919 [`time::SystemTime`]: http://doc.rust-lang.org/nightly/std/time/struct.SystemTime.html
9920
9921
9922 Version 1.7.0 (2016-03-03)
9923 ==========================
9924
9925 Libraries
9926 ---------
9927
9928 * Stabilized APIs
9929 * `Path`
9930 * [`Path::strip_prefix`] (renamed from relative_from)
9931 * [`path::StripPrefixError`] (new error type returned from strip_prefix)
9932 * `Ipv4Addr`
9933 * [`Ipv4Addr::is_loopback`]
9934 * [`Ipv4Addr::is_private`]
9935 * [`Ipv4Addr::is_link_local`]
9936 * [`Ipv4Addr::is_multicast`]
9937 * [`Ipv4Addr::is_broadcast`]
9938 * [`Ipv4Addr::is_documentation`]
9939 * `Ipv6Addr`
9940 * [`Ipv6Addr::is_unspecified`]
9941 * [`Ipv6Addr::is_loopback`]
9942 * [`Ipv6Addr::is_multicast`]
9943 * `Vec`
9944 * [`Vec::as_slice`]
9945 * [`Vec::as_mut_slice`]
9946 * `String`
9947 * [`String::as_str`]
9948 * [`String::as_mut_str`]
9949 * Slices
9950 * `<[T]>::`[`clone_from_slice`], which now requires the two slices to
9951 be the same length
9952 * `<[T]>::`[`sort_by_key`]
9953 * checked, saturated, and overflowing operations
9954 * [`i32::checked_rem`], [`i32::checked_neg`], [`i32::checked_shl`], [`i32::checked_shr`]
9955 * [`i32::saturating_mul`]
9956 * [`i32::overflowing_add`], [`i32::overflowing_sub`], [`i32::overflowing_mul`], [`i32::overflowing_div`]
9957 * [`i32::overflowing_rem`], [`i32::overflowing_neg`], [`i32::overflowing_shl`], [`i32::overflowing_shr`]
9958 * [`u32::checked_rem`], [`u32::checked_neg`], [`u32::checked_shl`], [`u32::checked_shl`]
9959 * [`u32::saturating_mul`]
9960 * [`u32::overflowing_add`], [`u32::overflowing_sub`], [`u32::overflowing_mul`], [`u32::overflowing_div`]
9961 * [`u32::overflowing_rem`], [`u32::overflowing_neg`], [`u32::overflowing_shl`], [`u32::overflowing_shr`]
9962 * and checked, saturated, and overflowing operations for other primitive types
9963 * FFI
9964 * [`ffi::IntoStringError`]
9965 * [`CString::into_string`]
9966 * [`CString::into_bytes`]
9967 * [`CString::into_bytes_with_nul`]
9968 * `From<CString> for Vec<u8>`
9969 * `IntoStringError`
9970 * [`IntoStringError::into_cstring`]
9971 * [`IntoStringError::utf8_error`]
9972 * `Error for IntoStringError`
9973 * Hashing
9974 * [`std::hash::BuildHasher`]
9975 * [`BuildHasher::Hasher`]
9976 * [`BuildHasher::build_hasher`]
9977 * [`std::hash::BuildHasherDefault`]
9978 * [`HashMap::with_hasher`]
9979 * [`HashMap::with_capacity_and_hasher`]
9980 * [`HashSet::with_hasher`]
9981 * [`HashSet::with_capacity_and_hasher`]
9982 * [`std::collections::hash_map::RandomState`]
9983 * [`RandomState::new`]
9984 * [Validating UTF-8 is faster by a factor of between 7 and 14x for
9985 ASCII input][1.7utf8]. This means that creating `String`s and `str`s
9986 from bytes is faster.
9987 * [The performance of `LineWriter` (and thus `io::stdout`) was
9988 improved by using `memchr` to search for newlines][1.7m].
9989 * [`f32::to_degrees` and `f32::to_radians` are stable][1.7f]. The
9990 `f64` variants were stabilized previously.
9991 * [`BTreeMap` was rewritten to use less memory and improve the performance
9992 of insertion and iteration, the latter by as much as 5x][1.7bm].
9993 * [`BTreeSet` and its iterators, `Iter`, `IntoIter`, and `Range` are
9994 covariant over their contained type][1.7bt].
9995 * [`LinkedList` and its iterators, `Iter` and `IntoIter` are covariant
9996 over their contained type][1.7ll].
9997 * [`str::replace` now accepts a `Pattern`][1.7rp], like other string
9998 searching methods.
9999 * [`Any` is implemented for unsized types][1.7a].
10000 * [`Hash` is implemented for `Duration`][1.7h].
10001
10002 Misc
10003 ----
10004
10005 * [When running tests with `--test`, rustdoc will pass `--cfg`
10006 arguments to the compiler][1.7dt].
10007 * [The compiler is built with RPATH information by default][1.7rpa].
10008 This means that it will be possible to run `rustc` when installed in
10009 unusual configurations without configuring the dynamic linker search
10010 path explicitly.
10011 * [`rustc` passes `--enable-new-dtags` to GNU ld][1.7dta]. This makes
10012 any RPATH entries (emitted with `-C rpath`) *not* take precedence
10013 over `LD_LIBRARY_PATH`.
10014
10015 Cargo
10016 -----
10017
10018 * [`cargo rustc` accepts a `--profile` flag that runs `rustc` under
10019 any of the compilation profiles, 'dev', 'bench', or 'test'][1.7cp].
10020 * [The `rerun-if-changed` build script directive no longer causes the
10021 build script to incorrectly run twice in certain scenarios][1.7rr].
10022
10023 Compatibility Notes
10024 -------------------
10025
10026 * Soundness fixes to the interactions between associated types and
10027 lifetimes, specified in [RFC 1214], [now generate errors][1.7sf] for
10028 code that violates the new rules. This is a significant change that
10029 is known to break existing code, so it has emitted warnings for the
10030 new error cases since 1.4 to give crate authors time to adapt. The
10031 details of what is changing are subtle; read the RFC for more.
10032 * [Several bugs in the compiler's visibility calculations were
10033 fixed][1.7v]. Since this was found to break significant amounts of
10034 code, the new errors will be emitted as warnings for several release
10035 cycles, under the `private_in_public` lint.
10036 * Defaulted type parameters were accidentally accepted in positions
10037 that were not intended. In this release, [defaulted type parameters
10038 appearing outside of type definitions will generate a
10039 warning][1.7d], which will become an error in future releases.
10040 * [Parsing "." as a float results in an error instead of 0][1.7p].
10041 That is, `".".parse::<f32>()` returns `Err`, not `Ok(0.0)`.
10042 * [Borrows of closure parameters may not outlive the closure][1.7bc].
10043
10044 [1.7a]: https://github.com/rust-lang/rust/pull/30928
10045 [1.7bc]: https://github.com/rust-lang/rust/pull/30341
10046 [1.7bm]: https://github.com/rust-lang/rust/pull/30426
10047 [1.7bt]: https://github.com/rust-lang/rust/pull/30998
10048 [1.7cp]: https://github.com/rust-lang/cargo/pull/2224
10049 [1.7d]: https://github.com/rust-lang/rust/pull/30724
10050 [1.7dt]: https://github.com/rust-lang/rust/pull/30372
10051 [1.7dta]: https://github.com/rust-lang/rust/pull/30394
10052 [1.7f]: https://github.com/rust-lang/rust/pull/30672
10053 [1.7h]: https://github.com/rust-lang/rust/pull/30818
10054 [1.7ll]: https://github.com/rust-lang/rust/pull/30663
10055 [1.7m]: https://github.com/rust-lang/rust/pull/30381
10056 [1.7p]: https://github.com/rust-lang/rust/pull/30681
10057 [1.7rp]: https://github.com/rust-lang/rust/pull/29498
10058 [1.7rpa]: https://github.com/rust-lang/rust/pull/30353
10059 [1.7rr]: https://github.com/rust-lang/cargo/pull/2279
10060 [1.7sf]: https://github.com/rust-lang/rust/pull/30389
10061 [1.7utf8]: https://github.com/rust-lang/rust/pull/30740
10062 [1.7v]: https://github.com/rust-lang/rust/pull/29973
10063 [RFC 1214]: https://github.com/rust-lang/rfcs/blob/master/text/1214-projections-lifetimes-and-wf.md
10064 [`BuildHasher::Hasher`]: http://doc.rust-lang.org/nightly/std/hash/trait.Hasher.html
10065 [`BuildHasher::build_hasher`]: http://doc.rust-lang.org/nightly/std/hash/trait.BuildHasher.html#tymethod.build_hasher
10066 [`CString::into_bytes_with_nul`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html#method.into_bytes_with_nul
10067 [`CString::into_bytes`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html#method.into_bytes
10068 [`CString::into_string`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html#method.into_string
10069 [`HashMap::with_capacity_and_hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html#method.with_capacity_and_hasher
10070 [`HashMap::with_hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html#method.with_hasher
10071 [`HashSet::with_capacity_and_hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.with_capacity_and_hasher
10072 [`HashSet::with_hasher`]: http://doc.rust-lang.org/nightly/std/collections/struct.HashSet.html#method.with_hasher
10073 [`IntoStringError::into_cstring`]: http://doc.rust-lang.org/nightly/std/ffi/struct.IntoStringError.html#method.into_cstring
10074 [`IntoStringError::utf8_error`]: http://doc.rust-lang.org/nightly/std/ffi/struct.IntoStringError.html#method.utf8_error
10075 [`Ipv4Addr::is_broadcast`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_broadcast
10076 [`Ipv4Addr::is_documentation`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_documentation
10077 [`Ipv4Addr::is_link_local`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_link_local
10078 [`Ipv4Addr::is_loopback`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_loopback
10079 [`Ipv4Addr::is_multicast`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_multicast
10080 [`Ipv4Addr::is_private`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv4Addr.html#method.is_private
10081 [`Ipv6Addr::is_loopback`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv6Addr.html#method.is_loopback
10082 [`Ipv6Addr::is_multicast`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv6Addr.html#method.is_multicast
10083 [`Ipv6Addr::is_unspecified`]: http://doc.rust-lang.org/nightly/std/net/struct.Ipv6Addr.html#method.is_unspecified
10084 [`Path::strip_prefix`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.strip_prefix
10085 [`RandomState::new`]: http://doc.rust-lang.org/nightly/std/collections/hash_map/struct.RandomState.html#method.new
10086 [`String::as_mut_str`]: http://doc.rust-lang.org/nightly/std/string/struct.String.html#method.as_mut_str
10087 [`String::as_str`]: http://doc.rust-lang.org/nightly/std/string/struct.String.html#method.as_str
10088 [`Vec::as_mut_slice`]: http://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.as_mut_slice
10089 [`Vec::as_slice`]: http://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.as_slice
10090 [`clone_from_slice`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.clone_from_slice
10091 [`ffi::IntoStringError`]: http://doc.rust-lang.org/nightly/std/ffi/struct.IntoStringError.html
10092 [`i32::checked_neg`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.checked_neg
10093 [`i32::checked_rem`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.checked_rem
10094 [`i32::checked_shl`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.checked_shl
10095 [`i32::checked_shr`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.checked_shr
10096 [`i32::overflowing_add`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_add
10097 [`i32::overflowing_div`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_div
10098 [`i32::overflowing_mul`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_mul
10099 [`i32::overflowing_neg`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_neg
10100 [`i32::overflowing_rem`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_rem
10101 [`i32::overflowing_shl`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_shl
10102 [`i32::overflowing_shr`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_shr
10103 [`i32::overflowing_sub`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.overflowing_sub
10104 [`i32::saturating_mul`]: http://doc.rust-lang.org/nightly/std/primitive.i32.html#method.saturating_mul
10105 [`path::StripPrefixError`]: http://doc.rust-lang.org/nightly/std/path/struct.StripPrefixError.html
10106 [`sort_by_key`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.sort_by_key
10107 [`std::collections::hash_map::RandomState`]: http://doc.rust-lang.org/nightly/std/collections/hash_map/struct.RandomState.html
10108 [`std::hash::BuildHasherDefault`]: http://doc.rust-lang.org/nightly/std/hash/struct.BuildHasherDefault.html
10109 [`std::hash::BuildHasher`]: http://doc.rust-lang.org/nightly/std/hash/trait.BuildHasher.html
10110 [`u32::checked_neg`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.checked_neg
10111 [`u32::checked_rem`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.checked_rem
10112 [`u32::checked_neg`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.checked_neg
10113 [`u32::checked_shl`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.checked_shl
10114 [`u32::overflowing_add`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_add
10115 [`u32::overflowing_div`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_div
10116 [`u32::overflowing_mul`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_mul
10117 [`u32::overflowing_neg`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_neg
10118 [`u32::overflowing_rem`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_rem
10119 [`u32::overflowing_shl`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_shl
10120 [`u32::overflowing_shr`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_shr
10121 [`u32::overflowing_sub`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.overflowing_sub
10122 [`u32::saturating_mul`]: http://doc.rust-lang.org/nightly/std/primitive.u32.html#method.saturating_mul
10123
10124
10125 Version 1.6.0 (2016-01-21)
10126 ==========================
10127
10128 Language
10129 --------
10130
10131 * The `#![no_std]` attribute causes a crate to not be linked to the
10132 standard library, but only the [core library][1.6co], as described
10133 in [RFC 1184]. The core library defines common types and traits but
10134 has no platform dependencies whatsoever, and is the basis for Rust
10135 software in environments that cannot support a full port of the
10136 standard library, such as operating systems. Most of the core
10137 library is now stable.
10138
10139 Libraries
10140 ---------
10141
10142 * Stabilized APIs:
10143 [`Read::read_exact`],
10144 [`ErrorKind::UnexpectedEof`] (renamed from `UnexpectedEOF`),
10145 [`fs::DirBuilder`], [`fs::DirBuilder::new`],
10146 [`fs::DirBuilder::recursive`], [`fs::DirBuilder::create`],
10147 [`os::unix::fs::DirBuilderExt`],
10148 [`os::unix::fs::DirBuilderExt::mode`], [`vec::Drain`],
10149 [`vec::Vec::drain`], [`string::Drain`], [`string::String::drain`],
10150 [`vec_deque::Drain`], [`vec_deque::VecDeque::drain`],
10151 [`collections::hash_map::Drain`],
10152 [`collections::hash_map::HashMap::drain`],
10153 [`collections::hash_set::Drain`],
10154 [`collections::hash_set::HashSet::drain`],
10155 [`collections::binary_heap::Drain`],
10156 [`collections::binary_heap::BinaryHeap::drain`],
10157 [`Vec::extend_from_slice`] (renamed from `push_all`),
10158 [`Mutex::get_mut`], [`Mutex::into_inner`], [`RwLock::get_mut`],
10159 [`RwLock::into_inner`],
10160 [`Iterator::min_by_key`] (renamed from `min_by`),
10161 [`Iterator::max_by_key`] (renamed from `max_by`).
10162 * The [core library][1.6co] is stable, as are most of its APIs.
10163 * [The `assert_eq!` macro supports arguments that don't implement
10164 `Sized`][1.6ae], such as arrays. In this way it behaves more like
10165 `assert!`.
10166 * Several timer functions that take duration in milliseconds [are
10167 deprecated in favor of those that take `Duration`][1.6ms]. These
10168 include `Condvar::wait_timeout_ms`, `thread::sleep_ms`, and
10169 `thread::park_timeout_ms`.
10170 * The algorithm by which `Vec` reserves additional elements was
10171 [tweaked to not allocate excessive space][1.6a] while still growing
10172 exponentially.
10173 * `From` conversions are [implemented from integers to floats][1.6f]
10174 in cases where the conversion is lossless. Thus they are not
10175 implemented for 32-bit ints to `f32`, nor for 64-bit ints to `f32`
10176 or `f64`. They are also not implemented for `isize` and `usize`
10177 because the implementations would be platform-specific. `From` is
10178 also implemented from `f32` to `f64`.
10179 * `From<&Path>` and `From<PathBuf>` are implemented for `Cow<Path>`.
10180 * `From<T>` is implemented for `Box<T>`, `Rc<T>` and `Arc<T>`.
10181 * `IntoIterator` is implemented for `&PathBuf` and `&Path`.
10182 * [`BinaryHeap` was refactored][1.6bh] for modest performance
10183 improvements.
10184 * Sorting slices that are already sorted [is 50% faster in some
10185 cases][1.6s].
10186
10187 Cargo
10188 -----
10189
10190 * Cargo will look in `$CARGO_HOME/bin` for subcommands [by default][1.6c].
10191 * Cargo build scripts can specify their dependencies by emitting the
10192 [`rerun-if-changed`][1.6rr] key.
10193 * crates.io will reject publication of crates with dependencies that
10194 have a wildcard version constraint. Crates with wildcard
10195 dependencies were seen to cause a variety of problems, as described
10196 in [RFC 1241]. Since 1.5 publication of such crates has emitted a
10197 warning.
10198 * `cargo clean` [accepts a `--release` flag][1.6cc] to clean the
10199 release folder. A variety of artifacts that Cargo failed to clean
10200 are now correctly deleted.
10201
10202 Misc
10203 ----
10204
10205 * The `unreachable_code` lint [warns when a function call's argument
10206 diverges][1.6dv].
10207 * The parser indicates [failures that may be caused by
10208 confusingly-similar Unicode characters][1.6uc]
10209 * Certain macro errors [are reported at definition time][1.6m], not
10210 expansion.
10211
10212 Compatibility Notes
10213 -------------------
10214
10215 * The compiler no longer makes use of the [`RUST_PATH`][1.6rp]
10216 environment variable when locating crates. This was a pre-cargo
10217 feature for integrating with the package manager that was
10218 accidentally never removed.
10219 * [A number of bugs were fixed in the privacy checker][1.6p] that
10220 could cause previously-accepted code to break.
10221 * [Modules and unit/tuple structs may not share the same name][1.6ts].
10222 * [Bugs in pattern matching unit structs were fixed][1.6us]. The tuple
10223 struct pattern syntax (`Foo(..)`) can no longer be used to match
10224 unit structs. This is a warning now, but will become an error in
10225 future releases. Patterns that share the same name as a const are
10226 now an error.
10227 * A bug was fixed that causes [rustc not to apply default type
10228 parameters][1.6xc] when resolving certain method implementations of
10229 traits defined in other crates.
10230
10231 [1.6a]: https://github.com/rust-lang/rust/pull/29454
10232 [1.6ae]: https://github.com/rust-lang/rust/pull/29770
10233 [1.6bh]: https://github.com/rust-lang/rust/pull/29811
10234 [1.6c]: https://github.com/rust-lang/cargo/pull/2192
10235 [1.6cc]: https://github.com/rust-lang/cargo/pull/2131
10236 [1.6co]: http://doc.rust-lang.org/core/index.html
10237 [1.6dv]: https://github.com/rust-lang/rust/pull/30000
10238 [1.6f]: https://github.com/rust-lang/rust/pull/29129
10239 [1.6m]: https://github.com/rust-lang/rust/pull/29828
10240 [1.6ms]: https://github.com/rust-lang/rust/pull/29604
10241 [1.6p]: https://github.com/rust-lang/rust/pull/29726
10242 [1.6rp]: https://github.com/rust-lang/rust/pull/30034
10243 [1.6rr]: https://github.com/rust-lang/cargo/pull/2134
10244 [1.6s]: https://github.com/rust-lang/rust/pull/29675
10245 [1.6ts]: https://github.com/rust-lang/rust/issues/21546
10246 [1.6uc]: https://github.com/rust-lang/rust/pull/29837
10247 [1.6us]: https://github.com/rust-lang/rust/pull/29383
10248 [1.6xc]: https://github.com/rust-lang/rust/issues/30123
10249 [RFC 1184]: https://github.com/rust-lang/rfcs/blob/master/text/1184-stabilize-no_std.md
10250 [RFC 1241]: https://github.com/rust-lang/rfcs/blob/master/text/1241-no-wildcard-deps.md
10251 [`ErrorKind::UnexpectedEof`]: http://doc.rust-lang.org/nightly/std/io/enum.ErrorKind.html#variant.UnexpectedEof
10252 [`Iterator::max_by_key`]: http://doc.rust-lang.org/nightly/std/iter/trait.Iterator.html#method.max_by_key
10253 [`Iterator::min_by_key`]: http://doc.rust-lang.org/nightly/std/iter/trait.Iterator.html#method.min_by_key
10254 [`Mutex::get_mut`]: http://doc.rust-lang.org/nightly/std/sync/struct.Mutex.html#method.get_mut
10255 [`Mutex::into_inner`]: http://doc.rust-lang.org/nightly/std/sync/struct.Mutex.html#method.into_inner
10256 [`Read::read_exact`]: http://doc.rust-lang.org/nightly/std/io/trait.Read.html#method.read_exact
10257 [`RwLock::get_mut`]: http://doc.rust-lang.org/nightly/std/sync/struct.RwLock.html#method.get_mut
10258 [`RwLock::into_inner`]: http://doc.rust-lang.org/nightly/std/sync/struct.RwLock.html#method.into_inner
10259 [`Vec::extend_from_slice`]: http://doc.rust-lang.org/nightly/collections/vec/struct.Vec.html#method.extend_from_slice
10260 [`collections::binary_heap::BinaryHeap::drain`]: http://doc.rust-lang.org/nightly/std/collections/binary_heap/struct.BinaryHeap.html#method.drain
10261 [`collections::binary_heap::Drain`]: http://doc.rust-lang.org/nightly/std/collections/binary_heap/struct.Drain.html
10262 [`collections::hash_map::Drain`]: http://doc.rust-lang.org/nightly/std/collections/hash_map/struct.Drain.html
10263 [`collections::hash_map::HashMap::drain`]: http://doc.rust-lang.org/nightly/std/collections/hash_map/struct.HashMap.html#method.drain
10264 [`collections::hash_set::Drain`]: http://doc.rust-lang.org/nightly/std/collections/hash_set/struct.Drain.html
10265 [`collections::hash_set::HashSet::drain`]: http://doc.rust-lang.org/nightly/std/collections/hash_set/struct.HashSet.html#method.drain
10266 [`fs::DirBuilder::create`]: http://doc.rust-lang.org/nightly/std/fs/struct.DirBuilder.html#method.create
10267 [`fs::DirBuilder::new`]: http://doc.rust-lang.org/nightly/std/fs/struct.DirBuilder.html#method.new
10268 [`fs::DirBuilder::recursive`]: http://doc.rust-lang.org/nightly/std/fs/struct.DirBuilder.html#method.recursive
10269 [`fs::DirBuilder`]: http://doc.rust-lang.org/nightly/std/fs/struct.DirBuilder.html
10270 [`os::unix::fs::DirBuilderExt::mode`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.DirBuilderExt.html#tymethod.mode
10271 [`os::unix::fs::DirBuilderExt`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.DirBuilderExt.html
10272 [`string::Drain`]: http://doc.rust-lang.org/nightly/std/string/struct.Drain.html
10273 [`string::String::drain`]: http://doc.rust-lang.org/nightly/std/string/struct.String.html#method.drain
10274 [`vec::Drain`]: http://doc.rust-lang.org/nightly/std/vec/struct.Drain.html
10275 [`vec::Vec::drain`]: http://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.drain
10276 [`vec_deque::Drain`]: http://doc.rust-lang.org/nightly/std/collections/vec_deque/struct.Drain.html
10277 [`vec_deque::VecDeque::drain`]: http://doc.rust-lang.org/nightly/std/collections/vec_deque/struct.VecDeque.html#method.drain
10278
10279
10280 Version 1.5.0 (2015-12-10)
10281 ==========================
10282
10283 * ~700 changes, numerous bugfixes
10284
10285 Highlights
10286 ----------
10287
10288 * Stabilized APIs:
10289 [`BinaryHeap::from`], [`BinaryHeap::into_sorted_vec`],
10290 [`BinaryHeap::into_vec`], [`Condvar::wait_timeout`],
10291 [`FileTypeExt::is_block_device`], [`FileTypeExt::is_char_device`],
10292 [`FileTypeExt::is_fifo`], [`FileTypeExt::is_socket`],
10293 [`FileTypeExt`], [`Formatter::alternate`], [`Formatter::fill`],
10294 [`Formatter::precision`], [`Formatter::sign_aware_zero_pad`],
10295 [`Formatter::sign_minus`], [`Formatter::sign_plus`],
10296 [`Formatter::width`], [`Iterator::cmp`], [`Iterator::eq`],
10297 [`Iterator::ge`], [`Iterator::gt`], [`Iterator::le`],
10298 [`Iterator::lt`], [`Iterator::ne`], [`Iterator::partial_cmp`],
10299 [`Path::canonicalize`], [`Path::exists`], [`Path::is_dir`],
10300 [`Path::is_file`], [`Path::metadata`], [`Path::read_dir`],
10301 [`Path::read_link`], [`Path::symlink_metadata`],
10302 [`Utf8Error::valid_up_to`], [`Vec::resize`],
10303 [`VecDeque::as_mut_slices`], [`VecDeque::as_slices`],
10304 [`VecDeque::insert`], [`VecDeque::shrink_to_fit`],
10305 [`VecDeque::swap_remove_back`], [`VecDeque::swap_remove_front`],
10306 [`slice::split_first_mut`], [`slice::split_first`],
10307 [`slice::split_last_mut`], [`slice::split_last`],
10308 [`char::from_u32_unchecked`], [`fs::canonicalize`],
10309 [`str::MatchIndices`], [`str::RMatchIndices`],
10310 [`str::match_indices`], [`str::rmatch_indices`],
10311 [`str::slice_mut_unchecked`], [`string::ParseError`].
10312 * Rust applications hosted on crates.io can be installed locally to
10313 `~/.cargo/bin` with the [`cargo install`] command. Among other
10314 things this makes it easier to augment Cargo with new subcommands:
10315 when a binary named e.g. `cargo-foo` is found in `$PATH` it can be
10316 invoked as `cargo foo`.
10317 * Crates with wildcard (`*`) dependencies will [emit warnings when
10318 published][1.5w]. In 1.6 it will no longer be possible to publish
10319 crates with wildcard dependencies.
10320
10321 Breaking Changes
10322 ----------------
10323
10324 * The rules determining when a particular lifetime must outlive
10325 a particular value (known as '[dropck]') have been [modified
10326 to not rely on parametricity][1.5p].
10327 * [Implementations of `AsRef` and `AsMut` were added to `Box`, `Rc`,
10328 and `Arc`][1.5a]. Because these smart pointer types implement
10329 `Deref`, this causes breakage in cases where the interior type
10330 contains methods of the same name.
10331 * [Correct a bug in Rc/Arc][1.5c] that caused [dropck] to be unaware
10332 that they could drop their content. Soundness fix.
10333 * All method invocations are [properly checked][1.5wf1] for
10334 [well-formedness][1.5wf2]. Soundness fix.
10335 * Traits whose supertraits contain `Self` are [not object
10336 safe][1.5o]. Soundness fix.
10337 * Target specifications support a [`no_default_libraries`][1.5nd]
10338 setting that controls whether `-nodefaultlibs` is passed to the
10339 linker, and in turn the `is_like_windows` setting no longer affects
10340 the `-nodefaultlibs` flag.
10341 * `#[derive(Show)]`, long-deprecated, [has been removed][1.5ds].
10342 * The `#[inline]` and `#[repr]` attributes [can only appear
10343 in valid locations][1.5at].
10344 * Native libraries linked from the local crate are [passed to
10345 the linker before native libraries from upstream crates][1.5nl].
10346 * Two rarely-used attributes, `#[no_debug]` and
10347 `#[omit_gdb_pretty_printer_section]` [are feature gated][1.5fg].
10348 * Negation of unsigned integers, which has been a warning for
10349 several releases, [is now behind a feature gate and will
10350 generate errors][1.5nu].
10351 * The parser accidentally accepted visibility modifiers on
10352 enum variants, a bug [which has been fixed][1.5ev].
10353 * [A bug was fixed that allowed `use` statements to import unstable
10354 features][1.5use].
10355
10356 Language
10357 --------
10358
10359 * When evaluating expressions at compile-time that are not
10360 compile-time constants (const-evaluating expressions in non-const
10361 contexts), incorrect code such as overlong bitshifts and arithmetic
10362 overflow will [generate a warning instead of an error][1.5ce],
10363 delaying the error until runtime. This will allow the
10364 const-evaluator to be expanded in the future backwards-compatibly.
10365 * The `improper_ctypes` lint [no longer warns about using `isize` and
10366 `usize` in FFI][1.5ict].
10367
10368 Libraries
10369 ---------
10370
10371 * `Arc<T>` and `Rc<T>` are [covariant with respect to `T` instead of
10372 invariant][1.5c].
10373 * `Default` is [implemented for mutable slices][1.5d].
10374 * `FromStr` is [implemented for `SockAddrV4` and `SockAddrV6`][1.5s].
10375 * There are now `From` conversions [between floating point
10376 types][1.5f] where the conversions are lossless.
10377 * There are now `From` conversions [between integer types][1.5i] where
10378 the conversions are lossless.
10379 * [`fs::Metadata` implements `Clone`][1.5fs].
10380 * The `parse` method [accepts a leading "+" when parsing
10381 integers][1.5pi].
10382 * [`AsMut` is implemented for `Vec`][1.5am].
10383 * The `clone_from` implementations for `String` and `BinaryHeap` [have
10384 been optimized][1.5cf] and no longer rely on the default impl.
10385 * The `extern "Rust"`, `extern "C"`, `unsafe extern "Rust"` and
10386 `unsafe extern "C"` function types now [implement `Clone`,
10387 `PartialEq`, `Eq`, `PartialOrd`, `Ord`, `Hash`, `fmt::Pointer`, and
10388 `fmt::Debug` for up to 12 arguments][1.5fp].
10389 * [Dropping `Vec`s is much faster in unoptimized builds when the
10390 element types don't implement `Drop`][1.5dv].
10391 * A bug that caused in incorrect behavior when [combining `VecDeque`
10392 with zero-sized types][1.5vdz] was resolved.
10393 * [`PartialOrd` for slices is faster][1.5po].
10394
10395 Miscellaneous
10396 -------------
10397
10398 * [Crate metadata size was reduced by 20%][1.5md].
10399 * [Improvements to code generation reduced the size of libcore by 3.3
10400 MB and rustc's memory usage by 18MB][1.5m].
10401 * [Improvements to deref translation increased performance in
10402 unoptimized builds][1.5dr].
10403 * Various errors in trait resolution [are deduplicated to only be
10404 reported once][1.5te].
10405 * Rust has preliminary [support for rumprun kernels][1.5rr].
10406 * Rust has preliminary [support for NetBSD on amd64][1.5na].
10407
10408 [1.5use]: https://github.com/rust-lang/rust/pull/28364
10409 [1.5po]: https://github.com/rust-lang/rust/pull/28436
10410 [1.5ev]: https://github.com/rust-lang/rust/pull/28442
10411 [1.5nu]: https://github.com/rust-lang/rust/pull/28468
10412 [1.5dr]: https://github.com/rust-lang/rust/pull/28491
10413 [1.5vdz]: https://github.com/rust-lang/rust/pull/28494
10414 [1.5md]: https://github.com/rust-lang/rust/pull/28521
10415 [1.5fg]: https://github.com/rust-lang/rust/pull/28522
10416 [1.5dv]: https://github.com/rust-lang/rust/pull/28531
10417 [1.5na]: https://github.com/rust-lang/rust/pull/28543
10418 [1.5fp]: https://github.com/rust-lang/rust/pull/28560
10419 [1.5rr]: https://github.com/rust-lang/rust/pull/28593
10420 [1.5cf]: https://github.com/rust-lang/rust/pull/28602
10421 [1.5nl]: https://github.com/rust-lang/rust/pull/28605
10422 [1.5te]: https://github.com/rust-lang/rust/pull/28645
10423 [1.5at]: https://github.com/rust-lang/rust/pull/28650
10424 [1.5am]: https://github.com/rust-lang/rust/pull/28663
10425 [1.5m]: https://github.com/rust-lang/rust/pull/28778
10426 [1.5ict]: https://github.com/rust-lang/rust/pull/28779
10427 [1.5a]: https://github.com/rust-lang/rust/pull/28811
10428 [1.5pi]: https://github.com/rust-lang/rust/pull/28826
10429 [1.5ce]: https://github.com/rust-lang/rfcs/blob/master/text/1229-compile-time-asserts.md
10430 [1.5p]: https://github.com/rust-lang/rfcs/blob/master/text/1238-nonparametric-dropck.md
10431 [1.5i]: https://github.com/rust-lang/rust/pull/28921
10432 [1.5fs]: https://github.com/rust-lang/rust/pull/29021
10433 [1.5f]: https://github.com/rust-lang/rust/pull/29129
10434 [1.5ds]: https://github.com/rust-lang/rust/pull/29148
10435 [1.5s]: https://github.com/rust-lang/rust/pull/29190
10436 [1.5d]: https://github.com/rust-lang/rust/pull/29245
10437 [1.5o]: https://github.com/rust-lang/rust/pull/29259
10438 [1.5nd]: https://github.com/rust-lang/rust/pull/28578
10439 [1.5wf2]: https://github.com/rust-lang/rfcs/blob/master/text/1214-projections-lifetimes-and-wf.md
10440 [1.5wf1]: https://github.com/rust-lang/rust/pull/28669
10441 [dropck]: https://doc.rust-lang.org/nightly/nomicon/dropck.html
10442 [1.5c]: https://github.com/rust-lang/rust/pull/29110
10443 [1.5w]: https://github.com/rust-lang/rfcs/blob/master/text/1241-no-wildcard-deps.md
10444 [`cargo install`]: https://github.com/rust-lang/rfcs/blob/master/text/1200-cargo-install.md
10445 [`BinaryHeap::from`]: http://doc.rust-lang.org/nightly/std/convert/trait.From.html#method.from
10446 [`BinaryHeap::into_sorted_vec`]: http://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html#method.into_sorted_vec
10447 [`BinaryHeap::into_vec`]: http://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html#method.into_vec
10448 [`Condvar::wait_timeout`]: http://doc.rust-lang.org/nightly/std/sync/struct.Condvar.html#method.wait_timeout
10449 [`FileTypeExt::is_block_device`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.FileTypeExt.html#tymethod.is_block_device
10450 [`FileTypeExt::is_char_device`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.FileTypeExt.html#tymethod.is_char_device
10451 [`FileTypeExt::is_fifo`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.FileTypeExt.html#tymethod.is_fifo
10452 [`FileTypeExt::is_socket`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.FileTypeExt.html#tymethod.is_socket
10453 [`FileTypeExt`]: http://doc.rust-lang.org/nightly/std/os/unix/fs/trait.FileTypeExt.html
10454 [`Formatter::alternate`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.alternate
10455 [`Formatter::fill`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.fill
10456 [`Formatter::precision`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.precision
10457 [`Formatter::sign_aware_zero_pad`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.sign_aware_zero_pad
10458 [`Formatter::sign_minus`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.sign_minus
10459 [`Formatter::sign_plus`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.sign_plus
10460 [`Formatter::width`]: http://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.width
10461 [`Iterator::cmp`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.cmp
10462 [`Iterator::eq`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.eq
10463 [`Iterator::ge`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.ge
10464 [`Iterator::gt`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.gt
10465 [`Iterator::le`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.le
10466 [`Iterator::lt`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.lt
10467 [`Iterator::ne`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.ne
10468 [`Iterator::partial_cmp`]: http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.partial_cmp
10469 [`Path::canonicalize`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.canonicalize
10470 [`Path::exists`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.exists
10471 [`Path::is_dir`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.is_dir
10472 [`Path::is_file`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.is_file
10473 [`Path::metadata`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.metadata
10474 [`Path::read_dir`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.read_dir
10475 [`Path::read_link`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.read_link
10476 [`Path::symlink_metadata`]: http://doc.rust-lang.org/nightly/std/path/struct.Path.html#method.symlink_metadata
10477 [`Utf8Error::valid_up_to`]: http://doc.rust-lang.org/nightly/core/str/struct.Utf8Error.html#method.valid_up_to
10478 [`Vec::resize`]: http://doc.rust-lang.org/nightly/std/vec/struct.Vec.html#method.resize
10479 [`VecDeque::as_mut_slices`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.as_mut_slices
10480 [`VecDeque::as_slices`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.as_slices
10481 [`VecDeque::insert`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.insert
10482 [`VecDeque::shrink_to_fit`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.shrink_to_fit
10483 [`VecDeque::swap_remove_back`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.swap_remove_back
10484 [`VecDeque::swap_remove_front`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.swap_remove_front
10485 [`slice::split_first_mut`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_first_mut
10486 [`slice::split_first`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_first
10487 [`slice::split_last_mut`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_last_mut
10488 [`slice::split_last`]: http://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_last
10489 [`char::from_u32_unchecked`]: http://doc.rust-lang.org/nightly/std/char/fn.from_u32_unchecked.html
10490 [`fs::canonicalize`]: http://doc.rust-lang.org/nightly/std/fs/fn.canonicalize.html
10491 [`str::MatchIndices`]: http://doc.rust-lang.org/nightly/std/str/struct.MatchIndices.html
10492 [`str::RMatchIndices`]: http://doc.rust-lang.org/nightly/std/str/struct.RMatchIndices.html
10493 [`str::match_indices`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.match_indices
10494 [`str::rmatch_indices`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.rmatch_indices
10495 [`str::slice_mut_unchecked`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.slice_mut_unchecked
10496 [`string::ParseError`]: http://doc.rust-lang.org/nightly/std/string/enum.ParseError.html
10497
10498 Version 1.4.0 (2015-10-29)
10499 ==========================
10500
10501 * ~1200 changes, numerous bugfixes
10502
10503 Highlights
10504 ----------
10505
10506 * Windows builds targeting the 64-bit MSVC ABI and linker (instead of
10507 GNU) are now supported and recommended for use.
10508
10509 Breaking Changes
10510 ----------------
10511
10512 * [Several changes have been made to fix type soundness and improve
10513 the behavior of associated types][sound]. See [RFC 1214]. Although
10514 we have mostly introduced these changes as warnings this release, to
10515 become errors next release, there are still some scenarios that will
10516 see immediate breakage.
10517 * [The `str::lines` and `BufRead::lines` iterators treat `\r\n` as
10518 line breaks in addition to `\n`][crlf].
10519 * [Loans of `'static` lifetime extend to the end of a function][stat].
10520 * [`str::parse` no longer introduces avoidable rounding error when
10521 parsing floating point numbers. Together with earlier changes to
10522 float formatting/output, "round trips" like f.to_string().parse()
10523 now preserve the value of f exactly. Additionally, leading plus
10524 signs are now accepted][fp3].
10525
10526
10527 Language
10528 --------
10529
10530 * `use` statements that import multiple items [can now rename
10531 them][i], as in `use foo::{bar as kitten, baz as puppy}`.
10532 * [Binops work correctly on fat pointers][binfat].
10533 * `pub extern crate`, which does not behave as expected, [issues a
10534 warning][pec] until a better solution is found.
10535
10536 Libraries
10537 ---------
10538
10539 * [Many APIs were stabilized][stab]: `<Box<str>>::into_string`,
10540 [`Arc::downgrade`], [`Arc::get_mut`], [`Arc::make_mut`],
10541 [`Arc::try_unwrap`], [`Box::from_raw`], [`Box::into_raw`], [`CStr::to_str`],
10542 [`CStr::to_string_lossy`], [`CString::from_raw`], [`CString::into_raw`],
10543 [`IntoRawFd::into_raw_fd`], [`IntoRawFd`],
10544 `IntoRawHandle::into_raw_handle`, `IntoRawHandle`,
10545 `IntoRawSocket::into_raw_socket`, `IntoRawSocket`, [`Rc::downgrade`],
10546 [`Rc::get_mut`], [`Rc::make_mut`], [`Rc::try_unwrap`], [`Result::expect`],
10547 [`String::into_boxed_str`], [`TcpStream::read_timeout`],
10548 [`TcpStream::set_read_timeout`], [`TcpStream::set_write_timeout`],
10549 [`TcpStream::write_timeout`], [`UdpSocket::read_timeout`],
10550 [`UdpSocket::set_read_timeout`], [`UdpSocket::set_write_timeout`],
10551 [`UdpSocket::write_timeout`], `Vec::append`, `Vec::split_off`,
10552 [`VecDeque::append`], [`VecDeque::retain`], [`VecDeque::split_off`],
10553 [`rc::Weak::upgrade`], [`rc::Weak`], [`slice::Iter::as_slice`],
10554 [`slice::IterMut::into_slice`], [`str::CharIndices::as_str`],
10555 [`str::Chars::as_str`], [`str::split_at_mut`], [`str::split_at`],
10556 [`sync::Weak::upgrade`], [`sync::Weak`], [`thread::park_timeout`],
10557 [`thread::sleep`].
10558 * [Some APIs were deprecated][dep]: `BTreeMap::with_b`,
10559 `BTreeSet::with_b`, `Option::as_mut_slice`, `Option::as_slice`,
10560 `Result::as_mut_slice`, `Result::as_slice`, `f32::from_str_radix`,
10561 `f64::from_str_radix`.
10562 * [Reverse-searching strings is faster with the 'two-way'
10563 algorithm][s].
10564 * [`std::io::copy` allows `?Sized` arguments][cc].
10565 * The `Windows`, `Chunks`, and `ChunksMut` iterators over slices all
10566 [override `count`, `nth` and `last` with an *O*(1)
10567 implementation][it].
10568 * [`Default` is implemented for arrays up to `[T; 32]`][d].
10569 * [`IntoRawFd` has been added to the Unix-specific prelude,
10570 `IntoRawSocket` and `IntoRawHandle` to the Windows-specific
10571 prelude][pr].
10572 * [`Extend<String>` and `FromIterator<String` are both implemented for
10573 `String`][es].
10574 * [`IntoIterator` is implemented for references to `Option` and
10575 `Result`][into2].
10576 * [`HashMap` and `HashSet` implement `Extend<&T>` where `T:
10577 Copy`][ext] as part of [RFC 839]. This will cause type inference
10578 breakage in rare situations.
10579 * [`BinaryHeap` implements `Debug`][bh2].
10580 * [`Borrow` and `BorrowMut` are implemented for fixed-size
10581 arrays][bm].
10582 * [`extern fn`s with the "Rust" and "C" ABIs implement common
10583 traits including `Eq`, `Ord`, `Debug`, `Hash`][fp].
10584 * [String comparison is faster][faststr].
10585 * `&mut T` where `T: std::fmt::Write` [also implements
10586 `std::fmt::Write`][mutw].
10587 * [A stable regression in `VecDeque::push_back` and other
10588 capacity-altering methods that caused panics for zero-sized types
10589 was fixed][vd].
10590 * [Function pointers implement traits for up to 12 parameters][fp2].
10591
10592 Miscellaneous
10593 -------------
10594
10595 * The compiler [no longer uses the 'morestack' feature to prevent
10596 stack overflow][mm]. Instead it uses guard pages and stack
10597 probes (though stack probes are not yet implemented on any platform
10598 but Windows).
10599 * [The compiler matches traits faster when projections are involved][p].
10600 * The 'improper_ctypes' lint [no longer warns about use of `isize` and
10601 `usize`][ffi].
10602 * [Cargo now displays useful information about what its doing during
10603 `cargo update`][cu].
10604
10605 [`Arc::downgrade`]: http://doc.rust-lang.org/nightly/alloc/arc/struct.Arc.html#method.downgrade
10606 [`Arc::make_mut`]: http://doc.rust-lang.org/nightly/alloc/arc/struct.Arc.html#method.make_mut
10607 [`Arc::get_mut`]: http://doc.rust-lang.org/nightly/alloc/arc/struct.Arc.html#method.get_mut
10608 [`Arc::try_unwrap`]: http://doc.rust-lang.org/nightly/alloc/arc/struct.Arc.html#method.try_unwrap
10609 [`Box::from_raw`]: http://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html#method.from_raw
10610 [`Box::into_raw`]: http://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html#method.into_raw
10611 [`CStr::to_str`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.to_str
10612 [`CStr::to_string_lossy`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html#method.to_string_lossy
10613 [`CString::from_raw`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html#method.from_raw
10614 [`CString::into_raw`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html#method.into_raw
10615 [`IntoRawFd::into_raw_fd`]: http://doc.rust-lang.org/nightly/std/os/unix/io/trait.IntoRawFd.html#tymethod.into_raw_fd
10616 [`IntoRawFd`]: http://doc.rust-lang.org/nightly/std/os/unix/io/trait.IntoRawFd.html
10617 [`Rc::downgrade`]: http://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html#method.downgrade
10618 [`Rc::get_mut`]: http://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html#method.get_mut
10619 [`Rc::make_mut`]: http://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html#method.make_mut
10620 [`Rc::try_unwrap`]: http://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html#method.try_unwrap
10621 [`Result::expect`]: http://doc.rust-lang.org/nightly/core/result/enum.Result.html#method.expect
10622 [`String::into_boxed_str`]: http://doc.rust-lang.org/nightly/collections/string/struct.String.html#method.into_boxed_str
10623 [`TcpStream::read_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.read_timeout
10624 [`TcpStream::set_read_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_read_timeout
10625 [`TcpStream::write_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.write_timeout
10626 [`TcpStream::set_write_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_write_timeout
10627 [`UdpSocket::read_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.read_timeout
10628 [`UdpSocket::set_read_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_read_timeout
10629 [`UdpSocket::write_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.write_timeout
10630 [`UdpSocket::set_write_timeout`]: http://doc.rust-lang.org/nightly/std/net/struct.TcpStream.html#method.set_write_timeout
10631 [`VecDeque::append`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.append
10632 [`VecDeque::retain`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.retain
10633 [`VecDeque::split_off`]: http://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.split_off
10634 [`rc::Weak::upgrade`]: http://doc.rust-lang.org/nightly/std/rc/struct.Weak.html#method.upgrade
10635 [`rc::Weak`]: http://doc.rust-lang.org/nightly/std/rc/struct.Weak.html
10636 [`slice::Iter::as_slice`]: http://doc.rust-lang.org/nightly/std/slice/struct.Iter.html#method.as_slice
10637 [`slice::IterMut::into_slice`]: http://doc.rust-lang.org/nightly/std/slice/struct.IterMut.html#method.into_slice
10638 [`str::CharIndices::as_str`]: http://doc.rust-lang.org/nightly/std/str/struct.CharIndices.html#method.as_str
10639 [`str::Chars::as_str`]: http://doc.rust-lang.org/nightly/std/str/struct.Chars.html#method.as_str
10640 [`str::split_at_mut`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_at_mut
10641 [`str::split_at`]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_at
10642 [`sync::Weak::upgrade`]: http://doc.rust-lang.org/nightly/std/sync/struct.Weak.html#method.upgrade
10643 [`sync::Weak`]: http://doc.rust-lang.org/nightly/std/sync/struct.Weak.html
10644 [`thread::park_timeout`]: http://doc.rust-lang.org/nightly/std/thread/fn.park_timeout.html
10645 [`thread::sleep`]: http://doc.rust-lang.org/nightly/std/thread/fn.sleep.html
10646 [bh2]: https://github.com/rust-lang/rust/pull/28156
10647 [binfat]: https://github.com/rust-lang/rust/pull/28270
10648 [bm]: https://github.com/rust-lang/rust/pull/28197
10649 [cc]: https://github.com/rust-lang/rust/pull/27531
10650 [crlf]: https://github.com/rust-lang/rust/pull/28034
10651 [cu]: https://github.com/rust-lang/cargo/pull/1931
10652 [d]: https://github.com/rust-lang/rust/pull/27825
10653 [dep]: https://github.com/rust-lang/rust/pull/28339
10654 [es]: https://github.com/rust-lang/rust/pull/27956
10655 [ext]: https://github.com/rust-lang/rust/pull/28094
10656 [faststr]: https://github.com/rust-lang/rust/pull/28338
10657 [ffi]: https://github.com/rust-lang/rust/pull/28779
10658 [fp]: https://github.com/rust-lang/rust/pull/28268
10659 [fp2]: https://github.com/rust-lang/rust/pull/28560
10660 [fp3]: https://github.com/rust-lang/rust/pull/27307
10661 [i]: https://github.com/rust-lang/rust/pull/27451
10662 [into2]: https://github.com/rust-lang/rust/pull/28039
10663 [it]: https://github.com/rust-lang/rust/pull/27652
10664 [mm]: https://github.com/rust-lang/rust/pull/27338
10665 [mutw]: https://github.com/rust-lang/rust/pull/28368
10666 [sound]: https://github.com/rust-lang/rust/pull/27641
10667 [p]: https://github.com/rust-lang/rust/pull/27866
10668 [pec]: https://github.com/rust-lang/rust/pull/28486
10669 [pr]: https://github.com/rust-lang/rust/pull/27896
10670 [RFC 839]: https://github.com/rust-lang/rfcs/blob/master/text/0839-embrace-extend-extinguish.md
10671 [RFC 1214]: https://github.com/rust-lang/rfcs/blob/master/text/1214-projections-lifetimes-and-wf.md
10672 [s]: https://github.com/rust-lang/rust/pull/27474
10673 [stab]: https://github.com/rust-lang/rust/pull/28339
10674 [stat]: https://github.com/rust-lang/rust/pull/28321
10675 [vd]: https://github.com/rust-lang/rust/pull/28494
10676
10677 Version 1.3.0 (2015-09-17)
10678 ==============================
10679
10680 * ~900 changes, numerous bugfixes
10681
10682 Highlights
10683 ----------
10684
10685 * The [new object lifetime defaults][nold] have been [turned
10686 on][nold2] after a cycle of warnings about the change. Now types
10687 like `&'a Box<Trait>` (or `&'a Rc<Trait>`, etc) will change from
10688 being interpreted as `&'a Box<Trait+'a>` to `&'a
10689 Box<Trait+'static>`.
10690 * [The Rustonomicon][nom] is a new book in the official documentation
10691 that dives into writing unsafe Rust.
10692 * The [`Duration`] API, [has been stabilized][ds]. This basic unit of
10693 timekeeping is employed by other std APIs, as well as out-of-tree
10694 time crates.
10695
10696 Breaking Changes
10697 ----------------
10698
10699 * The [new object lifetime defaults][nold] have been [turned
10700 on][nold2] after a cycle of warnings about the change.
10701 * There is a known [regression][lr] in how object lifetime elision is
10702 interpreted, the proper solution for which is undetermined.
10703 * The `#[prelude_import]` attribute, an internal implementation
10704 detail, was accidentally stabilized previously. [It has been put
10705 behind the `prelude_import` feature gate][pi]. This change is
10706 believed to break no existing code.
10707 * The behavior of [`size_of_val`][dst1] and [`align_of_val`][dst2] is
10708 [more sane for dynamically sized types][dst3]. Code that relied on
10709 the previous behavior is thought to be broken.
10710 * The `dropck` rules, which checks that destructors can't access
10711 destroyed values, [have been updated][dropck] to match the
10712 [RFC][dropckrfc]. This fixes some soundness holes, and as such will
10713 cause some previously-compiling code to no longer build.
10714
10715 Language
10716 --------
10717
10718 * The [new object lifetime defaults][nold] have been [turned
10719 on][nold2] after a cycle of warnings about the change.
10720 * Semicolons may [now follow types and paths in
10721 macros](https://github.com/rust-lang/rust/pull/27000).
10722 * The behavior of [`size_of_val`][dst1] and [`align_of_val`][dst2] is
10723 [more sane for dynamically sized types][dst3]. Code that relied on
10724 the previous behavior is not known to exist, and suspected to be
10725 broken.
10726 * `'static` variables [may now be recursive][st].
10727 * `ref` bindings choose between [`Deref`] and [`DerefMut`]
10728 implementations correctly.
10729 * The `dropck` rules, which checks that destructors can't access
10730 destroyed values, [have been updated][dropck] to match the
10731 [RFC][dropckrfc].
10732
10733 Libraries
10734 ---------
10735
10736 * The [`Duration`] API, [has been stabilized][ds], as well as the
10737 `std::time` module, which presently contains only `Duration`.
10738 * `Box<str>` and `Box<[T]>` both implement `Clone`.
10739 * The owned C string, [`CString`], implements [`Borrow`] and the
10740 borrowed C string, [`CStr`], implements [`ToOwned`]. The two of
10741 these allow C strings to be borrowed and cloned in generic code.
10742 * [`CStr`] implements [`Debug`].
10743 * [`AtomicPtr`] implements [`Debug`].
10744 * [`Error`] trait objects [can be downcast to their concrete types][e]
10745 in many common configurations, using the [`is`], [`downcast`],
10746 [`downcast_ref`] and [`downcast_mut`] methods, similarly to the
10747 [`Any`] trait.
10748 * Searching for substrings now [employs the two-way algorithm][search]
10749 instead of doing a naive search. This gives major speedups to a
10750 number of methods, including [`contains`][sc], [`find`][sf],
10751 [`rfind`][srf], [`split`][ss]. [`starts_with`][ssw] and
10752 [`ends_with`][sew] are also faster.
10753 * The performance of `PartialEq` for slices is [much faster][ps].
10754 * The [`Hash`] trait offers the default method, [`hash_slice`], which
10755 is overridden and optimized by the implementations for scalars.
10756 * The [`Hasher`] trait now has a number of specialized `write_*`
10757 methods for primitive types, for efficiency.
10758 * The I/O-specific error type, [`std::io::Error`][ie], gained a set of
10759 methods for accessing the 'inner error', if any: [`get_ref`][iegr],
10760 [`get_mut`][iegm], [`into_inner`][ieii]. As well, the implementation
10761 of [`std::error::Error::cause`][iec] also delegates to the inner
10762 error.
10763 * [`process::Child`][pc] gained the [`id`] method, which returns a
10764 `u32` representing the platform-specific process identifier.
10765 * The [`connect`] method on slices is deprecated, replaced by the new
10766 [`join`] method (note that both of these are on the *unstable*
10767 [`SliceConcatExt`] trait, but through the magic of the prelude are
10768 available to stable code anyway).
10769 * The [`Div`] operator is implemented for [`Wrapping`] types.
10770 * [`DerefMut` is implemented for `String`][dms].
10771 * Performance of SipHash (the default hasher for `HashMap`) is
10772 [better for long data][sh].
10773 * [`AtomicPtr`] implements [`Send`].
10774 * The [`read_to_end`] implementations for [`Stdin`] and [`File`]
10775 are now [specialized to use uninitialized buffers for increased
10776 performance][rte].
10777 * Lifetime parameters of foreign functions [are now resolved
10778 properly][f].
10779
10780 Misc
10781 ----
10782
10783 * Rust can now, with some coercion, [produce programs that run on
10784 Windows XP][xp], though XP is not considered a supported platform.
10785 * Porting Rust on Windows from the GNU toolchain to MSVC continues
10786 ([1][win1], [2][win2], [3][win3], [4][win4]). It is still not
10787 recommended for use in 1.3, though should be fully-functional
10788 in the [64-bit 1.4 beta][b14].
10789 * On Fedora-based systems installation will [properly configure the
10790 dynamic linker][fl].
10791 * The compiler gained many new extended error descriptions, which can
10792 be accessed with the `--explain` flag.
10793 * The `dropck` pass, which checks that destructors can't access
10794 destroyed values, [has been rewritten][27261]. This fixes some
10795 soundness holes, and as such will cause some previously-compiling
10796 code to no longer build.
10797 * `rustc` now uses [LLVM to write archive files where possible][ar].
10798 Eventually this will eliminate the compiler's dependency on the ar
10799 utility.
10800 * Rust has [preliminary support for i686 FreeBSD][26959] (it has long
10801 supported FreeBSD on x86_64).
10802 * The [`unused_mut`][lum], [`unconditional_recursion`][lur],
10803 [`improper_ctypes`][lic], and [`negate_unsigned`][lnu] lints are
10804 more strict.
10805 * If landing pads are disabled (with `-Z no-landing-pads`), [`panic!`
10806 will kill the process instead of leaking][nlp].
10807
10808 [`Any`]: http://doc.rust-lang.org/nightly/std/any/trait.Any.html
10809 [`AtomicPtr`]: http://doc.rust-lang.org/nightly/std/sync/atomic/struct.AtomicPtr.html
10810 [`Borrow`]: http://doc.rust-lang.org/nightly/std/borrow/trait.Borrow.html
10811 [`CStr`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CStr.html
10812 [`CString`]: http://doc.rust-lang.org/nightly/std/ffi/struct.CString.html
10813 [`Debug`]: http://doc.rust-lang.org/nightly/std/fmt/trait.Debug.html
10814 [`DerefMut`]: http://doc.rust-lang.org/nightly/std/ops/trait.DerefMut.html
10815 [`Deref`]: http://doc.rust-lang.org/nightly/std/ops/trait.Deref.html
10816 [`Div`]: http://doc.rust-lang.org/nightly/std/ops/trait.Div.html
10817 [`Duration`]: http://doc.rust-lang.org/nightly/std/time/struct.Duration.html
10818 [`Error`]: http://doc.rust-lang.org/nightly/std/error/trait.Error.html
10819 [`File`]: http://doc.rust-lang.org/nightly/std/fs/struct.File.html
10820 [`Hash`]: http://doc.rust-lang.org/nightly/std/hash/trait.Hash.html
10821 [`Hasher`]: http://doc.rust-lang.org/nightly/std/hash/trait.Hasher.html
10822 [`Send`]: http://doc.rust-lang.org/nightly/std/marker/trait.Send.html
10823 [`SliceConcatExt`]: http://doc.rust-lang.org/nightly/std/slice/trait.SliceConcatExt.html
10824 [`Stdin`]: http://doc.rust-lang.org/nightly/std/io/struct.Stdin.html
10825 [`ToOwned`]: http://doc.rust-lang.org/nightly/std/borrow/trait.ToOwned.html
10826 [`Wrapping`]: http://doc.rust-lang.org/nightly/std/num/struct.Wrapping.html
10827 [`connect`]: http://doc.rust-lang.org/nightly/std/slice/trait.SliceConcatExt.html#method.connect
10828 [`downcast_mut`]: http://doc.rust-lang.org/nightly/std/error/trait.Error.html#method.downcast_mut
10829 [`downcast_ref`]: http://doc.rust-lang.org/nightly/std/error/trait.Error.html#method.downcast_ref
10830 [`downcast`]: http://doc.rust-lang.org/nightly/std/error/trait.Error.html#method.downcast
10831 [`hash_slice`]: http://doc.rust-lang.org/nightly/std/hash/trait.Hash.html#method.hash_slice
10832 [`id`]: http://doc.rust-lang.org/nightly/std/process/struct.Child.html#method.id
10833 [`is`]: http://doc.rust-lang.org/nightly/std/error/trait.Error.html#method.is
10834 [`join`]: http://doc.rust-lang.org/nightly/std/slice/trait.SliceConcatExt.html#method.join
10835 [`read_to_end`]: http://doc.rust-lang.org/nightly/std/io/trait.Read.html#method.read_to_end
10836 [ar]: https://github.com/rust-lang/rust/pull/26926
10837 [b14]: https://static.rust-lang.org/dist/rust-beta-x86_64-pc-windows-msvc.msi
10838 [dms]: https://github.com/rust-lang/rust/pull/26241
10839 [27261]: https://github.com/rust-lang/rust/pull/27261
10840 [dropckrfc]: https://github.com/rust-lang/rfcs/blob/master/text/0769-sound-generic-drop.md
10841 [ds]: https://github.com/rust-lang/rust/pull/26818
10842 [dst1]: http://doc.rust-lang.org/nightly/std/mem/fn.size_of_val.html
10843 [dst2]: http://doc.rust-lang.org/nightly/std/mem/fn.align_of_val.html
10844 [dst3]: https://github.com/rust-lang/rust/pull/27351
10845 [e]: https://github.com/rust-lang/rust/pull/24793
10846 [f]: https://github.com/rust-lang/rust/pull/26588
10847 [26959]: https://github.com/rust-lang/rust/pull/26959
10848 [fl]: https://github.com/rust-lang/rust-installer/pull/41
10849 [ie]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html
10850 [iec]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.cause
10851 [iegm]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.get_mut
10852 [iegr]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.get_ref
10853 [ieii]: http://doc.rust-lang.org/nightly/std/io/struct.Error.html#method.into_inner
10854 [lic]: https://github.com/rust-lang/rust/pull/26583
10855 [lnu]: https://github.com/rust-lang/rust/pull/27026
10856 [lr]: https://github.com/rust-lang/rust/issues/27248
10857 [lum]: https://github.com/rust-lang/rust/pull/26378
10858 [lur]: https://github.com/rust-lang/rust/pull/26783
10859 [nlp]: https://github.com/rust-lang/rust/pull/27176
10860 [nold2]: https://github.com/rust-lang/rust/pull/27045
10861 [nold]: https://github.com/rust-lang/rfcs/blob/master/text/1156-adjust-default-object-bounds.md
10862 [nom]: http://doc.rust-lang.org/nightly/nomicon/
10863 [pc]: http://doc.rust-lang.org/nightly/std/process/struct.Child.html
10864 [pi]: https://github.com/rust-lang/rust/pull/26699
10865 [ps]: https://github.com/rust-lang/rust/pull/26884
10866 [rte]: https://github.com/rust-lang/rust/pull/26950
10867 [sc]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.contains
10868 [search]: https://github.com/rust-lang/rust/pull/26327
10869 [sew]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.ends_with
10870 [sf]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.find
10871 [sh]: https://github.com/rust-lang/rust/pull/27280
10872 [srf]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.rfind
10873 [ss]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.split
10874 [ssw]: http://doc.rust-lang.org/nightly/std/primitive.str.html#method.starts_with
10875 [st]: https://github.com/rust-lang/rust/pull/26630
10876 [win1]: https://github.com/rust-lang/rust/pull/26569
10877 [win2]: https://github.com/rust-lang/rust/pull/26741
10878 [win3]: https://github.com/rust-lang/rust/pull/26741
10879 [win4]: https://github.com/rust-lang/rust/pull/27210
10880 [xp]: https://github.com/rust-lang/rust/pull/26569
10881
10882 Version 1.2.0 (2015-08-07)
10883 ==========================
10884
10885 * ~1200 changes, numerous bugfixes
10886
10887 Highlights
10888 ----------
10889
10890 * [Dynamically-sized-type coercions][dst] allow smart pointer types
10891 like `Rc` to contain types without a fixed size, arrays and trait
10892 objects, finally enabling use of `Rc<[T]>` and completing the
10893 implementation of DST.
10894 * [Parallel codegen][parcodegen] is now working again, which can
10895 substantially speed up large builds in debug mode; It also gets
10896 another ~33% speedup when bootstrapping on a 4 core machine (using 8
10897 jobs). It's not enabled by default, but will be "in the near
10898 future". It can be activated with the `-C codegen-units=N` flag to
10899 `rustc`.
10900 * This is the first release with [experimental support for linking
10901 with the MSVC linker and lib C on Windows (instead of using the GNU
10902 variants via MinGW)][win]. It is yet recommended only for the most
10903 intrepid Rustaceans.
10904 * Benchmark compilations are showing a 30% improvement in
10905 bootstrapping over 1.1.
10906
10907 Breaking Changes
10908 ----------------
10909
10910 * The [`to_uppercase`] and [`to_lowercase`] methods on `char` now do
10911 unicode case mapping, which is a previously-planned change in
10912 behavior and considered a bugfix.
10913 * [`mem::align_of`] now specifies [the *minimum alignment* for
10914 T][align], which is usually the alignment programs are interested
10915 in, and the same value reported by clang's
10916 `alignof`. [`mem::min_align_of`] is deprecated. This is not known to
10917 break real code.
10918 * [The `#[packed]` attribute is no longer silently accepted by the
10919 compiler][packed]. This attribute did nothing and code that
10920 mentioned it likely did not work as intended.
10921 * Associated type defaults are [now behind the
10922 `associated_type_defaults` feature gate][ad]. In 1.1 associated type
10923 defaults *did not work*, but could be mentioned syntactically. As
10924 such this breakage has minimal impact.
10925
10926 Language
10927 --------
10928
10929 * Patterns with `ref mut` now correctly invoke [`DerefMut`] when
10930 matching against dereferenceable values.
10931
10932 Libraries
10933 ---------
10934
10935 * The [`Extend`] trait, which grows a collection from an iterator, is
10936 implemented over iterators of references, for `String`, `Vec`,
10937 `LinkedList`, `VecDeque`, `EnumSet`, `BinaryHeap`, `VecMap`,
10938 `BTreeSet` and `BTreeMap`. [RFC][extend-rfc].
10939 * The [`iter::once`] function returns an iterator that yields a single
10940 element, and [`iter::empty`] returns an iterator that yields no
10941 elements.
10942 * The [`matches`] and [`rmatches`] methods on `str` return iterators
10943 over substring matches.
10944 * [`Cell`] and [`RefCell`] both implement `Eq`.
10945 * A number of methods for wrapping arithmetic are added to the
10946 integral types, [`wrapping_div`], [`wrapping_rem`],
10947 [`wrapping_neg`], [`wrapping_shl`], [`wrapping_shr`]. These are in
10948 addition to the existing [`wrapping_add`], [`wrapping_sub`], and
10949 [`wrapping_mul`] methods, and alternatives to the [`Wrapping`]
10950 type.. It is illegal for the default arithmetic operations in Rust
10951 to overflow; the desire to wrap must be explicit.
10952 * The `{:#?}` formatting specifier [displays the alternate,
10953 pretty-printed][debugfmt] form of the `Debug` formatter. This
10954 feature was actually introduced prior to 1.0 with little
10955 fanfare.
10956 * [`fmt::Formatter`] implements [`fmt::Write`], a `fmt`-specific trait
10957 for writing data to formatted strings, similar to [`io::Write`].
10958 * [`fmt::Formatter`] adds 'debug builder' methods, [`debug_struct`],
10959 [`debug_tuple`], [`debug_list`], [`debug_set`], [`debug_map`]. These
10960 are used by code generators to emit implementations of [`Debug`].
10961 * `str` has new [`to_uppercase`][strup] and [`to_lowercase`][strlow]
10962 methods that convert case, following Unicode case mapping.
10963 * It is now easier to handle poisoned locks. The [`PoisonError`]
10964 type, returned by failing lock operations, exposes `into_inner`,
10965 `get_ref`, and `get_mut`, which all give access to the inner lock
10966 guard, and allow the poisoned lock to continue to operate. The
10967 `is_poisoned` method of [`RwLock`] and [`Mutex`] can poll for a
10968 poisoned lock without attempting to take the lock.
10969 * On Unix the [`FromRawFd`] trait is implemented for [`Stdio`], and
10970 [`AsRawFd`] for [`ChildStdin`], [`ChildStdout`], [`ChildStderr`].
10971 On Windows the `FromRawHandle` trait is implemented for `Stdio`,
10972 and `AsRawHandle` for `ChildStdin`, `ChildStdout`,
10973 `ChildStderr`.
10974 * [`io::ErrorKind`] has a new variant, `InvalidData`, which indicates
10975 malformed input.
10976
10977 Misc
10978 ----
10979
10980 * `rustc` employs smarter heuristics for guessing at [typos].
10981 * `rustc` emits more efficient code for [no-op conversions between
10982 unsafe pointers][nop].
10983 * Fat pointers are now [passed in pairs of immediate arguments][fat],
10984 resulting in faster compile times and smaller code.
10985
10986 [`Extend`]: https://doc.rust-lang.org/nightly/std/iter/trait.Extend.html
10987 [extend-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0839-embrace-extend-extinguish.md
10988 [`iter::once`]: https://doc.rust-lang.org/nightly/std/iter/fn.once.html
10989 [`iter::empty`]: https://doc.rust-lang.org/nightly/std/iter/fn.empty.html
10990 [`matches`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.matches
10991 [`rmatches`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.rmatches
10992 [`Cell`]: https://doc.rust-lang.org/nightly/std/cell/struct.Cell.html
10993 [`RefCell`]: https://doc.rust-lang.org/nightly/std/cell/struct.RefCell.html
10994 [`wrapping_add`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_add
10995 [`wrapping_sub`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_sub
10996 [`wrapping_mul`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_mul
10997 [`wrapping_div`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_div
10998 [`wrapping_rem`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_rem
10999 [`wrapping_neg`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_neg
11000 [`wrapping_shl`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_shl
11001 [`wrapping_shr`]: https://doc.rust-lang.org/nightly/std/primitive.i8.html#method.wrapping_shr
11002 [`Wrapping`]: https://doc.rust-lang.org/nightly/std/num/struct.Wrapping.html
11003 [`fmt::Formatter`]: https://doc.rust-lang.org/nightly/std/fmt/struct.Formatter.html
11004 [`fmt::Write`]: https://doc.rust-lang.org/nightly/std/fmt/trait.Write.html
11005 [`io::Write`]: https://doc.rust-lang.org/nightly/std/io/trait.Write.html
11006 [`debug_struct`]: https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.debug_struct
11007 [`debug_tuple`]: https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.debug_tuple
11008 [`debug_list`]: https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.debug_list
11009 [`debug_set`]: https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.debug_set
11010 [`debug_map`]: https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html#method.debug_map
11011 [`Debug`]: https://doc.rust-lang.org/nightly/std/fmt/trait.Debug.html
11012 [strup]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.to_uppercase
11013 [strlow]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.to_lowercase
11014 [`to_uppercase`]: https://doc.rust-lang.org/nightly/std/primitive.char.html#method.to_uppercase
11015 [`to_lowercase`]: https://doc.rust-lang.org/nightly/std/primitive.char.html#method.to_lowercase
11016 [`PoisonError`]: https://doc.rust-lang.org/nightly/std/sync/struct.PoisonError.html
11017 [`RwLock`]: https://doc.rust-lang.org/nightly/std/sync/struct.RwLock.html
11018 [`Mutex`]: https://doc.rust-lang.org/nightly/std/sync/struct.Mutex.html
11019 [`FromRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.FromRawFd.html
11020 [`AsRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.AsRawFd.html
11021 [`Stdio`]: https://doc.rust-lang.org/nightly/std/process/struct.Stdio.html
11022 [`ChildStdin`]: https://doc.rust-lang.org/nightly/std/process/struct.ChildStdin.html
11023 [`ChildStdout`]: https://doc.rust-lang.org/nightly/std/process/struct.ChildStdout.html
11024 [`ChildStderr`]: https://doc.rust-lang.org/nightly/std/process/struct.ChildStderr.html
11025 [`io::ErrorKind`]: https://doc.rust-lang.org/nightly/std/io/enum.ErrorKind.html
11026 [debugfmt]: https://www.reddit.com/r/rust/comments/3ceaui/psa_produces_prettyprinted_debug_output/
11027 [`DerefMut`]: https://doc.rust-lang.org/nightly/std/ops/trait.DerefMut.html
11028 [`mem::align_of`]: https://doc.rust-lang.org/nightly/std/mem/fn.align_of.html
11029 [align]: https://github.com/rust-lang/rust/pull/25646
11030 [`mem::min_align_of`]: https://doc.rust-lang.org/nightly/std/mem/fn.min_align_of.html
11031 [typos]: https://github.com/rust-lang/rust/pull/26087
11032 [nop]: https://github.com/rust-lang/rust/pull/26336
11033 [fat]: https://github.com/rust-lang/rust/pull/26411
11034 [dst]: https://github.com/rust-lang/rfcs/blob/master/text/0982-dst-coercion.md
11035 [parcodegen]: https://github.com/rust-lang/rust/pull/26018
11036 [packed]: https://github.com/rust-lang/rust/pull/25541
11037 [ad]: https://github.com/rust-lang/rust/pull/27382
11038 [win]: https://github.com/rust-lang/rust/pull/25350
11039
11040 Version 1.1.0 (2015-06-25)
11041 =========================
11042
11043 * ~850 changes, numerous bugfixes
11044
11045 Highlights
11046 ----------
11047
11048 * The [`std::fs` module has been expanded][fs] to expand the set of
11049 functionality exposed:
11050 * `DirEntry` now supports optimizations like `file_type` and `metadata` which
11051 don't incur a syscall on some platforms.
11052 * A `symlink_metadata` function has been added.
11053 * The `fs::Metadata` structure now lowers to its OS counterpart, providing
11054 access to all underlying information.
11055 * The compiler now contains extended explanations of many errors. When an error
11056 with an explanation occurs the compiler suggests using the `--explain` flag
11057 to read the explanation. Error explanations are also [available online][err-index].
11058 * Thanks to multiple [improvements][sk] to [type checking][pre], as
11059 well as other work, the time to bootstrap the compiler decreased by
11060 32%.
11061
11062 Libraries
11063 ---------
11064
11065 * The [`str::split_whitespace`] method splits a string on unicode
11066 whitespace boundaries.
11067 * On both Windows and Unix, new extension traits provide conversion of
11068 I/O types to and from the underlying system handles. On Unix, these
11069 traits are [`FromRawFd`] and [`AsRawFd`], on Windows `FromRawHandle`
11070 and `AsRawHandle`. These are implemented for `File`, `TcpStream`,
11071 `TcpListener`, and `UpdSocket`. Further implementations for
11072 `std::process` will be stabilized later.
11073 * On Unix, [`std::os::unix::symlink`] creates symlinks. On
11074 Windows, symlinks can be created with
11075 `std::os::windows::symlink_dir` and
11076 `std::os::windows::symlink_file`.
11077 * The `mpsc::Receiver` type can now be converted into an iterator with
11078 `into_iter` on the [`IntoIterator`] trait.
11079 * `Ipv4Addr` can be created from `u32` with the `From<u32>`
11080 implementation of the [`From`] trait.
11081 * The `Debug` implementation for `RangeFull` [creates output that is
11082 more consistent with other implementations][rf].
11083 * [`Debug` is implemented for `File`][file].
11084 * The `Default` implementation for `Arc` [no longer requires `Sync +
11085 Send`][arc].
11086 * [The `Iterator` methods `count`, `nth`, and `last` have been
11087 overridden for slices to have *O*(1) performance instead of *O*(*n*)][si].
11088 * Incorrect handling of paths on Windows has been improved in both the
11089 compiler and the standard library.
11090 * [`AtomicPtr` gained a `Default` implementation][ap].
11091 * In accordance with Rust's policy on arithmetic overflow `abs` now
11092 [panics on overflow when debug assertions are enabled][abs].
11093 * The [`Cloned`] iterator, which was accidentally left unstable for
11094 1.0 [has been stabilized][c].
11095 * The [`Incoming`] iterator, which iterates over incoming TCP
11096 connections, and which was accidentally unnamable in 1.0, [is now
11097 properly exported][inc].
11098 * [`BinaryHeap`] no longer corrupts itself [when functions called by
11099 `sift_up` or `sift_down` panic][bh].
11100 * The [`split_off`] method of `LinkedList` [no longer corrupts
11101 the list in certain scenarios][ll].
11102
11103 Misc
11104 ----
11105
11106 * Type checking performance [has improved notably][sk] with
11107 [multiple improvements][pre].
11108 * The compiler [suggests code changes][ch] for more errors.
11109 * rustc and it's build system have experimental support for [building
11110 toolchains against MUSL][m] instead of glibc on Linux.
11111 * The compiler defines the `target_env` cfg value, which is used for
11112 distinguishing toolchains that are otherwise for the same
11113 platform. Presently this is set to `gnu` for common GNU Linux
11114 targets and for MinGW targets, and `musl` for MUSL Linux targets.
11115 * The [`cargo rustc`][crc] command invokes a build with custom flags
11116 to rustc.
11117 * [Android executables are always position independent][pie].
11118 * [The `drop_with_repr_extern` lint warns about mixing `repr(C)`
11119 with `Drop`][24935].
11120
11121 [`str::split_whitespace`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_whitespace
11122 [`FromRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.FromRawFd.html
11123 [`AsRawFd`]: https://doc.rust-lang.org/nightly/std/os/unix/io/trait.AsRawFd.html
11124 [`std::os::unix::symlink`]: https://doc.rust-lang.org/nightly/std/os/unix/fs/fn.symlink.html
11125 [`IntoIterator`]: https://doc.rust-lang.org/nightly/std/iter/trait.IntoIterator.html
11126 [`From`]: https://doc.rust-lang.org/nightly/std/convert/trait.From.html
11127 [rf]: https://github.com/rust-lang/rust/pull/24491
11128 [err-index]: https://doc.rust-lang.org/error-index.html
11129 [sk]: https://github.com/rust-lang/rust/pull/24615
11130 [pre]: https://github.com/rust-lang/rust/pull/25323
11131 [file]: https://github.com/rust-lang/rust/pull/24598
11132 [ch]: https://github.com/rust-lang/rust/pull/24683
11133 [arc]: https://github.com/rust-lang/rust/pull/24695
11134 [si]: https://github.com/rust-lang/rust/pull/24701
11135 [ap]: https://github.com/rust-lang/rust/pull/24834
11136 [m]: https://github.com/rust-lang/rust/pull/24777
11137 [fs]: https://github.com/rust-lang/rfcs/blob/master/text/1044-io-fs-2.1.md
11138 [crc]: https://github.com/rust-lang/cargo/pull/1568
11139 [pie]: https://github.com/rust-lang/rust/pull/24953
11140 [abs]: https://github.com/rust-lang/rust/pull/25441
11141 [c]: https://github.com/rust-lang/rust/pull/25496
11142 [`Cloned`]: https://doc.rust-lang.org/nightly/std/iter/struct.Cloned.html
11143 [`Incoming`]: https://doc.rust-lang.org/nightly/std/net/struct.Incoming.html
11144 [inc]: https://github.com/rust-lang/rust/pull/25522
11145 [bh]: https://github.com/rust-lang/rust/pull/25856
11146 [`BinaryHeap`]: https://doc.rust-lang.org/nightly/std/collections/struct.BinaryHeap.html
11147 [ll]: https://github.com/rust-lang/rust/pull/26022
11148 [`split_off`]: https://doc.rust-lang.org/nightly/collections/linked_list/struct.LinkedList.html#method.split_off
11149 [24935]: https://github.com/rust-lang/rust/pull/24935
11150
11151 Version 1.0.0 (2015-05-15)
11152 ========================
11153
11154 * ~1500 changes, numerous bugfixes
11155
11156 Highlights
11157 ----------
11158
11159 * The vast majority of the standard library is now `#[stable]`. It is
11160 no longer possible to use unstable features with a stable build of
11161 the compiler.
11162 * Many popular crates on [crates.io] now work on the stable release
11163 channel.
11164 * Arithmetic on basic integer types now [checks for overflow in debug
11165 builds][overflow].
11166
11167 Language
11168 --------
11169
11170 * Several [restrictions have been added to trait coherence][coh] in
11171 order to make it easier for upstream authors to change traits
11172 without breaking downstream code.
11173 * Digits of binary and octal literals are [lexed more eagerly][lex] to
11174 improve error messages and macro behavior. For example, `0b1234` is
11175 now lexed as `0b1234` instead of two tokens, `0b1` and `234`.
11176 * Trait bounds [are always invariant][inv], eliminating the need for
11177 the `PhantomFn` and `MarkerTrait` lang items, which have been
11178 removed.
11179 * ["-" is no longer a valid character in crate names][cr], the `extern crate
11180 "foo" as bar` syntax has been replaced with `extern crate foo as
11181 bar`, and Cargo now automatically translates "-" in *package* names
11182 to underscore for the crate name.
11183 * [Lifetime shadowing is an error][lt].
11184 * [`Send` no longer implies `'static`][send-rfc].
11185 * [UFCS now supports trait-less associated paths][moar-ufcs] like
11186 `MyType::default()`.
11187 * Primitive types [now have inherent methods][prim-inherent],
11188 obviating the need for extension traits like `SliceExt`.
11189 * Methods with `Self: Sized` in their `where` clause are [considered
11190 object-safe][self-sized], allowing many extension traits like
11191 `IteratorExt` to be merged into the traits they extended.
11192 * You can now [refer to associated types][assoc-where] whose
11193 corresponding trait bounds appear only in a `where` clause.
11194 * The final bits of [OIBIT landed][oibit-final], meaning that traits
11195 like `Send` and `Sync` are now library-defined.
11196 * A [Reflect trait][reflect] was introduced, which means that
11197 downcasting via the `Any` trait is effectively limited to concrete
11198 types. This helps retain the potentially-important "parametricity"
11199 property: generic code cannot behave differently for different type
11200 arguments except in minor ways.
11201 * The `unsafe_destructor` feature is now deprecated in favor of the
11202 [new `dropck`][rfc769]. This change is a major reduction in unsafe
11203 code.
11204
11205 Libraries
11206 ---------
11207
11208 * The `thread_local` module [has been renamed to `std::thread`][th].
11209 * The methods of `IteratorExt` [have been moved to the `Iterator`
11210 trait itself][23300].
11211 * Several traits that implement Rust's conventions for type
11212 conversions, `AsMut`, `AsRef`, `From`, and `Into` have been
11213 [centralized in the `std::convert` module][con].
11214 * The `FromError` trait [was removed in favor of `From`][fe].
11215 * The basic sleep function [has moved to
11216 `std::thread::sleep_ms`][slp].
11217 * The `splitn` function now takes an `n` parameter that represents the
11218 number of items yielded by the returned iterator [instead of the
11219 number of 'splits'][spl].
11220 * [On Unix, all file descriptors are `CLOEXEC` by default][clo].
11221 * [Derived implementations of `PartialOrd` now order enums according
11222 to their explicitly-assigned discriminants][po].
11223 * [Methods for searching strings are generic over `Pattern`s][pat],
11224 implemented presently by `&char`, `&str`, `FnMut(char) -> bool` and
11225 some others.
11226 * [In method resolution, object methods are resolved before inherent
11227 methods][meth].
11228 * [`String::from_str` has been deprecated in favor of the `From` impl,
11229 `String::from`][24517].
11230 * [`io::Error` implements `Sync`][ios].
11231 * [The `words` method on `&str` has been replaced with
11232 `split_whitespace`][sw], to avoid answering the tricky question, 'what is
11233 a word?'
11234 * The new path and IO modules are complete and `#[stable]`. This
11235 was the major library focus for this cycle.
11236 * The path API was [revised][path-normalize] to normalize `.`,
11237 adjusting the tradeoffs in favor of the most common usage.
11238 * A large number of remaining APIs in `std` were also stabilized
11239 during this cycle; about 75% of the non-deprecated API surface
11240 is now stable.
11241 * The new [string pattern API][string-pattern] landed, which makes
11242 the string slice API much more internally consistent and flexible.
11243 * A new set of [generic conversion traits][conversion] replaced
11244 many existing ad hoc traits.
11245 * Generic numeric traits were [completely removed][num-traits]. This
11246 was made possible thanks to inherent methods for primitive types,
11247 and the removal gives maximal flexibility for designing a numeric
11248 hierarchy in the future.
11249 * The `Fn` traits are now related via [inheritance][fn-inherit]
11250 and provide ergonomic [blanket implementations][fn-blanket].
11251 * The `Index` and `IndexMut` traits were changed to
11252 [take the index by value][index-value], enabling code like
11253 `hash_map["string"]` to work.
11254 * `Copy` now [inherits][copy-clone] from `Clone`, meaning that all
11255 `Copy` data is known to be `Clone` as well.
11256
11257 Misc
11258 ----
11259
11260 * Many errors now have extended explanations that can be accessed with
11261 the `--explain` flag to `rustc`.
11262 * Many new examples have been added to the standard library
11263 documentation.
11264 * rustdoc has received a number of improvements focused on completion
11265 and polish.
11266 * Metadata was tuned, shrinking binaries [by 27%][metadata-shrink].
11267 * Much headway was made on ecosystem-wide CI, making it possible
11268 to [compare builds for breakage][ci-compare].
11269
11270
11271 [crates.io]: http://crates.io
11272 [clo]: https://github.com/rust-lang/rust/pull/24034
11273 [coh]: https://github.com/rust-lang/rfcs/blob/master/text/1023-rebalancing-coherence.md
11274 [con]: https://github.com/rust-lang/rust/pull/23875
11275 [cr]: https://github.com/rust-lang/rust/pull/23419
11276 [fe]: https://github.com/rust-lang/rust/pull/23879
11277 [23300]: https://github.com/rust-lang/rust/pull/23300
11278 [inv]: https://github.com/rust-lang/rust/pull/23938
11279 [ios]: https://github.com/rust-lang/rust/pull/24133
11280 [lex]: https://github.com/rust-lang/rfcs/blob/master/text/0879-small-base-lexing.md
11281 [lt]: https://github.com/rust-lang/rust/pull/24057
11282 [meth]: https://github.com/rust-lang/rust/pull/24056
11283 [pat]: https://github.com/rust-lang/rfcs/blob/master/text/0528-string-patterns.md
11284 [po]: https://github.com/rust-lang/rust/pull/24270
11285 [24517]: https://github.com/rust-lang/rust/pull/24517
11286 [slp]: https://github.com/rust-lang/rust/pull/23949
11287 [spl]: https://github.com/rust-lang/rfcs/blob/master/text/0979-align-splitn-with-other-languages.md
11288 [sw]: https://github.com/rust-lang/rfcs/blob/master/text/1054-str-words.md
11289 [th]: https://github.com/rust-lang/rfcs/blob/master/text/0909-move-thread-local-to-std-thread.md
11290 [send-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0458-send-improvements.md
11291 [moar-ufcs]: https://github.com/rust-lang/rust/pull/22172
11292 [prim-inherent]: https://github.com/rust-lang/rust/pull/23104
11293 [overflow]: https://github.com/rust-lang/rfcs/blob/master/text/0560-integer-overflow.md
11294 [metadata-shrink]: https://github.com/rust-lang/rust/pull/22971
11295 [self-sized]: https://github.com/rust-lang/rust/pull/22301
11296 [assoc-where]: https://github.com/rust-lang/rust/pull/22512
11297 [string-pattern]: https://github.com/rust-lang/rust/pull/22466
11298 [oibit-final]: https://github.com/rust-lang/rust/pull/21689
11299 [reflect]: https://github.com/rust-lang/rust/pull/23712
11300 [conversion]: https://github.com/rust-lang/rfcs/pull/529
11301 [num-traits]: https://github.com/rust-lang/rust/pull/23549
11302 [index-value]: https://github.com/rust-lang/rust/pull/23601
11303 [rfc769]: https://github.com/rust-lang/rfcs/pull/769
11304 [ci-compare]: https://gist.github.com/brson/a30a77836fbec057cbee
11305 [fn-inherit]: https://github.com/rust-lang/rust/pull/23282
11306 [fn-blanket]: https://github.com/rust-lang/rust/pull/23895
11307 [copy-clone]: https://github.com/rust-lang/rust/pull/23860
11308 [path-normalize]: https://github.com/rust-lang/rust/pull/23229
11309
11310
11311 Version 1.0.0-alpha.2 (2015-02-20)
11312 =====================================
11313
11314 * ~1300 changes, numerous bugfixes
11315
11316 * Highlights
11317
11318 * The various I/O modules were [overhauled][io-rfc] to reduce
11319 unnecessary abstractions and provide better interoperation with
11320 the underlying platform. The old `io` module remains temporarily
11321 at `std::old_io`.
11322 * The standard library now [participates in feature gating][feat],
11323 so use of unstable libraries now requires a `#![feature(...)]`
11324 attribute. The impact of this change is [described on the
11325 forum][feat-forum]. [RFC][feat-rfc].
11326
11327 * Language
11328
11329 * `for` loops [now operate on the `IntoIterator` trait][into],
11330 which eliminates the need to call `.iter()`, etc. to iterate
11331 over collections. There are some new subtleties to remember
11332 though regarding what sort of iterators various types yield, in
11333 particular that `for foo in bar { }` yields values from a move
11334 iterator, destroying the original collection. [RFC][into-rfc].
11335 * Objects now have [default lifetime bounds][obj], so you don't
11336 have to write `Box<Trait+'static>` when you don't care about
11337 storing references. [RFC][obj-rfc].
11338 * In types that implement `Drop`, [lifetimes must outlive the
11339 value][drop]. This will soon make it possible to safely
11340 implement `Drop` for types where `#[unsafe_destructor]` is now
11341 required. Read the [gorgeous RFC][drop-rfc] for details.
11342 * The fully qualified <T as Trait>::X syntax lets you set the Self
11343 type for a trait method or associated type. [RFC][ufcs-rfc].
11344 * References to types that implement `Deref<U>` now [automatically
11345 coerce to references][deref] to the dereferenced type `U`,
11346 e.g. `&T where T: Deref<U>` automatically coerces to `&U`. This
11347 should eliminate many unsightly uses of `&*`, as when converting
11348 from references to vectors into references to
11349 slices. [RFC][deref-rfc].
11350 * The explicit [closure kind syntax][close] (`|&:|`, `|&mut:|`,
11351 `|:|`) is obsolete and closure kind is inferred from context.
11352 * [`Self` is a keyword][Self].
11353
11354 * Libraries
11355
11356 * The `Show` and `String` formatting traits [have been
11357 renamed][fmt] to `Debug` and `Display` to more clearly reflect
11358 their related purposes. Automatically getting a string
11359 conversion to use with `format!("{:?}", something_to_debug)` is
11360 now written `#[derive(Debug)]`.
11361 * Abstract [OS-specific string types][osstr], `std::ff::{OsString,
11362 OsStr}`, provide strings in platform-specific encodings for easier
11363 interop with system APIs. [RFC][osstr-rfc].
11364 * The `boxed::into_raw` and `Box::from_raw` functions [convert
11365 between `Box<T>` and `*mut T`][boxraw], a common pattern for
11366 creating raw pointers.
11367
11368 * Tooling
11369
11370 * Certain long error messages of the form 'expected foo found bar'
11371 are now [split neatly across multiple
11372 lines][multiline]. Examples in the PR.
11373 * On Unix Rust can be [uninstalled][un] by running
11374 `/usr/local/lib/rustlib/uninstall.sh`.
11375 * The `#[rustc_on_unimplemented]` attribute, requiring the
11376 'on_unimplemented' feature, lets rustc [display custom error
11377 messages when a trait is expected to be implemented for a type
11378 but is not][onun].
11379
11380 * Misc
11381
11382 * Rust is tested against a [LALR grammar][lalr], which parses
11383 almost all the Rust files that rustc does.
11384
11385 [boxraw]: https://github.com/rust-lang/rust/pull/21318
11386 [close]: https://github.com/rust-lang/rust/pull/21843
11387 [deref]: https://github.com/rust-lang/rust/pull/21351
11388 [deref-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0241-deref-conversions.md
11389 [drop]: https://github.com/rust-lang/rust/pull/21972
11390 [drop-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0769-sound-generic-drop.md
11391 [feat]: https://github.com/rust-lang/rust/pull/21248
11392 [feat-forum]: https://users.rust-lang.org/t/psa-important-info-about-rustcs-new-feature-staging/82/5
11393 [feat-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0507-release-channels.md
11394 [fmt]: https://github.com/rust-lang/rust/pull/21457
11395 [into]: https://github.com/rust-lang/rust/pull/20790
11396 [into-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0235-collections-conventions.md#intoiterator-and-iterable
11397 [io-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0517-io-os-reform.md
11398 [lalr]: https://github.com/rust-lang/rust/pull/21452
11399 [multiline]: https://github.com/rust-lang/rust/pull/19870
11400 [obj]: https://github.com/rust-lang/rust/pull/22230
11401 [obj-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0599-default-object-bound.md
11402 [onun]: https://github.com/rust-lang/rust/pull/20889
11403 [osstr]: https://github.com/rust-lang/rust/pull/21488
11404 [osstr-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0517-io-os-reform.md
11405 [Self]: https://github.com/rust-lang/rust/pull/22158
11406 [ufcs-rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0132-ufcs.md
11407 [un]: https://github.com/rust-lang/rust/pull/22256
11408
11409
11410 Version 1.0.0-alpha (2015-01-09)
11411 ==================================
11412
11413 * ~2400 changes, numerous bugfixes
11414
11415 * Highlights
11416
11417 * The language itself is considered feature complete for 1.0,
11418 though there will be many usability improvements and bugfixes
11419 before the final release.
11420 * Nearly 50% of the public API surface of the standard library has
11421 been declared 'stable'. Those interfaces are unlikely to change
11422 before 1.0.
11423 * The long-running debate over integer types has been
11424 [settled][ints]: Rust will ship with types named `isize` and
11425 `usize`, rather than `int` and `uint`, for pointer-sized
11426 integers. Guidelines will be rolled out during the alpha cycle.
11427 * Most crates that are not `std` have been moved out of the Rust
11428 distribution into the Cargo ecosystem so they can evolve
11429 separately and don't need to be stabilized as quickly, including
11430 'time', 'getopts', 'num', 'regex', and 'term'.
11431 * Documentation continues to be expanded with more API coverage, more
11432 examples, and more in-depth explanations. The guides have been
11433 consolidated into [The Rust Programming Language][trpl].
11434 * "[Rust By Example][rbe]" is now maintained by the Rust team.
11435 * All official Rust binary installers now come with [Cargo], the
11436 Rust package manager.
11437
11438 * Language
11439
11440 * Closures have been [completely redesigned][unboxed] to be
11441 implemented in terms of traits, can now be used as generic type
11442 bounds and thus monomorphized and inlined, or via an opaque
11443 pointer (boxed) as in the old system. The new system is often
11444 referred to as 'unboxed' closures.
11445 * Traits now support [associated types][assoc], allowing families
11446 of related types to be defined together and used generically in
11447 powerful ways.
11448 * Enum variants are [namespaced by their type names][enum].
11449 * [`where` clauses][where] provide a more versatile and attractive
11450 syntax for specifying generic bounds, though the previous syntax
11451 remains valid.
11452 * Rust again picks a [fallback][fb] (either i32 or f64) for uninferred
11453 numeric types.
11454 * Rust [no longer has a runtime][rt] of any description, and only
11455 supports OS threads, not green threads.
11456 * At long last, Rust has been overhauled for 'dynamically-sized
11457 types' ([DST]), which integrates 'fat pointers' (object types,
11458 arrays, and `str`) more deeply into the type system, making it
11459 more consistent.
11460 * Rust now has a general [range syntax][range], `i..j`, `i..`, and
11461 `..j` that produce range types and which, when combined with the
11462 `Index` operator and multidispatch, leads to a convenient slice
11463 notation, `[i..j]`.
11464 * The new range syntax revealed an ambiguity in the fixed-length
11465 array syntax, so now fixed length arrays [are written `[T;
11466 N]`][arrays].
11467 * The `Copy` trait is no longer implemented automatically. Unsafe
11468 pointers no longer implement `Sync` and `Send` so types
11469 containing them don't automatically either. `Sync` and `Send`
11470 are now 'unsafe traits' so one can "forcibly" implement them via
11471 `unsafe impl` if a type confirms to the requirements for them
11472 even though the internals do not (e.g. structs containing unsafe
11473 pointers like `Arc`). These changes are intended to prevent some
11474 footguns and are collectively known as [opt-in built-in
11475 traits][oibit] (though `Sync` and `Send` will soon become pure
11476 library types unknown to the compiler).
11477 * Operator traits now take their operands [by value][ops], and
11478 comparison traits can use multidispatch to compare one type
11479 against multiple other types, allowing e.g. `String` to be
11480 compared with `&str`.
11481 * `if let` and `while let` are no longer feature-gated.
11482 * Rust has adopted a more [uniform syntax for escaping unicode
11483 characters][unicode].
11484 * `macro_rules!` [has been declared stable][mac]. Though it is a
11485 flawed system it is sufficiently popular that it must be usable
11486 for 1.0. Effort has gone into [future-proofing][mac-future] it
11487 in ways that will allow other macro systems to be developed in
11488 parallel, and won't otherwise impact the evolution of the
11489 language.
11490 * The prelude has been [pared back significantly][prelude] such
11491 that it is the minimum necessary to support the most pervasive
11492 code patterns, and through [generalized where clauses][where]
11493 many of the prelude extension traits have been consolidated.
11494 * Rust's rudimentary reflection [has been removed][refl], as it
11495 incurred too much code generation for little benefit.
11496 * [Struct variants][structvars] are no longer feature-gated.
11497 * Trait bounds can be [polymorphic over lifetimes][hrtb]. Also
11498 known as 'higher-ranked trait bounds', this crucially allows
11499 unboxed closures to work.
11500 * Macros invocations surrounded by parens or square brackets and
11501 not terminated by a semicolon are [parsed as
11502 expressions][macros], which makes expressions like `vec![1i32,
11503 2, 3].len()` work as expected.
11504 * Trait objects now implement their traits automatically, and
11505 traits that can be coerced to objects now must be [object
11506 safe][objsafe].
11507 * Automatically deriving traits is now done with `#[derive(...)]`
11508 not `#[deriving(...)]` for [consistency with other naming
11509 conventions][derive].
11510 * Importing the containing module or enum at the same time as
11511 items or variants they contain is [now done with `self` instead
11512 of `mod`][self], as in use `foo::{self, bar}`
11513 * Glob imports are no longer feature-gated.
11514 * The `box` operator and `box` patterns have been feature-gated
11515 pending a redesign. For now unique boxes should be allocated
11516 like other containers, with `Box::new`.
11517
11518 * Libraries
11519
11520 * A [series][coll1] of [efforts][coll2] to establish
11521 [conventions][coll3] for collections types has resulted in API
11522 improvements throughout the standard library.
11523 * New [APIs for error handling][err] provide ergonomic interop
11524 between error types, and [new conventions][err-conv] describe
11525 more clearly the recommended error handling strategies in Rust.
11526 * The `fail!` macro has been renamed to [`panic!`][panic] so that
11527 it is easier to discuss failure in the context of error handling
11528 without making clarifications as to whether you are referring to
11529 the 'fail' macro or failure more generally.
11530 * On Linux, `OsRng` prefers the new, more reliable `getrandom`
11531 syscall when available.
11532 * The 'serialize' crate has been renamed 'rustc-serialize' and
11533 moved out of the distribution to Cargo. Although it is widely
11534 used now, it is expected to be superseded in the near future.
11535 * The `Show` formatter, typically implemented with
11536 `#[derive(Show)]` is [now requested with the `{:?}`
11537 specifier][show] and is intended for use by all types, for uses
11538 such as `println!` debugging. The new `String` formatter must be
11539 implemented by hand, uses the `{}` specifier, and is intended
11540 for full-fidelity conversions of things that can logically be
11541 represented as strings.
11542
11543 * Tooling
11544
11545 * [Flexible target specification][flex] allows rustc's code
11546 generation to be configured to support otherwise-unsupported
11547 platforms.
11548 * Rust comes with rust-gdb and rust-lldb scripts that launch their
11549 respective debuggers with Rust-appropriate pretty-printing.
11550 * The Windows installation of Rust is distributed with the
11551 MinGW components currently required to link binaries on that
11552 platform.
11553
11554 * Misc
11555
11556 * Nullable enum optimizations have been extended to more types so
11557 that e.g. `Option<Vec<T>>` and `Option<String>` take up no more
11558 space than the inner types themselves.
11559 * Work has begun on supporting AArch64.
11560
11561 [Cargo]: https://crates.io
11562 [unboxed]: http://smallcultfollowing.com/babysteps/blog/2014/11/26/purging-proc/
11563 [enum]: https://github.com/rust-lang/rfcs/blob/master/text/0390-enum-namespacing.md
11564 [flex]: https://github.com/rust-lang/rfcs/blob/master/text/0131-target-specification.md
11565 [err]: https://github.com/rust-lang/rfcs/blob/master/text/0201-error-chaining.md
11566 [err-conv]: https://github.com/rust-lang/rfcs/blob/master/text/0236-error-conventions.md
11567 [rt]: https://github.com/rust-lang/rfcs/blob/master/text/0230-remove-runtime.md
11568 [mac]: https://github.com/rust-lang/rfcs/blob/master/text/0453-macro-reform.md
11569 [mac-future]: https://github.com/rust-lang/rfcs/pull/550
11570 [DST]: http://smallcultfollowing.com/babysteps/blog/2014/01/05/dst-take-5/
11571 [coll1]: https://github.com/rust-lang/rfcs/blob/master/text/0235-collections-conventions.md
11572 [coll2]: https://github.com/rust-lang/rfcs/blob/master/text/0509-collections-reform-part-2.md
11573 [coll3]: https://github.com/rust-lang/rfcs/blob/master/text/0216-collection-views.md
11574 [ops]: https://github.com/rust-lang/rfcs/blob/master/text/0439-cmp-ops-reform.md
11575 [prelude]: https://github.com/rust-lang/rfcs/blob/master/text/0503-prelude-stabilization.md
11576 [where]: https://github.com/rust-lang/rfcs/blob/master/text/0135-where.md
11577 [refl]: https://github.com/rust-lang/rfcs/blob/master/text/0379-remove-reflection.md
11578 [panic]: https://github.com/rust-lang/rfcs/blob/master/text/0221-panic.md
11579 [structvars]: https://github.com/rust-lang/rfcs/blob/master/text/0418-struct-variants.md
11580 [hrtb]: https://github.com/rust-lang/rfcs/blob/master/text/0387-higher-ranked-trait-bounds.md
11581 [unicode]: https://github.com/rust-lang/rfcs/blob/master/text/0446-es6-unicode-escapes.md
11582 [oibit]: https://github.com/rust-lang/rfcs/blob/master/text/0019-opt-in-builtin-traits.md
11583 [macros]: https://github.com/rust-lang/rfcs/blob/master/text/0378-expr-macros.md
11584 [range]: https://github.com/rust-lang/rfcs/blob/master/text/0439-cmp-ops-reform.md#indexing-and-slicing
11585 [arrays]: https://github.com/rust-lang/rfcs/blob/master/text/0520-new-array-repeat-syntax.md
11586 [show]: https://github.com/rust-lang/rfcs/blob/master/text/0504-show-stabilization.md
11587 [derive]: https://github.com/rust-lang/rfcs/blob/master/text/0534-deriving2derive.md
11588 [self]: https://github.com/rust-lang/rfcs/blob/master/text/0532-self-in-use.md
11589 [fb]: https://github.com/rust-lang/rfcs/blob/master/text/0212-restore-int-fallback.md
11590 [objsafe]: https://github.com/rust-lang/rfcs/blob/master/text/0255-object-safety.md
11591 [assoc]: https://github.com/rust-lang/rfcs/blob/master/text/0195-associated-items.md
11592 [ints]: https://github.com/rust-lang/rfcs/pull/544#issuecomment-68760871
11593 [trpl]: https://doc.rust-lang.org/book/index.html
11594 [rbe]: http://rustbyexample.com/
11595
11596
11597 Version 0.12.0 (2014-10-09)
11598 =============================
11599
11600 * ~1900 changes, numerous bugfixes
11601
11602 * Highlights
11603
11604 * The introductory documentation (now called The Rust Guide) has
11605 been completely rewritten, as have a number of supplementary
11606 guides.
11607 * Rust's package manager, Cargo, continues to improve and is
11608 sometimes considered to be quite awesome.
11609 * Many API's in `std` have been reviewed and updated for
11610 consistency with the in-development Rust coding
11611 guidelines. The standard library documentation tracks
11612 stabilization progress.
11613 * Minor libraries have been moved out-of-tree to the rust-lang org
11614 on GitHub: uuid, semver, glob, num, hexfloat, fourcc. They can
11615 be installed with Cargo.
11616 * Lifetime elision allows lifetime annotations to be left off of
11617 function declarations in many common scenarios.
11618 * Rust now works on 64-bit Windows.
11619
11620 * Language
11621 * Indexing can be overloaded with the `Index` and `IndexMut`
11622 traits.
11623 * The `if let` construct takes a branch only if the `let` pattern
11624 matches, currently behind the 'if_let' feature gate.
11625 * 'where clauses', a more flexible syntax for specifying trait
11626 bounds that is more aesthetic, have been added for traits and
11627 free functions. Where clauses will in the future make it
11628 possible to constrain associated types, which would be
11629 impossible with the existing syntax.
11630 * A new slicing syntax (e.g. `[0..4]`) has been introduced behind
11631 the 'slicing_syntax' feature gate, and can be overloaded with
11632 the `Slice` or `SliceMut` traits.
11633 * The syntax for matching of sub-slices has been changed to use a
11634 postfix `..` instead of prefix (.e.g. `[a, b, c..]`), for
11635 consistency with other uses of `..` and to future-proof
11636 potential additional uses of the syntax.
11637 * The syntax for matching inclusive ranges in patterns has changed
11638 from `0..3` to `0...4` to be consistent with the exclusive range
11639 syntax for slicing.
11640 * Matching of sub-slices in non-tail positions (e.g. `[a.., b,
11641 c]`) has been put behind the 'advanced_slice_patterns' feature
11642 gate and may be removed in the future.
11643 * Components of tuples and tuple structs can be extracted using
11644 the `value.0` syntax, currently behind the `tuple_indexing`
11645 feature gate.
11646 * The `#[crate_id]` attribute is no longer supported; versioning
11647 is handled by the package manager.
11648 * Renaming crate imports are now written `extern crate foo as bar`
11649 instead of `extern crate bar = foo`.
11650 * Renaming use statements are now written `use foo as bar` instead
11651 of `use bar = foo`.
11652 * `let` and `match` bindings and argument names in macros are now
11653 hygienic.
11654 * The new, more efficient, closure types ('unboxed closures') have
11655 been added under a feature gate, 'unboxed_closures'. These will
11656 soon replace the existing closure types, once higher-ranked
11657 trait lifetimes are added to the language.
11658 * `move` has been added as a keyword, for indicating closures
11659 that capture by value.
11660 * Mutation and assignment is no longer allowed in pattern guards.
11661 * Generic structs and enums can now have trait bounds.
11662 * The `Share` trait is now called `Sync` to free up the term
11663 'shared' to refer to 'shared reference' (the default reference
11664 type.
11665 * Dynamically-sized types have been mostly implemented,
11666 unifying the behavior of fat-pointer types with the rest of the
11667 type system.
11668 * As part of dynamically-sized types, the `Sized` trait has been
11669 introduced, which qualifying types implement by default, and
11670 which type parameters expect by default. To specify that a type
11671 parameter does not need to be sized, write `<Sized? T>`. Most
11672 types are `Sized`, notable exceptions being unsized arrays
11673 (`[T]`) and trait types.
11674 * Closures can return `!`, as in `|| -> !` or `proc() -> !`.
11675 * Lifetime bounds can now be applied to type parameters and object
11676 types.
11677 * The old, reference counted GC type, `Gc<T>` which was once
11678 denoted by the `@` sigil, has finally been removed. GC will be
11679 revisited in the future.
11680
11681 * Libraries
11682 * Library documentation has been improved for a number of modules.
11683 * Bit-vectors, collections::bitv has been modernized.
11684 * The url crate is deprecated in favor of
11685 http://github.com/servo/rust-url, which can be installed with
11686 Cargo.
11687 * Most I/O stream types can be cloned and subsequently closed from
11688 a different thread.
11689 * A `std::time::Duration` type has been added for use in I/O
11690 methods that rely on timers, as well as in the 'time' crate's
11691 `Timespec` arithmetic.
11692 * The runtime I/O abstraction layer that enabled the green thread
11693 scheduler to do non-thread-blocking I/O has been removed, along
11694 with the libuv-based implementation employed by the green thread
11695 scheduler. This will greatly simplify the future I/O work.
11696 * `collections::btree` has been rewritten to have a more
11697 idiomatic and efficient design.
11698
11699 * Tooling
11700 * rustdoc output now indicates the stability levels of API's.
11701 * The `--crate-name` flag can specify the name of the crate
11702 being compiled, like `#[crate_name]`.
11703 * The `-C metadata` specifies additional metadata to hash into
11704 symbol names, and `-C extra-filename` specifies additional
11705 information to put into the output filename, for use by the
11706 package manager for versioning.
11707 * debug info generation has continued to improve and should be
11708 more reliable under both gdb and lldb.
11709 * rustc has experimental support for compiling in parallel
11710 using the `-C codegen-units` flag.
11711 * rustc no longer encodes rpath information into binaries by
11712 default.
11713
11714 * Misc
11715 * Stack usage has been optimized with LLVM lifetime annotations.
11716 * Official Rust binaries on Linux are more compatible with older
11717 kernels and distributions, built on CentOS 5.10.
11718
11719
11720 Version 0.11.0 (2014-07-02)
11721 ==========================
11722
11723 * ~1700 changes, numerous bugfixes
11724
11725 * Language
11726 * ~[T] has been removed from the language. This type is superseded by
11727 the Vec<T> type.
11728 * ~str has been removed from the language. This type is superseded by
11729 the String type.
11730 * ~T has been removed from the language. This type is superseded by the
11731 Box<T> type.
11732 * @T has been removed from the language. This type is superseded by the
11733 standard library's std::gc::Gc<T> type.
11734 * Struct fields are now all private by default.
11735 * Vector indices and shift amounts are both required to be a `uint`
11736 instead of any integral type.
11737 * Byte character, byte string, and raw byte string literals are now all
11738 supported by prefixing the normal literal with a `b`.
11739 * Multiple ABIs are no longer allowed in an ABI string
11740 * The syntax for lifetimes on closures/procedures has been tweaked
11741 slightly: `<'a>|A, B|: 'b + K -> T`
11742 * Floating point modulus has been removed from the language; however it
11743 is still provided by a library implementation.
11744 * Private enum variants are now disallowed.
11745 * The `priv` keyword has been removed from the language.
11746 * A closure can no longer be invoked through a &-pointer.
11747 * The `use foo, bar, baz;` syntax has been removed from the language.
11748 * The transmute intrinsic no longer works on type parameters.
11749 * Statics now allow blocks/items in their definition.
11750 * Trait bounds are separated from objects with + instead of : now.
11751 * Objects can no longer be read while they are mutably borrowed.
11752 * The address of a static is now marked as insignificant unless the
11753 #[inline(never)] attribute is placed it.
11754 * The #[unsafe_destructor] attribute is now behind a feature gate.
11755 * Struct literals are no longer allowed in ambiguous positions such as
11756 if, while, match, and for..in.
11757 * Declaration of lang items and intrinsics are now feature-gated by
11758 default.
11759 * Integral literals no longer default to `int`, and floating point
11760 literals no longer default to `f64`. Literals must be suffixed with an
11761 appropriate type if inference cannot determine the type of the
11762 literal.
11763 * The Box<T> type is no longer implicitly borrowed to &mut T.
11764 * Procedures are now required to not capture borrowed references.
11765
11766 * Libraries
11767 * The standard library is now a "facade" over a number of underlying
11768 libraries. This means that development on the standard library should
11769 be speedier due to smaller crates, as well as a clearer line between
11770 all dependencies.
11771 * A new library, libcore, lives under the standard library's facade
11772 which is Rust's "0-assumption" library, suitable for embedded and
11773 kernel development for example.
11774 * A regex crate has been added to the standard distribution. This crate
11775 includes statically compiled regular expressions.
11776 * The unwrap/unwrap_err methods on Result require a Show bound for
11777 better error messages.
11778 * The return types of the std::comm primitives have been centralized
11779 around the Result type.
11780 * A number of I/O primitives have gained the ability to time out their
11781 operations.
11782 * A number of I/O primitives have gained the ability to close their
11783 reading/writing halves to cancel pending operations.
11784 * Reverse iterator methods have been removed in favor of `rev()` on
11785 their forward-iteration counterparts.
11786 * A bitflags! macro has been added to enable easy interop with C and
11787 management of bit flags.
11788 * A debug_assert! macro is now provided which is disabled when
11789 `--cfg ndebug` is passed to the compiler.
11790 * A graphviz crate has been added for creating .dot files.
11791 * The std::cast module has been migrated into std::mem.
11792 * The std::local_data api has been migrated from freestanding functions
11793 to being based on methods.
11794 * The Pod trait has been renamed to Copy.
11795 * jemalloc has been added as the default allocator for types.
11796 * The API for allocating memory has been changed to use proper alignment
11797 and sized deallocation
11798 * Connecting a TcpStream or binding a TcpListener is now based on a
11799 string address and a u16 port. This allows connecting to a hostname as
11800 opposed to an IP.
11801 * The Reader trait now contains a core method, read_at_least(), which
11802 correctly handles many repeated 0-length reads.
11803 * The process-spawning API is now centered around a builder-style
11804 Command struct.
11805 * The :? printing qualifier has been moved from the standard library to
11806 an external libdebug crate.
11807 * Eq/Ord have been renamed to PartialEq/PartialOrd. TotalEq/TotalOrd
11808 have been renamed to Eq/Ord.
11809 * The select/plural methods have been removed from format!. The escapes
11810 for { and } have also changed from \{ and \} to {{ and }},
11811 respectively.
11812 * The TaskBuilder API has been re-worked to be a true builder, and
11813 extension traits for spawning native/green tasks have been added.
11814
11815 * Tooling
11816 * All breaking changes to the language or libraries now have their
11817 commit message annotated with `[breaking-change]` to allow for easy
11818 discovery of breaking changes.
11819 * The compiler will now try to suggest how to annotate lifetimes if a
11820 lifetime-related error occurs.
11821 * Debug info continues to be improved greatly with general bug fixes and
11822 better support for situations like link time optimization (LTO).
11823 * Usage of syntax extensions when cross-compiling has been fixed.
11824 * Functionality equivalent to GCC & Clang's -ffunction-sections,
11825 -fdata-sections and --gc-sections has been enabled by default
11826 * The compiler is now stricter about where it will load module files
11827 from when a module is declared via `mod foo;`.
11828 * The #[phase(syntax)] attribute has been renamed to #[phase(plugin)].
11829 Syntax extensions are now discovered via a "plugin registrar" type
11830 which will be extended in the future to other various plugins.
11831 * Lints have been restructured to allow for dynamically loadable lints.
11832 * A number of rustdoc improvements:
11833 * The HTML output has been visually redesigned.
11834 * Markdown is now powered by hoedown instead of sundown.
11835 * Searching heuristics have been greatly improved.
11836 * The search index has been reduced in size by a great amount.
11837 * Cross-crate documentation via `pub use` has been greatly improved.
11838 * Primitive types are now hyperlinked and documented.
11839 * Documentation has been moved from static.rust-lang.org/doc to
11840 doc.rust-lang.org
11841 * A new sandbox, play.rust-lang.org, is available for running and
11842 sharing rust code examples on-line.
11843 * Unused attributes are now more robustly warned about.
11844 * The dead_code lint now warns about unused struct fields.
11845 * Cross-compiling to iOS is now supported.
11846 * Cross-compiling to mipsel is now supported.
11847 * Stability attributes are now inherited by default and no longer apply
11848 to intra-crate usage, only inter-crate usage.
11849 * Error message related to non-exhaustive match expressions have been
11850 greatly improved.
11851
11852
11853 Version 0.10 (2014-04-03)
11854 =========================
11855
11856 * ~1500 changes, numerous bugfixes
11857
11858 * Language
11859 * A new RFC process is now in place for modifying the language.
11860 * Patterns with `@`-pointers have been removed from the language.
11861 * Patterns with unique vectors (`~[T]`) have been removed from the
11862 language.
11863 * Patterns with unique strings (`~str`) have been removed from the
11864 language.
11865 * `@str` has been removed from the language.
11866 * `@[T]` has been removed from the language.
11867 * `@self` has been removed from the language.
11868 * `@Trait` has been removed from the language.
11869 * Headers on `~` allocations which contain `@` boxes inside the type for
11870 reference counting have been removed.
11871 * The semantics around the lifetimes of temporary expressions have changed,
11872 see #3511 and #11585 for more information.
11873 * Cross-crate syntax extensions are now possible, but feature gated. See
11874 #11151 for more information. This includes both `macro_rules!` macros as
11875 well as syntax extensions such as `format!`.
11876 * New lint modes have been added, and older ones have been turned on to be
11877 warn-by-default.
11878 * Unnecessary parentheses
11879 * Uppercase statics
11880 * Camel Case types
11881 * Uppercase variables
11882 * Publicly visible private types
11883 * `#[deriving]` with raw pointers
11884 * Unsafe functions can no longer be coerced to closures.
11885 * Various obscure macros such as `log_syntax!` are now behind feature gates.
11886 * The `#[simd]` attribute is now behind a feature gate.
11887 * Visibility is no longer allowed on `extern crate` statements, and
11888 unnecessary visibility (`priv`) is no longer allowed on `use` statements.
11889 * Trailing commas are now allowed in argument lists and tuple patterns.
11890 * The `do` keyword has been removed, it is now a reserved keyword.
11891 * Default type parameters have been implemented, but are feature gated.
11892 * Borrowed variables through captures in closures are now considered soundly.
11893 * `extern mod` is now `extern crate`
11894 * The `Freeze` trait has been removed.
11895 * The `Share` trait has been added for types that can be shared among
11896 threads.
11897 * Labels in macros are now hygienic.
11898 * Expression/statement macro invocations can be delimited with `{}` now.
11899 * Treatment of types allowed in `static mut` locations has been tweaked.
11900 * The `*` and `.` operators are now overloadable through the `Deref` and
11901 `DerefMut` traits.
11902 * `~Trait` and `proc` no longer have `Send` bounds by default.
11903 * Partial type hints are now supported with the `_` type marker.
11904 * An `Unsafe` type was introduced for interior mutability. It is now
11905 considered undefined to transmute from `&T` to `&mut T` without using the
11906 `Unsafe` type.
11907 * The #[linkage] attribute was implemented for extern statics/functions.
11908 * The inner attribute syntax has changed from `#[foo];` to `#![foo]`.
11909 * `Pod` was renamed to `Copy`.
11910
11911 * Libraries
11912 * The `libextra` library has been removed. It has now been decomposed into
11913 component libraries with smaller and more focused nuggets of
11914 functionality. The full list of libraries can be found on the
11915 documentation index page.
11916 * std: `std::condition` has been removed. All I/O errors are now propagated
11917 through the `Result` type. In order to assist with error handling, a
11918 `try!` macro for unwrapping errors with an early return and a lint for
11919 unused results has been added. See #12039 for more information.
11920 * std: The `vec` module has been renamed to `slice`.
11921 * std: A new vector type, `Vec<T>`, has been added in preparation for DST.
11922 This will become the only growable vector in the future.
11923 * std: `std::io` now has more public re-exports. Types such as `BufferedReader`
11924 are now found at `std::io::BufferedReader` instead of
11925 `std::io::buffered::BufferedReader`.
11926 * std: `print` and `println` are no longer in the prelude, the `print!` and
11927 `println!` macros are intended to be used instead.
11928 * std: `Rc` now has a `Weak` pointer for breaking cycles, and it no longer
11929 attempts to statically prevent cycles.
11930 * std: The standard distribution is adopting the policy of pushing failure
11931 to the user rather than failing in libraries. Many functions (such as
11932 `slice::last()`) now return `Option<T>` instead of `T` + failing.
11933 * std: `fmt::Default` has been renamed to `fmt::Show`, and it now has a new
11934 deriving mode: `#[deriving(Show)]`.
11935 * std: `ToStr` is now implemented for all types implementing `Show`.
11936 * std: The formatting trait methods now take `&self` instead of `&T`
11937 * std: The `invert()` method on iterators has been renamed to `rev()`
11938 * std: `std::num` has seen a reduction in the genericity of its traits,
11939 consolidating functionality into a few core traits.
11940 * std: Backtraces are now printed on task failure if the environment
11941 variable `RUST_BACKTRACE` is present.
11942 * std: Naming conventions for iterators have been standardized. More details
11943 can be found on the wiki's style guide.
11944 * std: `eof()` has been removed from the `Reader` trait. Specific types may
11945 still implement the function.
11946 * std: Networking types are now cloneable to allow simultaneous reads/writes.
11947 * std: `assert_approx_eq!` has been removed
11948 * std: The `e` and `E` formatting specifiers for floats have been added to
11949 print them in exponential notation.
11950 * std: The `Times` trait has been removed
11951 * std: Indications of variance and opting out of builtin bounds is done
11952 through marker types in `std::kinds::marker` now
11953 * std: `hash` has been rewritten, `IterBytes` has been removed, and
11954 `#[deriving(Hash)]` is now possible.
11955 * std: `SharedChan` has been removed, `Sender` is now cloneable.
11956 * std: `Chan` and `Port` were renamed to `Sender` and `Receiver`.
11957 * std: `Chan::new` is now `channel()`.
11958 * std: A new synchronous channel type has been implemented.
11959 * std: A `select!` macro is now provided for selecting over `Receiver`s.
11960 * std: `hashmap` and `trie` have been moved to `libcollections`
11961 * std: `run` has been rolled into `io::process`
11962 * std: `assert_eq!` now uses `{}` instead of `{:?}`
11963 * std: The equality and comparison traits have seen some reorganization.
11964 * std: `rand` has moved to `librand`.
11965 * std: `to_{lower,upper}case` has been implemented for `char`.
11966 * std: Logging has been moved to `liblog`.
11967 * collections: `HashMap` has been rewritten for higher performance and less
11968 memory usage.
11969 * native: The default runtime is now `libnative`. If `libgreen` is desired,
11970 it can be booted manually. The runtime guide has more information and
11971 examples.
11972 * native: All I/O functionality except signals has been implemented.
11973 * green: Task spawning with `libgreen` has been optimized with stack caching
11974 and various trimming of code.
11975 * green: Tasks spawned by `libgreen` now have an unmapped guard page.
11976 * sync: The `extra::sync` module has been updated to modern rust (and moved
11977 to the `sync` library), tweaking and improving various interfaces while
11978 dropping redundant functionality.
11979 * sync: A new `Barrier` type has been added to the `sync` library.
11980 * sync: An efficient mutex for native and green tasks has been implemented.
11981 * serialize: The `base64` module has seen some improvement. It treats
11982 newlines better, has non-string error values, and has seen general
11983 cleanup.
11984 * fourcc: A `fourcc!` macro was introduced
11985 * hexfloat: A `hexfloat!` macro was implemented for specifying floats via a
11986 hexadecimal literal.
11987
11988 * Tooling
11989 * `rustpkg` has been deprecated and removed from the main repository. Its
11990 replacement, `cargo`, is under development.
11991 * Nightly builds of rust are now available
11992 * The memory usage of rustc has been improved many times throughout this
11993 release cycle.
11994 * The build process supports disabling rpath support for the rustc binary
11995 itself.
11996 * Code generation has improved in some cases, giving more information to the
11997 LLVM optimization passes to enable more extensive optimizations.
11998 * Debuginfo compatibility with lldb on OSX has been restored.
11999 * The master branch is now gated on an android bot, making building for
12000 android much more reliable.
12001 * Output flags have been centralized into one `--emit` flag.
12002 * Crate type flags have been centralized into one `--crate-type` flag.
12003 * Codegen flags have been consolidated behind a `-C` flag.
12004 * Linking against outdated crates now has improved error messages.
12005 * Error messages with lifetimes will often suggest how to annotate the
12006 function to fix the error.
12007 * Many more types are documented in the standard library, and new guides
12008 were written.
12009 * Many `rustdoc` improvements:
12010 * code blocks are syntax highlighted.
12011 * render standalone markdown files.
12012 * the --test flag tests all code blocks by default.
12013 * exported macros are displayed.
12014 * re-exported types have their documentation inlined at the location of the
12015 first re-export.
12016 * search works across crates that have been rendered to the same output
12017 directory.
12018
12019
12020 Version 0.9 (2014-01-09)
12021 ==========================
12022
12023 * ~1800 changes, numerous bugfixes
12024
12025 * Language
12026 * The `float` type has been removed. Use `f32` or `f64` instead.
12027 * A new facility for enabling experimental features (feature gating) has
12028 been added, using the crate-level `#[feature(foo)]` attribute.
12029 * Managed boxes (@) are now behind a feature gate
12030 (`#[feature(managed_boxes)]`) in preparation for future removal. Use the
12031 standard library's `Gc` or `Rc` types instead.
12032 * `@mut` has been removed. Use `std::cell::{Cell, RefCell}` instead.
12033 * Jumping back to the top of a loop is now done with `continue` instead of
12034 `loop`.
12035 * Strings can no longer be mutated through index assignment.
12036 * Raw strings can be created via the basic `r"foo"` syntax or with matched
12037 hash delimiters, as in `r###"foo"###`.
12038 * `~fn` is now written `proc (args) -> retval { ... }` and may only be
12039 called once.
12040 * The `&fn` type is now written `|args| -> ret` to match the literal form.
12041 * `@fn`s have been removed.
12042 * `do` only works with procs in order to make it obvious what the cost
12043 of `do` is.
12044 * Single-element tuple-like structs can no longer be dereferenced to
12045 obtain the inner value. A more comprehensive solution for overloading
12046 the dereference operator will be provided in the future.
12047 * The `#[link(...)]` attribute has been replaced with
12048 `#[crate_id = "name#vers"]`.
12049 * Empty `impl`s must be terminated with empty braces and may not be
12050 terminated with a semicolon.
12051 * Keywords are no longer allowed as lifetime names; the `self` lifetime
12052 no longer has any special meaning.
12053 * The old `fmt!` string formatting macro has been removed.
12054 * `printf!` and `printfln!` (old-style formatting) removed in favor of
12055 `print!` and `println!`.
12056 * `mut` works in patterns now, as in `let (mut x, y) = (1, 2);`.
12057 * The `extern mod foo (name = "bar")` syntax has been removed. Use
12058 `extern mod foo = "bar"` instead.
12059 * New reserved keywords: `alignof`, `offsetof`, `sizeof`.
12060 * Macros can have attributes.
12061 * Macros can expand to items with attributes.
12062 * Macros can expand to multiple items.
12063 * The `asm!` macro is feature-gated (`#[feature(asm)]`).
12064 * Comments may be nested.
12065 * Values automatically coerce to trait objects they implement, without
12066 an explicit `as`.
12067 * Enum discriminants are no longer an entire word but as small as needed to
12068 contain all the variants. The `repr` attribute can be used to override
12069 the discriminant size, as in `#[repr(int)]` for integer-sized, and
12070 `#[repr(C)]` to match C enums.
12071 * Non-string literals are not allowed in attributes (they never worked).
12072 * The FFI now supports variadic functions.
12073 * Octal numeric literals, as in `0o7777`.
12074 * The `concat!` syntax extension performs compile-time string concatenation.
12075 * The `#[fixed_stack_segment]` and `#[rust_stack]` attributes have been
12076 removed as Rust no longer uses segmented stacks.
12077 * Non-ascii identifiers are feature-gated (`#[feature(non_ascii_idents)]`).
12078 * Ignoring all fields of an enum variant or tuple-struct is done with `..`,
12079 not `*`; ignoring remaining fields of a struct is also done with `..`,
12080 not `_`; ignoring a slice of a vector is done with `..`, not `.._`.
12081 * `rustc` supports the "win64" calling convention via `extern "win64"`.
12082 * `rustc` supports the "system" calling convention, which defaults to the
12083 preferred convention for the target platform, "stdcall" on 32-bit Windows,
12084 "C" elsewhere.
12085 * The `type_overflow` lint (default: warn) checks literals for overflow.
12086 * The `unsafe_block` lint (default: allow) checks for usage of `unsafe`.
12087 * The `attribute_usage` lint (default: warn) warns about unknown
12088 attributes.
12089 * The `unknown_features` lint (default: warn) warns about unknown
12090 feature gates.
12091 * The `dead_code` lint (default: warn) checks for dead code.
12092 * Rust libraries can be linked statically to one another
12093 * `#[link_args]` is behind the `link_args` feature gate.
12094 * Native libraries are now linked with `#[link(name = "foo")]`
12095 * Native libraries can be statically linked to a rust crate
12096 (`#[link(name = "foo", kind = "static")]`).
12097 * Native OS X frameworks are now officially supported
12098 (`#[link(name = "foo", kind = "framework")]`).
12099 * The `#[thread_local]` attribute creates thread-local (not task-local)
12100 variables. Currently behind the `thread_local` feature gate.
12101 * The `return` keyword may be used in closures.
12102 * Types that can be copied via a memcpy implement the `Pod` kind.
12103 * The `cfg` attribute can now be used on struct fields and enum variants.
12104
12105 * Libraries
12106 * std: The `option` and `result` API's have been overhauled to make them
12107 simpler, more consistent, and more composable.
12108 * std: The entire `std::io` module has been replaced with one that is
12109 more comprehensive and that properly interfaces with the underlying
12110 scheduler. File, TCP, UDP, Unix sockets, pipes, and timers are all
12111 implemented.
12112 * std: `io::util` contains a number of useful implementations of
12113 `Reader` and `Writer`, including `NullReader`, `NullWriter`,
12114 `ZeroReader`, `TeeReader`.
12115 * std: The reference counted pointer type `extra::rc` moved into std.
12116 * std: The `Gc` type in the `gc` module will replace `@` (it is currently
12117 just a wrapper around it).
12118 * std: The `Either` type has been removed.
12119 * std: `fmt::Default` can be implemented for any type to provide default
12120 formatting to the `format!` macro, as in `format!("{}", myfoo)`.
12121 * std: The `rand` API continues to be tweaked.
12122 * std: The `rust_begin_unwind` function, useful for inserting breakpoints
12123 on failure in gdb, is now named `rust_fail`.
12124 * std: The `each_key` and `each_value` methods on `HashMap` have been
12125 replaced by the `keys` and `values` iterators.
12126 * std: Functions dealing with type size and alignment have moved from the
12127 `sys` module to the `mem` module.
12128 * std: The `path` module was written and API changed.
12129 * std: `str::from_utf8` has been changed to cast instead of allocate.
12130 * std: `starts_with` and `ends_with` methods added to vectors via the
12131 `ImmutableEqVector` trait, which is in the prelude.
12132 * std: Vectors can be indexed with the `get_opt` method, which returns `None`
12133 if the index is out of bounds.
12134 * std: Task failure no longer propagates between tasks, as the model was
12135 complex, expensive, and incompatible with thread-based tasks.
12136 * std: The `Any` type can be used for dynamic typing.
12137 * std: `~Any` can be passed to the `fail!` macro and retrieved via
12138 `task::try`.
12139 * std: Methods that produce iterators generally do not have an `_iter`
12140 suffix now.
12141 * std: `cell::Cell` and `cell::RefCell` can be used to introduce mutability
12142 roots (mutable fields, etc.). Use instead of e.g. `@mut`.
12143 * std: `util::ignore` renamed to `prelude::drop`.
12144 * std: Slices have `sort` and `sort_by` methods via the `MutableVector`
12145 trait.
12146 * std: `vec::raw` has seen a lot of cleanup and API changes.
12147 * std: The standard library no longer includes any C++ code, and very
12148 minimal C, eliminating the dependency on libstdc++.
12149 * std: Runtime scheduling and I/O functionality has been factored out into
12150 extensible interfaces and is now implemented by two different crates:
12151 libnative, for native threading and I/O; and libgreen, for green threading
12152 and I/O. This paves the way for using the standard library in more limited
12153 embedded environments.
12154 * std: The `comm` module has been rewritten to be much faster, have a
12155 simpler, more consistent API, and to work for both native and green
12156 threading.
12157 * std: All libuv dependencies have been moved into the rustuv crate.
12158 * native: New implementations of runtime scheduling on top of OS threads.
12159 * native: New native implementations of TCP, UDP, file I/O, process spawning,
12160 and other I/O.
12161 * green: The green thread scheduler and message passing types are almost
12162 entirely lock-free.
12163 * extra: The `flatpipes` module had bitrotted and was removed.
12164 * extra: All crypto functions have been removed and Rust now has a policy of
12165 not reimplementing crypto in the standard library. In the future crypto
12166 will be provided by external crates with bindings to established libraries.
12167 * extra: `c_vec` has been modernized.
12168 * extra: The `sort` module has been removed. Use the `sort` method on
12169 mutable slices.
12170
12171 * Tooling
12172 * The `rust` and `rusti` commands have been removed, due to lack of
12173 maintenance.
12174 * `rustdoc` was completely rewritten.
12175 * `rustdoc` can test code examples in documentation.
12176 * `rustpkg` can test packages with the argument, 'test'.
12177 * `rustpkg` supports arbitrary dependencies, including C libraries.
12178 * `rustc`'s support for generating debug info is improved again.
12179 * `rustc` has better error reporting for unbalanced delimiters.
12180 * `rustc`'s JIT support was removed due to bitrot.
12181 * Executables and static libraries can be built with LTO (-Z lto)
12182 * `rustc` adds a `--dep-info` flag for communicating dependencies to
12183 build tools.
12184
12185
12186 Version 0.8 (2013-09-26)
12187 ============================
12188
12189 * ~2200 changes, numerous bugfixes
12190
12191 * Language
12192 * The `for` loop syntax has changed to work with the `Iterator` trait.
12193 * At long last, unwinding works on Windows.
12194 * Default methods are ready for use.
12195 * Many trait inheritance bugs fixed.
12196 * Owned and borrowed trait objects work more reliably.
12197 * `copy` is no longer a keyword. It has been replaced by the `Clone` trait.
12198 * rustc can omit emission of code for the `debug!` macro if it is passed
12199 `--cfg ndebug`
12200 * mod.rs is now "blessed". When loading `mod foo;`, rustc will now look
12201 for foo.rs, then foo/mod.rs, and will generate an error when both are
12202 present.
12203 * Strings no longer contain trailing nulls. The new `std::c_str` module
12204 provides new mechanisms for converting to C strings.
12205 * The type of foreign functions is now `extern "C" fn` instead of `*u8'.
12206 * The FFI has been overhauled such that foreign functions are called directly,
12207 instead of through a stack-switching wrapper.
12208 * Calling a foreign function must be done through a Rust function with the
12209 `#[fixed_stack_segment]` attribute.
12210 * The `externfn!` macro can be used to declare both a foreign function and
12211 a `#[fixed_stack_segment]` wrapper at once.
12212 * `pub` and `priv` modifiers on `extern` blocks are no longer parsed.
12213 * `unsafe` is no longer allowed on extern fns - they are all unsafe.
12214 * `priv` is disallowed everywhere except for struct fields and enum variants.
12215 * `&T` (besides `&'static T`) is no longer allowed in `@T`.
12216 * `ref` bindings in irrefutable patterns work correctly now.
12217 * `char` is now prevented from containing invalid code points.
12218 * Casting to `bool` is no longer allowed.
12219 * `\0` is now accepted as an escape in chars and strings.
12220 * `yield` is a reserved keyword.
12221 * `typeof` is a reserved keyword.
12222 * Crates may be imported by URL with `extern mod foo = "url";`.
12223 * Explicit enum discriminants may be given as uints as in `enum E { V = 0u }`
12224 * Static vectors can be initialized with repeating elements,
12225 e.g. `static foo: [u8, .. 100]: [0, .. 100];`.
12226 * Static structs can be initialized with functional record update,
12227 e.g. `static foo: Foo = Foo { a: 5, .. bar };`.
12228 * `cfg!` can be used to conditionally execute code based on the crate
12229 configuration, similarly to `#[cfg(...)]`.
12230 * The `unnecessary_qualification` lint detects unneeded module
12231 prefixes (default: allow).
12232 * Arithmetic operations have been implemented on the SIMD types in
12233 `std::unstable::simd`.
12234 * Exchange allocation headers were removed, reducing memory usage.
12235 * `format!` implements a completely new, extensible, and higher-performance
12236 string formatting system. It will replace `fmt!`.
12237 * `print!` and `println!` write formatted strings (using the `format!`
12238 extension) to stdout.
12239 * `write!` and `writeln!` write formatted strings (using the `format!`
12240 extension) to the new Writers in `std::rt::io`.
12241 * The library section in which a function or static is placed may
12242 be specified with `#[link_section = "..."]`.
12243 * The `proto!` syntax extension for defining bounded message protocols
12244 was removed.
12245 * `macro_rules!` is hygienic for `let` declarations.
12246 * The `#[export_name]` attribute specifies the name of a symbol.
12247 * `unreachable!` can be used to indicate unreachable code, and fails
12248 if executed.
12249
12250 * Libraries
12251 * std: Transitioned to the new runtime, written in Rust.
12252 * std: Added an experimental I/O library, `rt::io`, based on the new
12253 runtime.
12254 * std: A new generic `range` function was added to the prelude, replacing
12255 `uint::range` and friends.
12256 * std: `range_rev` no longer exists. Since range is an iterator it can be
12257 reversed with `range(lo, hi).invert()`.
12258 * std: The `chain` method on option renamed to `and_then`; `unwrap_or_default`
12259 renamed to `unwrap_or`.
12260 * std: The `iterator` module was renamed to `iter`.
12261 * std: Integral types now support the `checked_add`, `checked_sub`, and
12262 `checked_mul` operations for detecting overflow.
12263 * std: Many methods in `str`, `vec`, `option, `result` were renamed for
12264 consistency.
12265 * std: Methods are standardizing on conventions for casting methods:
12266 `to_foo` for copying, `into_foo` for moving, `as_foo` for temporary
12267 and cheap casts.
12268 * std: The `CString` type in `c_str` provides new ways to convert to and
12269 from C strings.
12270 * std: `DoubleEndedIterator` can yield elements in two directions.
12271 * std: The `mut_split` method on vectors partitions an `&mut [T]` into
12272 two splices.
12273 * std: `str::from_bytes` renamed to `str::from_utf8`.
12274 * std: `pop_opt` and `shift_opt` methods added to vectors.
12275 * std: The task-local data interface no longer uses @, and keys are
12276 no longer function pointers.
12277 * std: The `swap_unwrap` method of `Option` renamed to `take_unwrap`.
12278 * std: Added `SharedPort` to `comm`.
12279 * std: `Eq` has a default method for `ne`; only `eq` is required
12280 in implementations.
12281 * std: `Ord` has default methods for `le`, `gt` and `ge`; only `lt`
12282 is required in implementations.
12283 * std: `is_utf8` performance is improved, impacting many string functions.
12284 * std: `os::MemoryMap` provides cross-platform mmap.
12285 * std: `ptr::offset` is now unsafe, but also more optimized. Offsets that
12286 are not 'in-bounds' are considered undefined.
12287 * std: Many freestanding functions in `vec` removed in favor of methods.
12288 * std: Many freestanding functions on scalar types removed in favor of
12289 methods.
12290 * std: Many options to task builders were removed since they don't make
12291 sense in the new scheduler design.
12292 * std: More containers implement `FromIterator` so can be created by the
12293 `collect` method.
12294 * std: More complete atomic types in `unstable::atomics`.
12295 * std: `comm::PortSet` removed.
12296 * std: Mutating methods in the `Set` and `Map` traits have been moved into
12297 the `MutableSet` and `MutableMap` traits. `Container::is_empty`,
12298 `Map::contains_key`, `MutableMap::insert`, and `MutableMap::remove` have
12299 default implementations.
12300 * std: Various `from_str` functions were removed in favor of a generic
12301 `from_str` which is available in the prelude.
12302 * std: `util::unreachable` removed in favor of the `unreachable!` macro.
12303 * extra: `dlist`, the doubly-linked list was modernized.
12304 * extra: Added a `hex` module with `ToHex` and `FromHex` traits.
12305 * extra: Added `glob` module, replacing `std::os::glob`.
12306 * extra: `rope` was removed.
12307 * extra: `deque` was renamed to `ringbuf`. `RingBuf` implements `Deque`.
12308 * extra: `net`, and `timer` were removed. The experimental replacements
12309 are `std::rt::io::net` and `std::rt::io::timer`.
12310 * extra: Iterators implemented for `SmallIntMap`.
12311 * extra: Iterators implemented for `Bitv` and `BitvSet`.
12312 * extra: `SmallIntSet` removed. Use `BitvSet`.
12313 * extra: Performance of JSON parsing greatly improved.
12314 * extra: `semver` updated to SemVer 2.0.0.
12315 * extra: `term` handles more terminals correctly.
12316 * extra: `dbg` module removed.
12317 * extra: `par` module removed.
12318 * extra: `future` was cleaned up, with some method renames.
12319 * extra: Most free functions in `getopts` were converted to methods.
12320
12321 * Other
12322 * rustc's debug info generation (`-Z debug-info`) is greatly improved.
12323 * rustc accepts `--target-cpu` to compile to a specific CPU architecture,
12324 similarly to gcc's `--march` flag.
12325 * rustc's performance compiling small crates is much better.
12326 * rustpkg has received many improvements.
12327 * rustpkg supports git tags as package IDs.
12328 * rustpkg builds into target-specific directories so it can be used for
12329 cross-compiling.
12330 * The number of concurrent test tasks is controlled by the environment
12331 variable RUST_TEST_TASKS.
12332 * The test harness can now report metrics for benchmarks.
12333 * All tools have man pages.
12334 * Programs compiled with `--test` now support the `-h` and `--help` flags.
12335 * The runtime uses jemalloc for allocations.
12336 * Segmented stacks are temporarily disabled as part of the transition to
12337 the new runtime. Stack overflows are possible!
12338 * A new documentation backend, rustdoc_ng, is available for use. It is
12339 still invoked through the normal `rustdoc` command.
12340
12341
12342 Version 0.7 (2013-07-03)
12343 =======================
12344
12345 * ~2000 changes, numerous bugfixes
12346
12347 * Language
12348 * `impl`s no longer accept a visibility qualifier. Put them on methods
12349 instead.
12350 * The borrow checker has been rewritten with flow-sensitivity, fixing
12351 many bugs and inconveniences.
12352 * The `self` parameter no longer implicitly means `&'self self`,
12353 and can be explicitly marked with a lifetime.
12354 * Overloadable compound operators (`+=`, etc.) have been temporarily
12355 removed due to bugs.
12356 * The `for` loop protocol now requires `for`-iterators to return `bool`
12357 so they compose better.
12358 * The `Durable` trait is replaced with the `'static` bounds.
12359 * Trait default methods work more often.
12360 * Structs with the `#[packed]` attribute have byte alignment and
12361 no padding between fields.
12362 * Type parameters bound by `Copy` must now be copied explicitly with
12363 the `copy` keyword.
12364 * It is now illegal to move out of a dereferenced unsafe pointer.
12365 * `Option<~T>` is now represented as a nullable pointer.
12366 * `@mut` does dynamic borrow checks correctly.
12367 * The `main` function is only detected at the topmost level of the crate.
12368 The `#[main]` attribute is still valid anywhere.
12369 * Struct fields may no longer be mutable. Use inherited mutability.
12370 * The `#[no_send]` attribute makes a type that would otherwise be
12371 `Send`, not.
12372 * The `#[no_freeze]` attribute makes a type that would otherwise be
12373 `Freeze`, not.
12374 * Unbounded recursion will abort the process after reaching the limit
12375 specified by the `RUST_MAX_STACK` environment variable (default: 1GB).
12376 * The `vecs_implicitly_copyable` lint mode has been removed. Vectors
12377 are never implicitly copyable.
12378 * `#[static_assert]` makes compile-time assertions about static bools.
12379 * At long last, 'argument modes' no longer exist.
12380 * The rarely used `use mod` statement no longer exists.
12381
12382 * Syntax extensions
12383 * `fail!` and `assert!` accept `~str`, `&'static str` or `fmt!`-style
12384 argument list.
12385 * `Encodable`, `Decodable`, `Ord`, `TotalOrd`, `TotalEq`, `DeepClone`,
12386 `Rand`, `Zero` and `ToStr` can all be automatically derived with
12387 `#[deriving(...)]`.
12388 * The `bytes!` macro returns a vector of bytes for string, u8, char,
12389 and unsuffixed integer literals.
12390
12391 * Libraries
12392 * The `core` crate was renamed to `std`.
12393 * The `std` crate was renamed to `extra`.
12394 * More and improved documentation.
12395 * std: `iterator` module for external iterator objects.
12396 * Many old-style (internal, higher-order function) iterators replaced by
12397 implementations of `Iterator`.
12398 * std: Many old internal vector and string iterators,
12399 incl. `any`, `all`. removed.
12400 * std: The `finalize` method of `Drop` renamed to `drop`.
12401 * std: The `drop` method now takes `&mut self` instead of `&self`.
12402 * std: The prelude no longer re-exports any modules, only types and traits.
12403 * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
12404 `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
12405 * std: New numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
12406 `Algebraic`, `Trigonometric`, `Exponential`, `Primitive`.
12407 * std: Tuple traits and accessors defined for up to 12-tuples, e.g.
12408 `(0, 1, 2).n2()` or `(0, 1, 2).n2_ref()`.
12409 * std: Many types implement `Clone`.
12410 * std: `path` type renamed to `Path`.
12411 * std: `mut` module and `Mut` type removed.
12412 * std: Many standalone functions removed in favor of methods and iterators
12413 in `vec`, `str`. In the future methods will also work as functions.
12414 * std: `reinterpret_cast` removed. Use `transmute`.
12415 * std: ascii string handling in `std::ascii`.
12416 * std: `Rand` is implemented for ~/@.
12417 * std: `run` module for spawning processes overhauled.
12418 * std: Various atomic types added to `unstable::atomic`.
12419 * std: Various types implement `Zero`.
12420 * std: `LinearMap` and `LinearSet` renamed to `HashMap` and `HashSet`.
12421 * std: Borrowed pointer functions moved from `ptr` to `borrow`.
12422 * std: Added `os::mkdir_recursive`.
12423 * std: Added `os::glob` function performs filesystems globs.
12424 * std: `FuzzyEq` renamed to `ApproxEq`.
12425 * std: `Map` now defines `pop` and `swap` methods.
12426 * std: `Cell` constructors converted to static methods.
12427 * extra: `rc` module adds the reference counted pointers, `Rc` and `RcMut`.
12428 * extra: `flate` module moved from `std` to `extra`.
12429 * extra: `fileinput` module for iterating over a series of files.
12430 * extra: `Complex` number type and `complex` module.
12431 * extra: `Rational` number type and `rational` module.
12432 * extra: `BigInt`, `BigUint` implement numeric and comparison traits.
12433 * extra: `term` uses terminfo now, is more correct.
12434 * extra: `arc` functions converted to methods.
12435 * extra: Implementation of fixed output size variations of SHA-2.
12436
12437 * Tooling
12438 * `unused_variables` lint mode for unused variables (default: warn).
12439 * `unused_unsafe` lint mode for detecting unnecessary `unsafe` blocks
12440 (default: warn).
12441 * `unused_mut` lint mode for identifying unused `mut` qualifiers
12442 (default: warn).
12443 * `dead_assignment` lint mode for unread variables (default: warn).
12444 * `unnecessary_allocation` lint mode detects some heap allocations that are
12445 immediately borrowed so could be written without allocating (default: warn).
12446 * `missing_doc` lint mode (default: allow).
12447 * `unreachable_code` lint mode (default: warn).
12448 * The `rusti` command has been rewritten and a number of bugs addressed.
12449 * rustc outputs in color on more terminals.
12450 * rustc accepts a `--link-args` flag to pass arguments to the linker.
12451 * rustc accepts a `-Z print-link-args` flag for debugging linkage.
12452 * Compiling with `-g` will make the binary record information about
12453 dynamic borrowcheck failures for debugging.
12454 * rustdoc has a nicer stylesheet.
12455 * Various improvements to rustdoc.
12456 * Improvements to rustpkg (see the detailed release notes).
12457
12458
12459 Version 0.6 (2013-04-03)
12460 ========================
12461
12462 * ~2100 changes, numerous bugfixes
12463
12464 * Syntax changes
12465 * The self type parameter in traits is now spelled `Self`
12466 * The `self` parameter in trait and impl methods must now be explicitly
12467 named (for example: `fn f(&self) { }`). Implicit self is deprecated.
12468 * Static methods no longer require the `static` keyword and instead
12469 are distinguished by the lack of a `self` parameter
12470 * Replaced the `Durable` trait with the `'static` lifetime
12471 * The old closure type syntax with the trailing sigil has been
12472 removed in favor of the more consistent leading sigil
12473 * `super` is a keyword, and may be prefixed to paths
12474 * Trait bounds are separated with `+` instead of whitespace
12475 * Traits are implemented with `impl Trait for Type`
12476 instead of `impl Type: Trait`
12477 * Lifetime syntax is now `&'l foo` instead of `&l/foo`
12478 * The `export` keyword has finally been removed
12479 * The `move` keyword has been removed (see "Semantic changes")
12480 * The interior mutability qualifier on vectors, `[mut T]`, has been
12481 removed. Use `&mut [T]`, etc.
12482 * `mut` is no longer valid in `~mut T`. Use inherited mutability
12483 * `fail` is no longer a keyword. Use `fail!()`
12484 * `assert` is no longer a keyword. Use `assert!()`
12485 * `log` is no longer a keyword. use `debug!`, etc.
12486 * 1-tuples may be represented as `(T,)`
12487 * Struct fields may no longer be `mut`. Use inherited mutability,
12488 `@mut T`, `core::mut` or `core::cell`
12489 * `extern mod { ... }` is no longer valid syntax for foreign
12490 function modules. Use extern blocks: `extern { ... }`
12491 * Newtype enums removed. Use tuple-structs.
12492 * Trait implementations no longer support visibility modifiers
12493 * Pattern matching over vectors improved and expanded
12494 * `const` renamed to `static` to correspond to lifetime name,
12495 and make room for future `static mut` unsafe mutable globals.
12496 * Replaced `#[deriving_eq]` with `#[deriving(Eq)]`, etc.
12497 * `Clone` implementations can be automatically generated with
12498 `#[deriving(Clone)]`
12499 * Casts to traits must use a pointer sigil, e.g. `@foo as @Bar`
12500 instead of `foo as Bar`.
12501 * Fixed length vector types are now written as `[int, .. 3]`
12502 instead of `[int * 3]`.
12503 * Fixed length vector types can express the length as a constant
12504 expression. (ex: `[int, .. GL_BUFFER_SIZE - 2]`)
12505
12506 * Semantic changes
12507 * Types with owned pointers or custom destructors move by default,
12508 eliminating the `move` keyword
12509 * All foreign functions are considered unsafe
12510 * &mut is now unaliasable
12511 * Writes to borrowed @mut pointers are prevented dynamically
12512 * () has size 0
12513 * The name of the main function can be customized using #[main]
12514 * The default type of an inferred closure is &fn instead of @fn
12515 * `use` statements may no longer be "chained" - they cannot import
12516 identifiers imported by previous `use` statements
12517 * `use` statements are crate relative, importing from the "top"
12518 of the crate by default. Paths may be prefixed with `super::`
12519 or `self::` to change the search behavior.
12520 * Method visibility is inherited from the implementation declaration
12521 * Structural records have been removed
12522 * Many more types can be used in static items, including enums
12523 'static-lifetime pointers and vectors
12524 * Pattern matching over vectors improved and expanded
12525 * Typechecking of closure types has been overhauled to
12526 improve inference and eliminate unsoundness
12527 * Macros leave scope at the end of modules, unless that module is
12528 tagged with #[macro_escape]
12529
12530 * Libraries
12531 * Added big integers to `std::bigint`
12532 * Removed `core::oldcomm` module
12533 * Added pipe-based `core::comm` module
12534 * Numeric traits have been reorganized under `core::num`
12535 * `vec::slice` finally returns a slice
12536 * `debug!` and friends don't require a format string, e.g. `debug!(Foo)`
12537 * Containers reorganized around traits in `core::container`
12538 * `core::dvec` removed, `~[T]` is a drop-in replacement
12539 * `core::send_map` renamed to `core::hashmap`
12540 * `std::map` removed; replaced with `core::hashmap`
12541 * `std::treemap` reimplemented as an owned balanced tree
12542 * `std::deque` and `std::smallintmap` reimplemented as owned containers
12543 * `core::trie` added as a fast ordered map for integer keys
12544 * Set types added to `core::hashmap`, `core::trie` and `std::treemap`
12545 * `Ord` split into `Ord` and `TotalOrd`. `Ord` is still used to
12546 overload the comparison operators, whereas `TotalOrd` is used
12547 by certain container types
12548
12549 * Other
12550 * Replaced the 'cargo' package manager with 'rustpkg'
12551 * Added all-purpose 'rust' tool
12552 * `rustc --test` now supports benchmarks with the `#[bench]` attribute
12553 * rustc now *attempts* to offer spelling suggestions
12554 * Improved support for ARM and Android
12555 * Preliminary MIPS backend
12556 * Improved foreign function ABI implementation for x86, x86_64
12557 * Various memory usage improvements
12558 * Rust code may be embedded in foreign code under limited circumstances
12559 * Inline assembler supported by new asm!() syntax extension.
12560
12561
12562 Version 0.5 (2012-12-21)
12563 ===========================
12564
12565 * ~900 changes, numerous bugfixes
12566
12567 * Syntax changes
12568 * Removed `<-` move operator
12569 * Completed the transition from the `#fmt` extension syntax to `fmt!`
12570 * Removed old fixed length vector syntax - `[T]/N`
12571 * New token-based quasi-quoters, `quote_tokens!`, `quote_expr!`, etc.
12572 * Macros may now expand to items and statements
12573 * `a.b()` is always parsed as a method call, never as a field projection
12574 * `Eq` and `IterBytes` implementations can be automatically generated
12575 with `#[deriving_eq]` and `#[deriving_iter_bytes]` respectively
12576 * Removed the special crate language for `.rc` files
12577 * Function arguments may consist of any irrefutable pattern
12578
12579 * Semantic changes
12580 * `&` and `~` pointers may point to objects
12581 * Tuple structs - `struct Foo(Bar, Baz)`. Will replace newtype enums.
12582 * Enum variants may be structs
12583 * Destructors can be added to all nominal types with the Drop trait
12584 * Structs and nullary enum variants may be constants
12585 * Values that cannot be implicitly copied are now automatically moved
12586 without writing `move` explicitly
12587 * `&T` may now be coerced to `*T`
12588 * Coercions happen in `let` statements as well as function calls
12589 * `use` statements now take crate-relative paths
12590 * The module and type namespaces have been merged so that static
12591 method names can be resolved under the trait in which they are
12592 declared
12593
12594 * Improved support for language features
12595 * Trait inheritance works in many scenarios
12596 * More support for explicit self arguments in methods - `self`, `&self`
12597 `@self`, and `~self` all generally work as expected
12598 * Static methods work in more situations
12599 * Experimental: Traits may declare default methods for the implementations
12600 to use
12601
12602 * Libraries
12603 * New condition handling system in `core::condition`
12604 * Timsort added to `std::sort`
12605 * New priority queue, `std::priority_queue`
12606 * Pipes for serializable types, `std::flatpipes'
12607 * Serialization overhauled to be trait-based
12608 * Expanded `getopts` definitions
12609 * Moved futures to `std`
12610 * More functions are pure now
12611 * `core::comm` renamed to `oldcomm`. Still deprecated
12612 * `rustdoc` and `cargo` are libraries now
12613
12614 * Misc
12615 * Added a preliminary REPL, `rusti`
12616 * License changed from MIT to dual MIT/APL2
12617
12618
12619 Version 0.4 (2012-10-15)
12620 ==========================
12621
12622 * ~2000 changes, numerous bugfixes
12623
12624 * Syntax
12625 * All keywords are now strict and may not be used as identifiers anywhere
12626 * Keyword removal: 'again', 'import', 'check', 'new', 'owned', 'send',
12627 'of', 'with', 'to', 'class'.
12628 * Classes are replaced with simpler structs
12629 * Explicit method self types
12630 * `ret` became `return` and `alt` became `match`
12631 * `import` is now `use`; `use is now `extern mod`
12632 * `extern mod { ... }` is now `extern { ... }`
12633 * `use mod` is the recommended way to import modules
12634 * `pub` and `priv` replace deprecated export lists
12635 * The syntax of `match` pattern arms now uses fat arrow (=>)
12636 * `main` no longer accepts an args vector; use `os::args` instead
12637
12638 * Semantics
12639 * Trait implementations are now coherent, ala Haskell typeclasses
12640 * Trait methods may be static
12641 * Argument modes are deprecated
12642 * Borrowed pointers are much more mature and recommended for use
12643 * Strings and vectors in the static region are stored in constant memory
12644 * Typestate was removed
12645 * Resolution rewritten to be more reliable
12646 * Support for 'dual-mode' data structures (freezing and thawing)
12647
12648 * Libraries
12649 * Most binary operators can now be overloaded via the traits in
12650 `core::ops'
12651 * `std::net::url` for representing URLs
12652 * Sendable hash maps in `core::send_map`
12653 * `core::task' gained a (currently unsafe) task-local storage API
12654
12655 * Concurrency
12656 * An efficient new intertask communication primitive called the pipe,
12657 along with a number of higher-level channel types, in `core::pipes`
12658 * `std::arc`, an atomically reference counted, immutable, shared memory
12659 type
12660 * `std::sync`, various exotic synchronization tools based on arcs and pipes
12661 * Futures are now based on pipes and sendable
12662 * More robust linked task failure
12663 * Improved task builder API
12664
12665 * Other
12666 * Improved error reporting
12667 * Preliminary JIT support
12668 * Preliminary work on precise GC
12669 * Extensive architectural improvements to rustc
12670 * Begun a transition away from buggy C++-based reflection (shape) code to
12671 Rust-based (visitor) code
12672 * All hash functions and tables converted to secure, randomized SipHash
12673
12674
12675 Version 0.3 (2012-07-12)
12676 ========================
12677
12678 * ~1900 changes, numerous bugfixes
12679
12680 * New coding conveniences
12681 * Integer-literal suffix inference
12682 * Per-item control over warnings, errors
12683 * #[cfg(windows)] and #[cfg(unix)] attributes
12684 * Documentation comments
12685 * More compact closure syntax
12686 * 'do' expressions for treating higher-order functions as
12687 control structures
12688 * *-patterns (wildcard extended to all constructor fields)
12689
12690 * Semantic cleanup
12691 * Name resolution pass and exhaustiveness checker rewritten
12692 * Region pointers and borrow checking supersede alias
12693 analysis
12694 * Init-ness checking is now provided by a region-based liveness
12695 pass instead of the typestate pass; same for last-use analysis
12696 * Extensive work on region pointers
12697
12698 * Experimental new language features
12699 * Slices and fixed-size, interior-allocated vectors
12700 * #!-comments for lang versioning, shell execution
12701 * Destructors and iface implementation for classes;
12702 type-parameterized classes and class methods
12703 * 'const' type kind for types that can be used to implement
12704 shared-memory concurrency patterns
12705
12706 * Type reflection
12707
12708 * Removal of various obsolete features
12709 * Keywords: 'be', 'prove', 'syntax', 'note', 'mutable', 'bind',
12710 'crust', 'native' (now 'extern'), 'cont' (now 'again')
12711
12712 * Constructs: do-while loops ('do' repurposed), fn binding,
12713 resources (replaced by destructors)
12714
12715 * Compiler reorganization
12716 * Syntax-layer of compiler split into separate crate
12717 * Clang (from LLVM project) integrated into build
12718 * Typechecker split into sub-modules
12719
12720 * New library code
12721 * New time functions
12722 * Extension methods for many built-in types
12723 * Arc: atomic-refcount read-only / exclusive-use shared cells
12724 * Par: parallel map and search routines
12725 * Extensive work on libuv interface
12726 * Much vector code moved to libraries
12727 * Syntax extensions: #line, #col, #file, #mod, #stringify,
12728 #include, #include_str, #include_bin
12729
12730 * Tool improvements
12731 * Cargo automatically resolves dependencies
12732
12733
12734 Version 0.2 (2012-03-29)
12735 =========================
12736
12737 * >1500 changes, numerous bugfixes
12738
12739 * New docs and doc tooling
12740
12741 * New port: FreeBSD x86_64
12742
12743 * Compilation model enhancements
12744 * Generics now specialized, multiply instantiated
12745 * Functions now inlined across separate crates
12746
12747 * Scheduling, stack and threading fixes
12748 * Noticeably improved message-passing performance
12749 * Explicit schedulers
12750 * Callbacks from C
12751 * Helgrind clean
12752
12753 * Experimental new language features
12754 * Operator overloading
12755 * Region pointers
12756 * Classes
12757
12758 * Various language extensions
12759 * C-callback function types: 'crust fn ...'
12760 * Infinite-loop construct: 'loop { ... }'
12761 * Shorten 'mutable' to 'mut'
12762 * Required mutable-local qualifier: 'let mut ...'
12763 * Basic glob-exporting: 'export foo::*;'
12764 * Alt now exhaustive, 'alt check' for runtime-checked
12765 * Block-function form of 'for' loop, with 'break' and 'ret'.
12766
12767 * New library code
12768 * AST quasi-quote syntax extension
12769 * Revived libuv interface
12770 * New modules: core::{future, iter}, std::arena
12771 * Merged per-platform std::{os*, fs*} to core::{libc, os}
12772 * Extensive cleanup, regularization in libstd, libcore
12773
12774
12775 Version 0.1 (2012-01-20)
12776 ===============================
12777
12778 * Most language features work, including:
12779 * Unique pointers, unique closures, move semantics
12780 * Interface-constrained generics
12781 * Static interface dispatch
12782 * Stack growth
12783 * Multithread task scheduling
12784 * Typestate predicates
12785 * Failure unwinding, destructors
12786 * Pattern matching and destructuring assignment
12787 * Lightweight block-lambda syntax
12788 * Preliminary macro-by-example
12789
12790 * Compiler works with the following configurations:
12791 * Linux: x86 and x86_64 hosts and targets
12792 * macOS: x86 and x86_64 hosts and targets
12793 * Windows: x86 hosts and targets
12794
12795 * Cross compilation / multi-target configuration supported.
12796
12797 * Preliminary API-documentation and package-management tools included.
12798
12799 Known issues:
12800
12801 * Documentation is incomplete.
12802
12803 * Performance is below intended target.
12804
12805 * Standard library APIs are subject to extensive change, reorganization.
12806
12807 * Language-level versioning is not yet operational - future code will
12808 break unexpectedly.