diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 54bc3f0dca0..f54ec79485a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -35,5 +35,5 @@ Include the output of `rubocop -V` or `bundle exec rubocop -V` if using Bundler. ``` $ [bundle exec] rubocop -V -0.63.0 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux) +0.63.1 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux) ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 55c1712f36f..3bf906cf9b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.63.1 (2019-01-22) + ### Bug fixes * [#6678](https://github.com/rubocop-hq/rubocop/issues/6678): Fix `Lint/DisjunctiveAssignmentInConstructor` when it finds an empty constructor. ([@rmm5t][]) diff --git a/README.md b/README.md index 6c259aeaa51..9d4d1e5ed03 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you might want to use a conservative version locking in your `Gemfile`: ```rb -gem 'rubocop', '~> 0.63.0', require: false +gem 'rubocop', '~> 0.63.1', require: false ``` ## Quickstart diff --git a/lib/rubocop/version.rb b/lib/rubocop/version.rb index 7340bd378c4..13dbe1a519f 100644 --- a/lib/rubocop/version.rb +++ b/lib/rubocop/version.rb @@ -3,7 +3,7 @@ module RuboCop # This module holds the RuboCop version information. module Version - STRING = '0.63.0'.freeze + STRING = '0.63.1'.freeze MSG = '%s (using Parser %s, running on ' \ '%s %s %s)'.freeze diff --git a/manual/installation.md b/manual/installation.md index 74e8e9579a5..af881b22b4a 100644 --- a/manual/installation.md +++ b/manual/installation.md @@ -16,7 +16,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you might want to use a conservative version locking in your `Gemfile`: ```rb -gem 'rubocop', '~> 0.63.0', require: false +gem 'rubocop', '~> 0.63.1', require: false ``` !!! Note diff --git a/relnotes/v0.63.1.md b/relnotes/v0.63.1.md new file mode 100644 index 00000000000..3851c64a702 --- /dev/null +++ b/relnotes/v0.63.1.md @@ -0,0 +1,9 @@ +### Bug fixes + +* [#6678](https://github.com/rubocop-hq/rubocop/issues/6678): Fix `Lint/DisjunctiveAssignmentInConstructor` when it finds an empty constructor. ([@rmm5t][]) +* Do not attempt to auto-correct mass assignment or optional assignment in `Rails/RelativeDateConstant`. ([@rrosenblum][]) +* Fix auto-correction of `Style/WordArray` and `Style/SymbolArray` when all elements are on separate lines and there is a trailing comment after the closing bracket. ([@rrosenblum][]) +* Fix an exception that occurs when auto-correcting `Layout/ClosingParenthesesIndentation` when there are no arguments. ([@rrosenblum][]) + +[@rmm5t]: https://github.com/rmm5t +[@rrosenblum]: https://github.com/rrosenblum