From b5efb4fce046ce0fc17bbf10ec8f46a065ef9894 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 1 Jan 2021 11:32:51 +0900 Subject: [PATCH] Cut 1.9.2 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/performance/version.rb | 2 +- relnotes/v1.9.2.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v1.9.2.md diff --git a/CHANGELOG.md b/CHANGELOG.md index d146a1e23f..42a5c979cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.9.2 (2021-01-01) + ### Bug fixes * [#201](https://github.com/rubocop-hq/rubocop-performance/pull/201): Fix an incorrect auto-correct for `Performance/ReverseEach` when using multi-line `reverse.each` with leading dot. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index 8029079a95..9b9b311138 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: master +version: '1.9' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index f98f9145d6..2f4f2209a9 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.9.1' + STRING = '1.9.2' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v1.9.2.md b/relnotes/v1.9.2.md new file mode 100644 index 0000000000..a0289eb3d1 --- /dev/null +++ b/relnotes/v1.9.2.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#201](https://github.com/rubocop-hq/rubocop-performance/pull/201): Fix an incorrect auto-correct for `Performance/ReverseEach` when using multi-line `reverse.each` with leading dot. ([@koic][]) + +[@koic]: https://github.com/koic