diff --git a/CHANGELOG.md b/CHANGELOG.md index c468335b..136eb28d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,15 @@ ## master (unreleased) +### 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][]) + ## 0.35.1 (2024-07-11) ### New features @@ -615,3 +624,4 @@ [@amomchilov]: https://github.com/amomchilov [@earlopain]: https://github.com/earlopain [@jaredmoody]: https://github.com/jaredmoody +[@brandoncc]: https://github.com/brandoncc diff --git a/changelog/change_assert_offense_setup_fails_with_useful_message.md b/changelog/change_assert_offense_setup_fails_with_useful_message.md deleted file mode 100644 index 21a76c7f..00000000 --- a/changelog/change_assert_offense_setup_fails_with_useful_message.md +++ /dev/null @@ -1 +0,0 @@ -* [#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][]) diff --git a/changelog/fix_error_multiple_assertions.md b/changelog/fix_error_multiple_assertions.md deleted file mode 100644 index 8f3c6bbd..00000000 --- a/changelog/fix_error_multiple_assertions.md +++ /dev/null @@ -1 +0,0 @@ -* [#317](https://github.com/rubocop/rubocop-minitest/pull/317): Fix an error for `Minitest/MultipleAssertions` when using for-style loops. ([@earlopain][]) diff --git a/changelog/fix_error_skip_ensure.md b/changelog/fix_error_skip_ensure.md deleted file mode 100644 index 6ee410fd..00000000 --- a/changelog/fix_error_skip_ensure.md +++ /dev/null @@ -1 +0,0 @@ -* [#314](https://github.com/rubocop/rubocop-minitest/pull/314): Fix an error for `Minitest/SkipEnsure` when only `ensure` has a body. ([@earlopain][])