From 9de39e5ce7fd1a04d6da32a02f2bad7b7f0a4704 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 6 Mar 2023 23:50:21 +0900 Subject: [PATCH] Cut 0.29.0 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/minitest/version.rb | 2 +- relnotes/v0.29.0.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v0.29.0.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eb98c5d..41b8aa01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ ## master (unreleased) +## 0.29.0 (2023-03-06) + ### New features * [#238](https://github.com/rubocop/rubocop-minitest/pull/238): Support `it`/`test` testing blocks as test cases. ([@fatkodima][]) diff --git a/docs/antora.yml b/docs/antora.yml index 02c36842..d5257754 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.29' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index 4a47c1dc..f4bc7fc5 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.28.0' + STRING = '0.29.0' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.29.0.md b/relnotes/v0.29.0.md new file mode 100644 index 00000000..3f14323f --- /dev/null +++ b/relnotes/v0.29.0.md @@ -0,0 +1,5 @@ +### New features + +* [#238](https://github.com/rubocop/rubocop-minitest/pull/238): Support `it`/`test` testing blocks as test cases. ([@fatkodima][]) + +[@fatkodima]: https://github.com/fatkodima