diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e899d123..2f0cd75192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 1.13.2 (2022-01-16) + ### Bug fixes * [#281](https://github.com/rubocop/rubocop-performance/issues/281): Fix an error for `Performance/BlockGivenWithExplicitBlock` when using Ruby 3.1's anonymous block forwarding. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index b844f36b65..1e87a654fa 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.13' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/performance/version.rb b/lib/rubocop/performance/version.rb index d4ba6ab85e..2fcc165363 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.13.1' + STRING = '1.13.2' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v1.13.2.md b/relnotes/v1.13.2.md new file mode 100644 index 0000000000..138e822dc2 --- /dev/null +++ b/relnotes/v1.13.2.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#281](https://github.com/rubocop/rubocop-performance/issues/281): Fix an error for `Performance/BlockGivenWithExplicitBlock` when using Ruby 3.1's anonymous block forwarding. ([@koic][]) + +[@koic]: https://github.com/koic