This commit is contained in:
topecongiro 2018-03-16 08:58:25 +09:00
parent a03b3b7d6f
commit 87180d9065
3 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,8 @@
## [Unreleased]
## [0.4.1] 2018-03-16
### Added
- Add `ignore` configuration option.
@ -11,6 +13,8 @@
### Fixed
- Fix formatting bugs.
- Fix setting `reorder_modules` removing inline modules.
- Format attributes on block expressions.
- Support `dyn trait` syntax.
- Support multiple patterns in `if let` and `while let`.
- Support a pattern with parentheses.

2
Cargo.lock generated
View File

@ -372,7 +372,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rustfmt-nightly"
version = "0.4.0"
version = "0.4.1"
dependencies = [
"cargo_metadata 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"derive-new 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,7 +1,7 @@
[package]
name = "rustfmt-nightly"
version = "0.4.0"
version = "0.4.1"
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"]
description = "Tool to find and fix Rust formatting issues"
repository = "https://github.com/rust-lang-nursery/rustfmt"