diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4f2cd4bd..99581ba47e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## master (unreleased) +## 2.10.1 (2021-05-06) + +### Bug fixes + * [#478](https://github.com/rubocop/rubocop-rails/pull/478): Fix `Rails/ReversibleMigrationMethodDefinition` cop's `Include`. ([@rhymes][]) ## 2.10.0 (2021-05-05) diff --git a/docs/antora.yml b/docs/antora.yml index 34b6c248ba..04ad8e6326 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -2,6 +2,6 @@ name: rubocop-rails title: RuboCop Rails # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. -version: master +version: '2.10' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rails/version.rb b/lib/rubocop/rails/version.rb index 675c149fa0..495e12daad 100644 --- a/lib/rubocop/rails/version.rb +++ b/lib/rubocop/rails/version.rb @@ -4,7 +4,7 @@ module RuboCop module Rails # This module holds the RuboCop Rails version information. module Version - STRING = '2.10.0' + STRING = '2.10.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v2.10.1.md b/relnotes/v2.10.1.md new file mode 100644 index 0000000000..a0f003c4a3 --- /dev/null +++ b/relnotes/v2.10.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#478](https://github.com/rubocop/rubocop-rails/pull/478): Fix `Rails/ReversibleMigrationMethodDefinition` cop's `Include`. ([@rhymes][]) + +[@rhymes]: https://github.com/rhymes