From 8e90012b8f9d26a395759e660bb45c4da65f4027 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 18 Aug 2021 12:11:21 +0900 Subject: [PATCH] Cut 1.11.5 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/performance/version.rb | 2 +- relnotes/v1.11.5.md | 6 ++++++ 4 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 relnotes/v1.11.5.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 469555b129..610ad42679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.11.5 (2021-08-18) + ### Bug fixes * [#255](https://github.com/rubocop/rubocop-performance/issues/255): Fix a false positive for `Performance/RedundantEqualityComparisonBlock` when using block argument is used for an argument of operand. ([@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 ecab5bd04c..5fdad36993 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.4' + STRING = '1.11.5' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v1.11.5.md b/relnotes/v1.11.5.md new file mode 100644 index 0000000000..1068e16847 --- /dev/null +++ b/relnotes/v1.11.5.md @@ -0,0 +1,6 @@ +### Bug fixes + +* [#255](https://github.com/rubocop/rubocop-performance/issues/255): Fix a false positive for `Performance/RedundantEqualityComparisonBlock` when using block argument is used for an argument of operand. ([@koic][]) +* [#257](https://github.com/rubocop/rubocop-performance/issues/257): Fix an incorrect auto-correct for `Performance/MapCompact` when using multi-line `collection.map { ... }.compact` as a method argument. ([@koic][]) + +[@koic]: https://github.com/koic