|
| 1 | +--- |
| 2 | +layout: post |
| 3 | +title: "Announcing Rust 1.62.1" |
| 4 | +author: The Rust Release Team |
| 5 | +release: true |
| 6 | +--- |
| 7 | + |
| 8 | +The Rust team has published a new point release of Rust, 1.62.1. Rust is a |
| 9 | +programming language that is empowering everyone to build reliable and |
| 10 | +efficient software. |
| 11 | + |
| 12 | +If you have a previous version of Rust installed via rustup, you can get 1.62.1 with: |
| 13 | + |
| 14 | +``` |
| 15 | +rustup update stable |
| 16 | +``` |
| 17 | + |
| 18 | +If you don't have it already, you can [get `rustup`][install] |
| 19 | +from the appropriate page on our website, and check out the |
| 20 | +[detailed release notes for 1.62.1][notes] on GitHub. |
| 21 | + |
| 22 | +[install]: https://www.rust-lang.org/install.html |
| 23 | +[notes]: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1621-2022-07-19 |
| 24 | + |
| 25 | +## What's in 1.62.1 stable |
| 26 | + |
| 27 | +Rust 1.62.1 addresses a few recent regressions in the compiler and standard |
| 28 | +library, and also mitigates a CPU vulnerability on Intel SGX. |
| 29 | + |
| 30 | +* [The compiler fixed unsound function coercions involving `impl Trait` return types.][98608] |
| 31 | +* [The compiler fixed an incremental compilation bug with `async fn` lifetimes.][98890] |
| 32 | +* [Windows added a fallback for overlapped I/O in synchronous reads and writes.][98950] |
| 33 | +* [The `x86_64-fortanix-unknown-sgx` target added a mitigation for the |
| 34 | + MMIO stale data vulnerability][98126], advisory [INTEL-SA-00615]. |
| 35 | + |
| 36 | +[98608]: https://github.com/rust-lang/rust/issues/98608 |
| 37 | +[98890]: https://github.com/rust-lang/rust/issues/98890 |
| 38 | +[98950]: https://github.com/rust-lang/rust/pull/98950 |
| 39 | +[98126]: https://github.com/rust-lang/rust/pull/98126 |
| 40 | +[INTEL-SA-00615]: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00615.html |
| 41 | + |
| 42 | +### Contributors to 1.62.1 |
| 43 | + |
| 44 | +Many people came together to create Rust 1.62.1. We couldn't have done it |
| 45 | +without all of you. [Thanks!](https://thanks.rust-lang.org/rust/1.62.1/) |
0 commit comments