From d8ae6454258b6e568506e06b02edcb588b9f5e3d Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 31 Oct 2021 11:48:20 +0900 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 13 +++++++++++++ ...correct_false_from_performance_string_include.md | 1 - ...negative_for_performance_redundant_block_call.md | 1 - .../fix_fix_error_in_performancesum_when_method.md | 1 - ...new_performance_concurrent_monotonic_time_cop.md | 1 - 5 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 changelog/change_unmark_autocorrect_false_from_performance_string_include.md delete mode 100644 changelog/fix_false_negative_for_performance_redundant_block_call.md delete mode 100644 changelog/fix_fix_error_in_performancesum_when_method.md delete mode 100644 changelog/new_add_new_performance_concurrent_monotonic_time_cop.md diff --git a/CHANGELOG.md b/CHANGELOG.md index b5dadb9233..f2f399b304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ ## master (unreleased) +### New features + +* [#267](https://github.com/rubocop/rubocop-performance/pull/267): Add new `Performance/ConcurrentMonotonicTime` cop. ([@koic][]) + +### Bug fixes + +* [#261](https://github.com/rubocop/rubocop-performance/issues/261): Fix a false negative for `Performance/RedundantBlockCall` when using `block.call` in a class method'. ([@koic][]) +* [#264](https://github.com/rubocop/rubocop-performance/pull/264): Fix error in Performance/Sum when method has no brackets. ([@mvz][]) + +### Changes + +* [#263](https://github.com/rubocop/rubocop-performance/pull/263): Unmark `AutoCorrect: false` from `Performance/StringInclude`. ([@koic][]) + ## 1.11.5 (2021-08-18) ### Bug fixes diff --git a/changelog/change_unmark_autocorrect_false_from_performance_string_include.md b/changelog/change_unmark_autocorrect_false_from_performance_string_include.md deleted file mode 100644 index b412b2c171..0000000000 --- a/changelog/change_unmark_autocorrect_false_from_performance_string_include.md +++ /dev/null @@ -1 +0,0 @@ -* [#263](https://github.com/rubocop/rubocop-performance/pull/263): Unmark `AutoCorrect: false` from `Performance/StringInclude`. ([@koic][]) diff --git a/changelog/fix_false_negative_for_performance_redundant_block_call.md b/changelog/fix_false_negative_for_performance_redundant_block_call.md deleted file mode 100644 index df0b697583..0000000000 --- a/changelog/fix_false_negative_for_performance_redundant_block_call.md +++ /dev/null @@ -1 +0,0 @@ -* [#261](https://github.com/rubocop/rubocop-performance/issues/261): Fix a false negative for `Performance/RedundantBlockCall` when using `block.call` in a class method'. ([@koic][]) diff --git a/changelog/fix_fix_error_in_performancesum_when_method.md b/changelog/fix_fix_error_in_performancesum_when_method.md deleted file mode 100644 index 587e6c273a..0000000000 --- a/changelog/fix_fix_error_in_performancesum_when_method.md +++ /dev/null @@ -1 +0,0 @@ -* [#264](https://github.com/rubocop/rubocop-performance/pull/264): Fix error in Performance/Sum when method has no brackets. ([@mvz][]) diff --git a/changelog/new_add_new_performance_concurrent_monotonic_time_cop.md b/changelog/new_add_new_performance_concurrent_monotonic_time_cop.md deleted file mode 100644 index d4b6e10da3..0000000000 --- a/changelog/new_add_new_performance_concurrent_monotonic_time_cop.md +++ /dev/null @@ -1 +0,0 @@ -* [#267](https://github.com/rubocop/rubocop-performance/pull/267): Add new `Performance/ConcurrentMonotonicTime` cop. ([@koic][])