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 2
2
3
3
## [ Unreleased]
4
4
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
+
5
20
## [ 1.3.0] 2019-06-09
6
21
7
22
### Added
8
23
9
24
- Format modules defined inside ` cfg_if ` macro calls #3600
10
- -
25
+
11
26
### Changed
12
27
13
28
- Change option ` format_doc_comment ` to ` format_code_in_doc_comment ` .
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " rustfmt-nightly"
4
- version = " 1.3.0 "
4
+ version = " 1.3.1 "
5
5
authors = [
" Nicholas Cameron <[email protected] >" ,
" The Rustfmt developers" ]
6
6
description = " Tool to find and fix Rust formatting issues"
7
7
repository = " https://github.com/rust-lang/rustfmt"
@@ -47,18 +47,18 @@ log = "0.4"
47
47
env_logger = " 0.6"
48
48
getopts = " 0.2"
49
49
derive-new = " 0.5"
50
- cargo_metadata = " 0.7 "
50
+ cargo_metadata = " 0.8 "
51
51
rustc-ap-rustc_target = " 491.0.0"
52
52
rustc-ap-syntax = " 491.0.0"
53
53
rustc-ap-syntax_pos = " 491.0.0"
54
54
failure = " 0.1.3"
55
55
bytecount = " 0.5"
56
56
unicode-width = " 0.1.5"
57
57
unicode_categories = " 0.1.1"
58
- dirs = " 1 .0.4 "
58
+ dirs = " 2 .0.1 "
59
59
ignore = " 0.4.6"
60
60
annotate-snippets = { version = " 0.5.0" , features = [" ansi_term" ] }
61
- structopt = " 0.2.15 "
61
+ structopt = " 0.2.18 "
62
62
63
63
rustfmt-config_proc_macro = { version = " 0.1" , path = " config_proc_macro" }
64
64
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ use_field_init_shorthand = false
519
519
force_explicit_abi = true
520
520
condense_wildcard_suffixes = false
521
521
color = "Auto"
522
- required_version = "1.3.0 "
522
+ required_version = "1.3.1 "
523
523
unstable_features = false
524
524
disable_all_formatting = false
525
525
skip_children = false
You can’t perform that action at this time.
0 commit comments