diff --git a/CHANGELOG.md b/CHANGELOG.md index 2856d22d..6ad3cec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.22.2 (2022-10-01) + ### Bug fixes * [#185](https://github.com/rubocop/rubocop-minitest/pull/185): Fix an incorrect autocorrect for `Minitest/RefuteMatch` when `refute` with `match` and RHS is a regexp literal. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index 02c36842..f611c8fc 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -2,6 +2,6 @@ name: rubocop-minitest title: RuboCop Minitest # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. -version: ~ +version: '0.22' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index 9beea158..dab47adc 100644 --- a/lib/rubocop/minitest/version.rb +++ b/lib/rubocop/minitest/version.rb @@ -4,7 +4,7 @@ module RuboCop module Minitest # This module holds the RuboCop Minitest version information. module Version - STRING = '0.22.1' + STRING = '0.22.2' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.22.2.md b/relnotes/v0.22.2.md new file mode 100644 index 00000000..75f7473e --- /dev/null +++ b/relnotes/v0.22.2.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#185](https://github.com/rubocop/rubocop-minitest/pull/185): Fix an incorrect autocorrect for `Minitest/RefuteMatch` when `refute` with `match` and RHS is a regexp literal. ([@koic][]) + +[@koic]: https://github.com/koic