From aac3a77daa7e488a93c750e3b5ae59882346a3ae Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 11 Jul 2021 17:09:25 +0900 Subject: [PATCH] Cut 2.11.3 --- CHANGELOG.md | 2 ++ docs/antora.yml | 2 +- lib/rubocop/rails/version.rb | 2 +- relnotes/v2.11.3.md | 5 +++++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 relnotes/v2.11.3.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 0997985838..bacf0dd39d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master (unreleased) +## 2.11.3 (2021-07-11) + ### Bug fixes * [#517](https://github.com/rubocop/rubocop-rails/pull/517): Fix an issue for `Rails/UniqueValidationWithoutIndex` when validating uniqueness with a polymorphic scope. ([@theunraveler][]) diff --git a/docs/antora.yml b/docs/antora.yml index 34b6c248ba..dd00a1f623 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.11' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rails/version.rb b/lib/rubocop/rails/version.rb index 2af167ad41..7f9cab7da1 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.11.2' + STRING = '2.11.3' def self.document_version STRING.match('\d+\.\d+').to_s diff --git a/relnotes/v2.11.3.md b/relnotes/v2.11.3.md new file mode 100644 index 0000000000..f3eaec5c2c --- /dev/null +++ b/relnotes/v2.11.3.md @@ -0,0 +1,5 @@ +### Bug fixes + +* [#517](https://github.com/rubocop/rubocop-rails/pull/517): Fix an issue for `Rails/UniqueValidationWithoutIndex` when validating uniqueness with a polymorphic scope. ([@theunraveler][]) + +[@theunraveler]: https://github.com/theunraveler