From 952455b8842d87e4ab9f879740144e5b2689998e Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 2 May 2021 00:40:09 +0900 Subject: [PATCH] Cut 1.11.1 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/performance/version.rb | 2 +- relnotes/v1.11.1.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v1.11.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 305bccd39d..af3e03eece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.11.1 (2021-05-02) + ### Bug fixes * [#236](https://github.com/rubocop/rubocop-performance/issues/236): Fix an incorrect auto-correct for `Performance/MapCompact` when using multi-line leading dot method calls. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index b844f36b65..45ba1ee6a3 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.11' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index 81cf97a381..5dbd18e906 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.11.0' + STRING = '1.11.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v1.11.1.md b/relnotes/v1.11.1.md new file mode 100644 index 0000000000..14d8f93fbc --- /dev/null +++ b/relnotes/v1.11.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#236](https://github.com/rubocop/rubocop-performance/issues/236): Fix an incorrect auto-correct for `Performance/MapCompact` when using multi-line leading dot method calls. ([@koic][]) + +[@koic]: https://github.com/koic