From 7d209646437c6c88474ff68e9a26450e0f1068cf Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 25 Dec 2023 09:46:55 +0900 Subject: [PATCH] Cut 1.20.1 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- docs/modules/ROOT/pages/cops_performance.adoc | 6 ++++++ lib/rubocop/performance/version.rb | 2 +- relnotes/v1.20.1.md | 5 +++++ 5 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 relnotes/v1.20.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index c2343dfa93..82f628d42f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ ## master (unreleased) +## 1.20.1 (2023-12-25) + ### Bug fixes * [#428](https://github.com/rubocop/rubocop-performance/pull/428): Fix false negatives for `Performance/StringIdentifierArgument` when using multiple string arguments. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index 21b1815a34..186bc944d1 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -2,6 +2,6 @@ name: rubocop-performance title: RuboCop Performance # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. -version: ~ +version: '1.20' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_performance.adoc b/docs/modules/ROOT/pages/cops_performance.adoc index d25ab7891e..08be172b31 100644 --- a/docs/modules/ROOT/pages/cops_performance.adoc +++ b/docs/modules/ROOT/pages/cops_performance.adoc @@ -1,3 +1,9 @@ +//// + Do NOT edit this file by hand directly, as it is automatically generated. + + Please make any necessary changes to the cop documentation within the source files themselves. +//// + = Performance == Performance/AncestorsInclude diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index 567e69737a..12755a5119 100644 --- a/lib/rubocop/performance/version.rb +++ b/lib/rubocop/performance/version.rb @@ -4,7 +4,7 @@ module RuboCop module Performance # This module holds the RuboCop Performance version information. module Version - STRING = '1.20.0' + STRING = '1.20.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v1.20.1.md b/relnotes/v1.20.1.md new file mode 100644 index 0000000000..7012a54b83 --- /dev/null +++ b/relnotes/v1.20.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#428](https://github.com/rubocop/rubocop-performance/pull/428): Fix false negatives for `Performance/StringIdentifierArgument` when using multiple string arguments. ([@koic][]) + +[@koic]: https://github.com/koic