diff --git a/CHANGELOG.md b/CHANGELOG.md index 136eb28..b29c3a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ ## master (unreleased) +## 0.36.0 (2024-08-31) + ### Bug fixes * [#317](https://github.com/rubocop/rubocop-minitest/pull/317): Fix an error for `Minitest/MultipleAssertions` when using for-style loops. ([@earlopain][]) diff --git a/docs/antora.yml b/docs/antora.yml index 02c3684..1234f9d 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.36' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index 6dbe51c..00bdd1f 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.35.1' + STRING = '0.36.0' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.36.0.md b/relnotes/v0.36.0.md new file mode 100644 index 0000000..3d5b8c6 --- /dev/null +++ b/relnotes/v0.36.0.md @@ -0,0 +1,11 @@ +### Bug fixes + +* [#317](https://github.com/rubocop/rubocop-minitest/pull/317): Fix an error for `Minitest/MultipleAssertions` when using for-style loops. ([@earlopain][]) +* [#314](https://github.com/rubocop/rubocop-minitest/pull/314): Fix an error for `Minitest/SkipEnsure` when only `ensure` has a body. ([@earlopain][]) + +### Changes + +* [#314](https://github.com/rubocop/rubocop-minitest/pull/314): **(Breaking)** Raise a useful error when using a Cop in `AssertOffense` if the Cop's class is not defined. ([@brandoncc][]) + +[@earlopain]: https://github.com/earlopain +[@brandoncc]: https://github.com/brandoncc