From 442feb3bdeb7a920ed34425526a111ca87e2b975 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 16 Nov 2022 11:59:47 +0900 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 8 ++++++++ ...hange_support_autocorrection_even_if_reject_is_used.md | 1 - changelog/fix_an_error_for_performance_map_compact.md | 1 - 3 files changed, 8 insertions(+), 2 deletions(-) delete mode 100644 changelog/change_support_autocorrection_even_if_reject_is_used.md delete mode 100644 changelog/fix_an_error_for_performance_map_compact.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a3165e7926..fd649644c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## master (unreleased) +### Bug fixes + +* [#309](https://github.com/rubocop/rubocop-performance/issues/309): Fix an error for `Performance/MapCompact` when using `map(&:do_something).compact` and there is a line break after `map.compact` and assigning with `||=`. ([@koic][]) + +### Changes + +* [#307](https://github.com/rubocop/rubocop-performance/pull/307): Support autocorrection even if `reject` is used on `Performance/Count`. ([@r7kamura][]) + ## 1.15.0 (2022-09-10) ### New features diff --git a/changelog/change_support_autocorrection_even_if_reject_is_used.md b/changelog/change_support_autocorrection_even_if_reject_is_used.md deleted file mode 100644 index ff20e75fdd..0000000000 --- a/changelog/change_support_autocorrection_even_if_reject_is_used.md +++ /dev/null @@ -1 +0,0 @@ -* [#307](https://github.com/rubocop/rubocop-performance/pull/307): Support autocorrection even if `reject` is used on `Performance/Count`. ([@r7kamura][]) diff --git a/changelog/fix_an_error_for_performance_map_compact.md b/changelog/fix_an_error_for_performance_map_compact.md deleted file mode 100644 index e1ee0bd56c..0000000000 --- a/changelog/fix_an_error_for_performance_map_compact.md +++ /dev/null @@ -1 +0,0 @@ -* [#309](https://github.com/rubocop/rubocop-performance/issues/309): Fix an error for `Performance/MapCompact` when using `map(&:do_something).compact` and there is a line break after `map.compact` and assigning with `||=`. ([@koic][])