diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d969dd65..929216eaa 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]) - Add new `RSpec/EmptyOutput` cop. ([@bquorning]) diff --git a/config/default.yml b/config/default.yml index 0544dcb08..4c2e03c35 100644 --- a/config/default.yml +++ b/config/default.yml @@ -941,7 +941,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 bd432e2b9..59031081f 100644 --- a/docs/modules/ROOT/pages/cops_rspec.adoc +++ b/docs/modules/ROOT/pages/cops_rspec.adoc @@ -5656,7 +5656,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