File tree Expand file tree Collapse file tree 4 files changed +57
-36
lines changed Expand file tree Collapse file tree 4 files changed +57
-36
lines changed Original file line number Diff line number Diff line change 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 ` .
Original file line number Diff line number Diff line change 11[package ]
22
33name = " rustfmt-nightly"
4- version = " 1.3.0 "
4+ version = " 1.3.1 "
55authors = [
" Nicholas Cameron <[email protected] >" ,
" The Rustfmt developers" ]
66description = " Tool to find and fix Rust formatting issues"
77repository = " https://github.com/rust-lang/rustfmt"
@@ -47,18 +47,18 @@ log = "0.4"
4747env_logger = " 0.6"
4848getopts = " 0.2"
4949derive-new = " 0.5"
50- cargo_metadata = " 0.7 "
50+ cargo_metadata = " 0.8 "
5151rustc-ap-rustc_target = " 491.0.0"
5252rustc-ap-syntax = " 491.0.0"
5353rustc-ap-syntax_pos = " 491.0.0"
5454failure = " 0.1.3"
5555bytecount = " 0.5"
5656unicode-width = " 0.1.5"
5757unicode_categories = " 0.1.1"
58- dirs = " 1 .0.4 "
58+ dirs = " 2 .0.1 "
5959ignore = " 0.4.6"
6060annotate-snippets = { version = " 0.5.0" , features = [" ansi_term" ] }
61- structopt = " 0.2.15 "
61+ structopt = " 0.2.18 "
6262
6363rustfmt-config_proc_macro = { version = " 0.1" , path = " config_proc_macro" }
6464
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ use_field_init_shorthand = false
519519force_explicit_abi = true
520520condense_wildcard_suffixes = false
521521color = "Auto"
522- required_version = "1.3.0 "
522+ required_version = "1.3.1 "
523523unstable_features = false
524524disable_all_formatting = false
525525skip_children = false
You can’t perform that action at this time.
0 commit comments