diff --git a/CHANGELOG.md b/CHANGELOG.md index 8beea25f..8b172cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.17.0 (2021-11-23) + ### New features * [#155](https://github.com/rubocop/rubocop-minitest/issues/155): Provide `assert_offense`, `assert_correction`, and `assert_no_offenses` testing APIs for custom Minitest cop development. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index e4970cf0..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 72fae384..24fe5f9f 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.16.0' + STRING = '0.17.0' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.17.0.md b/relnotes/v0.17.0.md new file mode 100644 index 00000000..97cc32d8 --- /dev/null +++ b/relnotes/v0.17.0.md @@ -0,0 +1,5 @@ +### New features + +* [#155](https://github.com/rubocop/rubocop-minitest/issues/155): Provide `assert_offense`, `assert_correction`, and `assert_no_offenses` testing APIs for custom Minitest cop development. ([@koic][]) + +[@koic]: https://github.com/koic