• The Rust team is happy to announce a new version of Rust, 1.92.0. • Rust is a programming language empowering everyone to build reliable and efficient software. • If you have a previous version of Rust installed viarustup, you can get 1.92.0 with: If you don’t have it already, you cangetrustupfrom the appropriate page on our website, and check out thedetailed release notes for 1.92.0. • If you’d like to help us out by testing future releases, you might consider updating locally to use the beta channel (rustup default beta) or the nightly channel (rustup default nightly). • Pleasereportany bugs you might come across! • What’s in 1.92.0 stable Deny-by-default never type lints The language and compiler teams continue to work on stabilization of thenever type.

Article Summaries:

  • The Rust team is happy to announce a new version of Rust, 1.92.0. Rust is a programming language empowering everyone to build reliable and efficient software. If you have a previous version of Rust installed via rustup , you can get 1.92.0 with: $ rustup update stable If you don’t have it already, you can get rustup from the appropriate page on our website, and check out the detailed release notes for 1.92.0. If you’d like to help us out by testing future releases, you might consider updating locally to use the beta channel (rustup default beta ) or the nightly channel (rustup default nightly
  • Rust 1.92.0 Released

The Rust team has released version 1.92.0, adding several important changes. The release makes never‑type related lints (e.g., never_type_fallback_flowing_into_unsafe) deny‑by‑default, turning them into compilation errors unless explicitly allowed. The unused_must_use lint no longer warns on Result<(), UninhabitedType> or ControlFlow, reducing false positives for infallible error types. Unwind tables are now emitted by default when -Cpanic=abort is used, restoring backtrace support. Additional improvements refine diagnostics for built‑in attributes. Users can update via rustup update stable and test future releases on beta or nightly channels.

Sources: