diff --git a/CHANGELOG.md b/CHANGELOG.md index 6326fba916..f907853651 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ ## master (unreleased) +### New features + +* [#305](https://github.com/rubocop/rubocop-performance/pull/305): Support numbered parameter for `Performance/RedundantSortBlock`, `Performance/SortReverse`, and `Performance/TimesMap` cops. ([@koic][]) + +### Bug fixes + +* [#299](https://github.com/rubocop/rubocop-performance/pull/299): Fix incorrect documentation URLs when using `rubocop --show-docs-url`. ([@r7kamura][]) + +### Changes + +* [#297](https://github.com/rubocop/rubocop-performance/pull/297): Support autocorrection on `Performance/RedundantMatch` when receiver is a Regexp literal. ([@r7kamura][]) + ## 1.14.3 (2022-07-17) ### Bug fixes @@ -382,3 +394,4 @@ [@leoarnold]: https://github.com/leoarnold [@ydah]: https://github.com/ydah [@QQism]: https://github.com/QQism +[@r7kamura]: https://github.com/r7kamura diff --git a/changelog/change_support_autocorrection_on_redundantmatch.md b/changelog/change_support_autocorrection_on_redundantmatch.md deleted file mode 100644 index fb22405e51..0000000000 --- a/changelog/change_support_autocorrection_on_redundantmatch.md +++ /dev/null @@ -1 +0,0 @@ -* [#297](https://github.com/rubocop/rubocop-performance/pull/297): Support autocorrection on `Performance/RedundantMatch` when receiver is a Regexp literal. ([@r7kamura][]) diff --git a/changelog/fix_incorrect_documentation_urls.md b/changelog/fix_incorrect_documentation_urls.md deleted file mode 100644 index f4b56fc579..0000000000 --- a/changelog/fix_incorrect_documentation_urls.md +++ /dev/null @@ -1 +0,0 @@ -* [#299](https://github.com/rubocop/rubocop-performance/pull/299): Fix incorrect documentation URLs when using `rubocop --show-docs-url`. ([@r7kamura][]) diff --git a/changelog/new_support_numbered_parameter.md b/changelog/new_support_numbered_parameter.md deleted file mode 100644 index c88196ddfe..0000000000 --- a/changelog/new_support_numbered_parameter.md +++ /dev/null @@ -1 +0,0 @@ -* [#305](https://github.com/rubocop/rubocop-performance/pull/305): Support numbered parameter for `Performance/RedundantSortBlock`, `Performance/SortReverse`, and `Performance/TimesMap` cops. ([@koic][])