From 0323e4daf78bd418b5f85c8cd5363b7a355578d5 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 10 Apr 2022 14:26:54 +0900 Subject: [PATCH] Cut 0.19.1 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/minitest/version.rb | 2 +- relnotes/v0.19.1.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v0.19.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e531cb1..010af4c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.19.1 (2022-04-10) + ### Bug fixes * [#167](https://github.com/rubocop/rubocop-minitest/pull/167): Fix potential for valid Ruby code to be unparsable in `Minitest/DuplicateTestRun` cop. ([@gjtorikian][]) diff --git a/docs/antora.yml b/docs/antora.yml index 5fb5d9b0..ada8f2b0 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.19' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index f0613ffe..152cc99a 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.19.0' + STRING = '0.19.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.19.1.md b/relnotes/v0.19.1.md new file mode 100644 index 00000000..acf2e8a1 --- /dev/null +++ b/relnotes/v0.19.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#167](https://github.com/rubocop/rubocop-minitest/pull/167): Fix potential for valid Ruby code to be unparsable in `Minitest/DuplicateTestRun` cop. ([@gjtorikian][]) + +[@gjtorikian]: https://github.com/gjtorikian