Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
topecongiro committed Jun 30, 2019
1 parent 8c29e8b commit 44149d6
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 36 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@

## [Unreleased]

## [1.3.1] 2019-06-30

### Added

- Implement the `Display` trait on the types of `Config`.

### Changed

- `ignore` configuration option now only supports paths separated by `/`. Windows-style paths are not supported.
- Running `cargo fmt` in a sub-directory of a project is now supported.

### Fixed

- Fix bugs that may cause rustfmt to crash.

## [1.3.0] 2019-06-09

### Added

- Format modules defined inside `cfg_if` macro calls #3600
-

### Changed

- Change option `format_doc_comment` to `format_code_in_doc_comment`.
Expand Down
66 changes: 36 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "rustfmt-nightly"
version = "1.3.0"
version = "1.3.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/rustfmt"
Expand Down Expand Up @@ -47,18 +47,18 @@ log = "0.4"
env_logger = "0.6"
getopts = "0.2"
derive-new = "0.5"
cargo_metadata = "0.7"
cargo_metadata = "0.8"
rustc-ap-rustc_target = "491.0.0"
rustc-ap-syntax = "491.0.0"
rustc-ap-syntax_pos = "491.0.0"
failure = "0.1.3"
bytecount = "0.5"
unicode-width = "0.1.5"
unicode_categories = "0.1.1"
dirs = "1.0.4"
dirs = "2.0.1"
ignore = "0.4.6"
annotate-snippets = { version = "0.5.0", features = ["ansi_term"] }
structopt = "0.2.15"
structopt = "0.2.18"

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

Expand Down
2 changes: 1 addition & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ use_field_init_shorthand = false
force_explicit_abi = true
condense_wildcard_suffixes = false
color = "Auto"
required_version = "1.3.0"
required_version = "1.3.1"
unstable_features = false
disable_all_formatting = false
skip_children = false
Expand Down

0 comments on commit 44149d6

Please sign in to comment.