From 093a9fd52405c9d729aeddac6ab982edcaf1494e Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 12 Feb 2022 13:46:17 +0900 Subject: [PATCH] Cut 0.17.2 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/minitest/version.rb | 2 +- relnotes/v0.17.2.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v0.17.2.md diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b53d10..af6a740c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.17.2 (2022-02-12) + ### Bug fixes * [#159](https://github.com/rubocop/rubocop-minitest/issues/159): Fix a false positive for `Minitest/UnreachableAssertion` when using only one assertion method in `assert_raises` block. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index f6451f5c..31246552 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: 'master' +version: '0.17' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index 48b36d71..861fc1e5 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.17.1' + STRING = '0.17.2' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.17.2.md b/relnotes/v0.17.2.md new file mode 100644 index 00000000..44546e78 --- /dev/null +++ b/relnotes/v0.17.2.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#159](https://github.com/rubocop/rubocop-minitest/issues/159): Fix a false positive for `Minitest/UnreachableAssertion` when using only one assertion method in `assert_raises` block. ([@koic][]) + +[@koic]: https://github.com/koic