Skip to content

Commit 44149d6

Browse files
committed
Release 1.3.1
1 parent 8c29e8b commit 44149d6

File tree

4 files changed

+57
-36
lines changed

4 files changed

+57
-36
lines changed

CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,27 @@
22

33
## [Unreleased]
44

5+
## [1.3.1] 2019-06-30
6+
7+
### Added
8+
9+
- Implement the `Display` trait on the types of `Config`.
10+
11+
### Changed
12+
13+
- `ignore` configuration option now only supports paths separated by `/`. Windows-style paths are not supported.
14+
- Running `cargo fmt` in a sub-directory of a project is now supported.
15+
16+
### Fixed
17+
18+
- Fix bugs that may cause rustfmt to crash.
19+
520
## [1.3.0] 2019-06-09
621

722
### Added
823

924
- Format modules defined inside `cfg_if` macro calls #3600
10-
-
25+
1126
### Changed
1227

1328
- Change option `format_doc_comment` to `format_code_in_doc_comment`.

Cargo.lock

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

Cargo.toml

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

33
name = "rustfmt-nightly"
4-
version = "1.3.0"
4+
version = "1.3.1"
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"
@@ -47,18 +47,18 @@ log = "0.4"
4747
env_logger = "0.6"
4848
getopts = "0.2"
4949
derive-new = "0.5"
50-
cargo_metadata = "0.7"
50+
cargo_metadata = "0.8"
5151
rustc-ap-rustc_target = "491.0.0"
5252
rustc-ap-syntax = "491.0.0"
5353
rustc-ap-syntax_pos = "491.0.0"
5454
failure = "0.1.3"
5555
bytecount = "0.5"
5656
unicode-width = "0.1.5"
5757
unicode_categories = "0.1.1"
58-
dirs = "1.0.4"
58+
dirs = "2.0.1"
5959
ignore = "0.4.6"
6060
annotate-snippets = { version = "0.5.0", features = ["ansi_term"] }
61-
structopt = "0.2.15"
61+
structopt = "0.2.18"
6262

6363
rustfmt-config_proc_macro = { version = "0.1", path = "config_proc_macro" }
6464

src/config/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ use_field_init_shorthand = false
519519
force_explicit_abi = true
520520
condense_wildcard_suffixes = false
521521
color = "Auto"
522-
required_version = "1.3.0"
522+
required_version = "1.3.1"
523523
unstable_features = false
524524
disable_all_formatting = false
525525
skip_children = false

0 commit comments

Comments
 (0)