From 263fea7cd8a630c61615866fabd2c232aeb625f6 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Wed, 27 Sep 2023 11:03:57 +0900 Subject: [PATCH] Cut 0.32.2 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/minitest/version.rb | 2 +- relnotes/v0.32.2.md | 10 ++++++++++ 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 relnotes/v0.32.2.md diff --git a/CHANGELOG.md b/CHANGELOG.md index feb6108b..1bef86f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ ## master (unreleased) +## 0.32.2 (2023-09-27) + ### Bug fixes * [#263](https://github.com/rubocop/rubocop-minitest/pull/263): Fix an error for `Minitest/AssertOperator` and `Minitest/RefuteOperator` when using unary operation argument. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index 02c36842..08faa721 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.32' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index 64476bbe..c74cc9cb 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.32.1' + STRING = '0.32.2' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.32.2.md b/relnotes/v0.32.2.md new file mode 100644 index 00000000..530c2494 --- /dev/null +++ b/relnotes/v0.32.2.md @@ -0,0 +1,10 @@ +### Bug fixes + +* [#263](https://github.com/rubocop/rubocop-minitest/pull/263): Fix an error for `Minitest/AssertOperator` and `Minitest/RefuteOperator` when using unary operation argument. ([@koic][]) + +### Changes + +* [#264](https://github.com/rubocop/rubocop-minitest/pull/264): Make `Minitest/AssertOperator` and `Minitest/RefuteOperator` allow index access with `[]`. ([@flavorjones][]) + +[@koic]: https://github.com/koic +[@flavorjones]: https://github.com/flavorjones