From 2e13b10e2c586ecd8b5091889901d5a501e77a6c Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 8 Jan 2024 15:36:44 +0900 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 4 ++++ .../fix_false_positive_for_string_identifier_argument.md | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) delete mode 100644 changelog/fix_false_positive_for_string_identifier_argument.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f628d42f..d173c261b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ ## master (unreleased) +### Bug fixes + +* [#425](https://github.com/rubocop/rubocop-performance/issues/425): Fix a false positive for `Performance/StringIdentifierArgument` when using string interpolation with methods that don't support symbols with `::` inside them. ([@earlopain][]) + ## 1.20.1 (2023-12-25) ### Bug fixes diff --git a/changelog/fix_false_positive_for_string_identifier_argument.md b/changelog/fix_false_positive_for_string_identifier_argument.md deleted file mode 100644 index 4c5a3e1690..0000000000 --- a/changelog/fix_false_positive_for_string_identifier_argument.md +++ /dev/null @@ -1 +0,0 @@ -* [#425](https://github.com/rubocop/rubocop-performance/issues/425): Fix a false positive for `Performance/StringIdentifierArgument` when using string interpolation with methods that don't support symbols with `::` inside them. ([@earlopain][])