Skip to content

Commit 47c4534

Browse files
Merge pull request #1291 from Kobzol/release-1.77.1
Add blog post about the Rust 1.77.1 release
2 parents ca0574b + 0bfdb1e commit 47c4534

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

posts/2024-03-28-Rust-1.77.1.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: post
3+
title: "Announcing Rust 1.77.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.77.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, getting Rust
13+
1.77.1 is as easy as:
14+
15+
```
16+
rustup update stable
17+
```
18+
19+
If you don't have it already, you can [get `rustup`][rustup] from the
20+
appropriate page on our website.
21+
22+
[rustup]: https://www.rust-lang.org/install.html
23+
24+
## What's in 1.77.1
25+
26+
Cargo enabled [stripping of debuginfo in release builds by default](https://github.com/rust-lang/cargo/pull/13257)
27+
in Rust 1.77.0. However, due to a pre-existing issue, debuginfo stripping does not [behave](https://github.com/rust-lang/rust/issues/122857) in the expected way on Windows with the MSVC toolchain.
28+
29+
Rust 1.77.1 therefore [disables](https://github.com/rust-lang/cargo/pull/13630) the new Cargo behavior on Windows for
30+
targets that use MSVC. There are no changes for other targets. We plan to eventually re-enable debuginfo stripping in
31+
release mode in a later Rust release.
32+
33+
### Contributors to 1.77.1
34+
35+
Many people came together to create Rust 1.77.1. We couldn't have done it
36+
without all of you. [Thanks!](https://thanks.rust-lang.org/rust/1.77.1/)

0 commit comments

Comments
 (0)