diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f22b96e..4efa78de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 0.15.1 (2021-09-26) + ### Bug fixes * [#143](https://github.com/rubocop/rubocop-minitest/issues/143): Fix an error for `Minitest/LiteralAsActualArgumentTest` when expected and actual arguments are literals. ([@koic][]) diff --git a/docs/antora.yml b/docs/antora.yml index e4970cf0..9f03a294 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.15' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/minitest/version.rb b/lib/rubocop/minitest/version.rb index bea1c5c5..5ad3ceef 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.15.0' + STRING = '0.15.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v0.15.1.md b/relnotes/v0.15.1.md new file mode 100644 index 00000000..4ead7998 --- /dev/null +++ b/relnotes/v0.15.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#143](https://github.com/rubocop/rubocop-minitest/issues/143): Fix an error for `Minitest/LiteralAsActualArgumentTest` when expected and actual arguments are literals. ([@koic][]) + +[@koic]: https://github.com/koic