mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-18 18:04:13 +00:00
meta: release v1.4.25
This commit is contained in:
parent
a613c57521
commit
0f29ff6da0
28
CHANGELOG.md
28
CHANGELOG.md
@ -2,6 +2,18 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.4.25] 2020-11-10
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Semicolons are no longer automatically inserted on trailing expressions in macro definition arms ([#4507](https://github.com/rust-lang/rustfmt/pull/4507)). This gives the programmer control and discretion over whether there should be semicolons in these scenarios so that potential expansion issues can be avoided.
|
||||||
|
|
||||||
|
### Install/Download Options
|
||||||
|
- **crates.io package** - *pending*
|
||||||
|
- **rustup (nightly)** - *pending*
|
||||||
|
- **GitHub Release Binaries** - [Release v1.4.25](https://github.com/rust-lang/rustfmt/releases/tag/v1.4.25)
|
||||||
|
- **Build from source** - [Tag v1.4.25](https://github.com/rust-lang/rustfmt/tree/v1.4.25), see instructions for how to [install rustfmt from source][install-from-source]
|
||||||
|
|
||||||
## [1.4.24] 2020-11-05
|
## [1.4.24] 2020-11-05
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -11,6 +23,12 @@
|
|||||||
### Fixed
|
### Fixed
|
||||||
- Remove useless `deprecated` attribute on a trait impl block in the rustfmt lib, as these now trigger errors ([rust-lang/rust/#78626](https://github.com/rust-lang/rust/pull/78626))
|
- Remove useless `deprecated` attribute on a trait impl block in the rustfmt lib, as these now trigger errors ([rust-lang/rust/#78626](https://github.com/rust-lang/rust/pull/78626))
|
||||||
|
|
||||||
|
### Install/Download Options
|
||||||
|
- **crates.io package** - *pending*
|
||||||
|
- **rustup (nightly)** - Starting in `2020-11-09`
|
||||||
|
- **GitHub Release Binaries** - [Release v1.4.24](https://github.com/rust-lang/rustfmt/releases/tag/v1.4.24)
|
||||||
|
- **Build from source** - [Tag v1.4.24](https://github.com/rust-lang/rustfmt/tree/v1.4.24), see instructions for how to [install rustfmt from source][install-from-source]
|
||||||
|
|
||||||
## [1.4.23] 2020-10-30
|
## [1.4.23] 2020-10-30
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -28,6 +46,13 @@
|
|||||||
- Preserve comments in empty statements [#4018](https://github.com/rust-lang/rustfmt/issues/4018))
|
- Preserve comments in empty statements [#4018](https://github.com/rust-lang/rustfmt/issues/4018))
|
||||||
- Indentation on skipped code [#4398](https://github.com/rust-lang/rustfmt/issues/4398))
|
- Indentation on skipped code [#4398](https://github.com/rust-lang/rustfmt/issues/4398))
|
||||||
|
|
||||||
|
### Install/Download Options
|
||||||
|
- **crates.io package** - *pending*
|
||||||
|
- **rustup (nightly)** - n/a (superseded by [v1.4.24](#1424-2020-11-05))
|
||||||
|
- **GitHub Release Binaries** - [Release v1.4.23](https://github.com/rust-lang/rustfmt/releases/tag/v1.4.23)
|
||||||
|
- **Build from source** - [Tag v1.4.23](https://github.com/rust-lang/rustfmt/tree/v1.4.23), see instructions for how to [install rustfmt from source][install-from-source]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.4.22] 2020-10-04
|
## [1.4.22] 2020-10-04
|
||||||
|
|
||||||
@ -919,3 +944,6 @@ from formatting an attribute #3665
|
|||||||
- Handle tabs properly inside macro with braces (#1918).
|
- Handle tabs properly inside macro with braces (#1918).
|
||||||
- Fix a typo in `compute_budgets_for_args()` (#1924).
|
- Fix a typo in `compute_budgets_for_args()` (#1924).
|
||||||
- Recover comment between keyword (`impl` and `trait`) and `{` which used to get removed (#1925).
|
- Recover comment between keyword (`impl` and `trait`) and `{` which used to get removed (#1925).
|
||||||
|
|
||||||
|
|
||||||
|
[install-from-source]: https://github.com/rust-lang/rustfmt#installing-from-source
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1237,7 +1237,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rustfmt-nightly"
|
name = "rustfmt-nightly"
|
||||||
version = "1.4.24"
|
version = "1.4.25"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"annotate-snippets 0.6.1",
|
"annotate-snippets 0.6.1",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "rustfmt-nightly"
|
name = "rustfmt-nightly"
|
||||||
version = "1.4.24"
|
version = "1.4.25"
|
||||||
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
|
||||||
description = "Tool to find and fix Rust formatting issues"
|
description = "Tool to find and fix Rust formatting issues"
|
||||||
repository = "https://github.com/rust-lang/rustfmt"
|
repository = "https://github.com/rust-lang/rustfmt"
|
||||||
|
Loading…
Reference in New Issue
Block a user