Skip to content

Commit ea97ec5

Browse files
meta: bump rustfmt version to 1.4.23
1 parent fb517f4 commit ea97ec5

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

.github/workflows/upload-assets.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
cp {README.md,Configurations.md,CHANGELOG.md,LICENSE-MIT,LICENSE-APACHE} "$staging/"
5656
5757
if [ "${{ matrix.os }}" = "windows-latest" ]; then
58-
cp "target/release/{rustfmt.exe,cargo-fmt.exe,rustfmt-format-diff.exe,git-rustfmt.exe}" "$staging/"
58+
cp target/release/{rustfmt.exe,cargo-fmt.exe,rustfmt-format-diff.exe,git-rustfmt.exe} "$staging/"
5959
7z a "$staging.zip" "$staging"
6060
echo "::set-env name=ASSET::$staging.zip"
6161
else
62-
cp "target/release/{rustfmt,cargo-fmt,rustfmt-format-diff,git-rustfmt} "$staging/"
62+
cp target/release/{rustfmt,cargo-fmt,rustfmt-format-diff,git-rustfmt} "$staging/"
6363
tar czf "$staging.tar.gz" "$staging"
6464
echo "::set-env name=ASSET::$staging.tar.gz"
6565
fi

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## [Unreleased]
44

5+
## [1.4.22] 2020-10-30
6+
7+
### Changed
8+
9+
- Update `rustc-ap-*` crates to v686.0.0
10+
11+
### Added
12+
- Initial support for formatting new ConstBlock syntax ([#4478](https://github.com/rust-lang/rustfmt/pull/4478))
13+
14+
### Fixed
15+
- Handling of unclosed delimiter-only parsing errors in input files ([#4466](https://github.com/rust-lang/rustfmt/issues/4466))
16+
- Misc. minor parser bugs ([#4418](https://github.com/rust-lang/rustfmt/issues/4418) and [#4431](https://github.com/rust-lang/rustfmt/issues/4431))
17+
- Panic on nested tuple access ([#4355](https://github.com/rust-lang/rustfmt/issues/4355))
18+
- Unable to disable license template path via cli override ([#4487](https://github.com/rust-lang/rustfmt/issues/4487))
19+
- Preserve comments in empty statements [#4018](https://github.com/rust-lang/rustfmt/issues/4018))
20+
- Indentation on skipped code [#4398](https://github.com/rust-lang/rustfmt/issues/4398))
21+
22+
523
## [1.4.22] 2020-10-04
624

725
### Changed
@@ -10,7 +28,6 @@
1028
- Add config option to allow control of leading match arm pipes
1129
- Support `RUSTFMT` environment variable in `cargo fmt` to run specified `rustfmt` instance
1230

13-
1431
### Fixed
1532

1633
- Fix preservation of type aliases within extern blocks

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustfmt-nightly"
4-
version = "1.4.22"
4+
version = "1.4.23"
55
authors = ["Nicholas Cameron <[email protected]>", "The Rustfmt developers"]
66
description = "Tool to find and fix Rust formatting issues"
77
repository = "https://github.com/rust-lang/rustfmt"

0 commit comments

Comments
 (0)