From f297ebd6490ef103ee419217018d2181b03a09cb Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 25 Dec 2019 12:29:28 +0900 Subject: [PATCH] Cut 2.4.1 --- CHANGELOG.md | 2 ++ lib/rubocop/rails/version.rb | 2 +- relnotes/v2.4.1.md | 12 ++++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 relnotes/v2.4.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index c46e6636e0..dd7f83d4d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 2.4.1 (2019-12-25) + ### Bug fixes * [#170](https://github.com/rubocop-hq/rubocop-rails/pull/170): Make `Rails/BulkChangeTable` not suggest combining methods with an intervening block. ([@mvz][]) diff --git a/lib/rubocop/rails/version.rb b/lib/rubocop/rails/version.rb index e1ef585174..a50cfab475 100644 --- a/lib/rubocop/rails/version.rb +++ b/lib/rubocop/rails/version.rb @@ -4,7 +4,7 @@ module RuboCop module Rails # This module holds the RuboCop Rails version information. module Version - STRING = '2.4.0' + STRING = '2.4.1' end end end diff --git a/relnotes/v2.4.1.md b/relnotes/v2.4.1.md new file mode 100644 index 0000000000..3952237649 --- /dev/null +++ b/relnotes/v2.4.1.md @@ -0,0 +1,12 @@ +### Bug fixes + +* [#170](https://github.com/rubocop-hq/rubocop-rails/pull/170): Make `Rails/BulkChangeTable` not suggest combining methods with an intervening block. ([@mvz][]) +* [#159](https://github.com/rubocop-hq/rubocop-rails/issues/159): Fix autocorrect for `Rails/EnumHash` when using % arrays notations. ([@ngouy][]) + +### Changes + +* [#166](https://github.com/rubocop-hq/rubocop-rails/issues/166): Add db/schema.rb and bin/* to the excluded files. ([@fidalgo][]) + +[@mvz]: https://github.com/mvz +[@ngouy]: https://github.com/ngouy +[@fidalgo]: https://github.com/fidalgo