From 95a95c9014cf8274966ae63e73c24c2b9d407965 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 19 Jun 2023 17:00:49 +0900 Subject: [PATCH] Cut 2.20.1 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/rails/version.rb | 2 +- relnotes/v2.20.1.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v2.20.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index fe28f24bc3..3ae92bf3eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ ## master (unreleased) +## 2.20.1 (2023-06-19) + ### Bug fixes * [#1021](https://github.com/rubocop/rubocop-rails/pull/1021): Fix an error for `Rails/UniqueValidationWithoutIndex`. ([@ydah][]) diff --git a/docs/antora.yml b/docs/antora.yml index 9e0ff48acb..cffb948bd1 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: ~ +version: '2.20' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rails/version.rb b/lib/rubocop/rails/version.rb index 6d7b20f839..9d402e374f 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.20.0' + STRING = '2.20.1' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v2.20.1.md b/relnotes/v2.20.1.md new file mode 100644 index 0000000000..454687cd57 --- /dev/null +++ b/relnotes/v2.20.1.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#1021](https://github.com/rubocop/rubocop-rails/pull/1021): Fix an error for `Rails/UniqueValidationWithoutIndex`. ([@ydah][]) + +[@ydah]: https://github.com/ydah