5.8 KiB
5.8 KiB
Changelog
[Unreleased]
[0.4.1] 2018-03-16
Added
- Add
ignoreconfiguration option. - Add
license_template_pathconfiguration option. - Format
lazy_static!.
Fixed
- Fix formatting bugs.
- Fix setting
reorder_modulesremoving inline modules. - Format attributes on block expressions.
- Support
dyn traitsyntax. - Support multiple patterns in
if letandwhile let. - Support a pattern with parentheses.
[0.4.0] 2018-03-02
Changed
- Do not print verbose outputs when formatting with stdin.
- Preserve trailing whitespaces in doc comments.
- Scale the values of width heuristics by
max_width.
Fixed
- Do not reorder items with
#[macro_use]. - Fix formatting bugs.
- Support the beginning
|on a match arm.
[0.3.8] 2018-02-04
Added
- Format (or at least try to format)
macro_rules!.
[0.3.7] 2018-02-01
Added
- Add
use_field_init_shorthandconfig option. - Add
reorder_modulesconfiguration option.
[0.3.6] 2018-01-18
Fixed
- Fix panicking on formatting certain macros (#2371).
[0.3.5] 2018-01-15
Changed
- Format code block in comments when
wrap_commentsis set totrue. - Remove
same_line_attributesconfiguration option. - Rename
git-fmttogit-rustfmt.
Fixed
- Rustup to
rustc 1.25.0-nightly (e6072a7b3 2018-01-13). - Fix formatting bugs.
[0.3.4] 2017-12-23
Added
- Add
--versionflag tocargo-fmt, allowcargo fmt --version.
Fixed
- Rustup to
rustc 1.24.0-nightly (5165ee9e2 2017-12-22).
[0.3.3] 2017-12-22
Added
- Format trait aliases.
Changed
cargo fmtwill format every workspace member.
Fixed
- Rustup to
rustc 1.24.0-nightly (250b49205 2017-12-21) - Fix formatting bugs.
[0.3.2] 2017-12-15
Changed
- Warn when unkown configuration option is used.
Fixed
- Rustup to
rustc 1.24.0-nightly (0077d128d 2017-12-14).
[0.3.1] 2017-12-11
Added
- Add
error_on_unformattedconfiguration option. - Add
--error-on-unformattedcommand line option.
Changed
- Do not report formatting errors on comments or strings by default.
- Rename
error_on_line_overflow_commentstoerror_on_unformatted.
Fixed
- Fix formatting bugs.
- Fix adding a trailing whitespace inside code block when
wrap_comments = true.
[0.3.0] 2017-12-11
Added
- Support nested imports.
Changed
- Do not report errors on skipped items.
- Do not format code block inside comments when
wrap_comments = true. - Keep vertical spaces between items within range.
- Format
format!and its variants using compressed style. - Format
write!and its variants using compressed style. - Format simple array using compressed style.
Fixed
- Fix
rustfmt --package package_namenot working properly. - Fix formatting bugs.
[0.2.17] 2017-12-03
Added
- Add
blank_lines_lower_boundandblank_lines_upper_boundconfiguration options.
Changed
- Combine configuration options related to width heuristic into
width_heuristic. - If the match arm's body is
ifexpression, force to use block.
Fixed
- Fix
cargo fmt --allbeing trapped in an infinite loop. - Fix many formatting bugs.
Removed
- Remove legacy configuration options.
[0.2.16] 2017-11-21
Added
- Remove empty lines at the beginning of the file.
- Soft wrapping on doc comments.
Changed
- Break before
|when using multiple lines for match arm patterns. - Combine
control_style,where_styleand*_indentconfig options intoindent_style. - Combine
item_brace_styleandfn_brace_styleconfig options intobrace_style. - Combine config options related spacing around colons into
space_before_colonandspace_after_colon.
Fixed
- Fix many bugs.
[0.2.15] 2017-11-08
Added
- Add git-fmt tool
where_single_lineconfiguration option.
Changed
- Rename
chain_one_line_maxtochain_width. - Change the suffix of indent-related configuration options to
_indent.
[0.2.14] 2017-11-06
Fixed
- Rustup to the latest nightly.
[0.2.13] 2017-10-30
Fixed
- Rustup to the latest nightly.
[0.2.12] 2017-10-29
Fixed
- Fix a bug that
cargo fmthangs forever.
[0.2.11] 2017-10-29
Fixed
- Fix a bug that
cargo fmtcrashes.
[0.2.10] 2017-10-28
[0.2.9] 2017-10-16
[0.2.8] 2017-09-28
[0.2.7] 2017-09-21
Added
binop_separatorconfiguration option (#1964).
Changed
- Use horizontal layout for function call with a single argument.
Fixed
- Fix panicking when calling
cargo fmt --all(#1963). - Refactorings & faster rustfmt.
[0.2.6] 2017-09-14
Fixed
- Fix a performance issue with nested block (#1940).
- Refactorings & faster rustfmt.
[0.2.5] 2017-08-31
Added
- Format and preserve attributes on statements (#1933).
Fixed
- Use getters to access
Spanfields (#1899).
[0.2.4] 2017-08-30
Added
- Add support for
Yield(#1928).
[0.2.3] 2017-08-30
Added
multiline_closure_forces_blockconfiguration option (#1898).multiline_match_arm_forces_blockconfiguration option (#1898).merge_derivesconfiguration option (#1910).struct_remove_empty_bracesconfiguration option (#1930).- Various refactorings.
Changed
- Put single-lined block comments on the same line with list-like structure's item (#1923).
- Preserve blank line between doc comment and attribute (#1925).
- Put the opening and the closing braces of enum and struct on the same line, even when
item_brace_style = "AlwaysNextLine"(#1930).
Fixed
- Format attributes on
ast::ForeignItemand take max width into account (#1916). - Ignore empty lines when calculating the shortest indent width inside macro with braces (#1918).
- Handle tabs properly inside macro with braces (#1918).
- Fix a typo in
compute_budgets_for_args()(#1924). - Recover comment between keyword (
implandtrait) and{which used to get removed (#1925).