From 42017cc6dba3d875ad3a63e97d2ae8e0dd63f283 Mon Sep 17 00:00:00 2001 From: Benjamin Quorning Date: Thu, 4 Apr 2024 23:12:20 +0200 Subject: [PATCH] Bump to v2.29.0 --- CHANGELOG.md | 2 ++ config/default.yml | 2 +- docs/antora.yml | 2 +- docs/modules/ROOT/pages/cops_rspec.adoc | 2 +- lib/rubocop/rspec/version.rb | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef48eaa5c..7a2835241 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.29.0 (2024-04-04) + - Fix an autocorrect error for `RSpec/ExpectActual`. ([@bquorning]) - Add new `RSpec/UndescriptiveLiteralsDescription` cop. ([@ydah]) diff --git a/config/default.yml b/config/default.yml index fb96a34d0..707e4578f 100644 --- a/config/default.yml +++ b/config/default.yml @@ -935,7 +935,7 @@ RSpec/SubjectStub: RSpec/UndescriptiveLiteralsDescription: Description: Description should be descriptive. Enabled: pending - VersionAdded: "<>" + VersionAdded: '2.29' Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/UndescriptiveLiteralsDescription RSpec/UnspecifiedException: diff --git a/docs/antora.yml b/docs/antora.yml index 51a533a15..64f6d89cf 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: ~ +version: '2.29' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_rspec.adoc b/docs/modules/ROOT/pages/cops_rspec.adoc index 3f424196d..5fe40bd02 100644 --- a/docs/modules/ROOT/pages/cops_rspec.adoc +++ b/docs/modules/ROOT/pages/cops_rspec.adoc @@ -5625,7 +5625,7 @@ end | Pending | Yes | No -| <> +| 2.29 | - |=== diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 0b7ac682a..e1b30df0c 100644 --- a/lib/rubocop/rspec/version.rb +++ b/lib/rubocop/rspec/version.rb @@ -4,7 +4,7 @@ module RuboCop module RSpec # Version information for the RSpec RuboCop plugin. module Version - STRING = '2.28.0' + STRING = '2.29.0' end end end