diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d6f20786..4c4ca72f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.30.0 (2024-06-03) + - Add new `RSpec/ExpectInLet` cop. ([@yasu551]) ## 2.29.2 (2024-05-02) diff --git a/config/default.yml b/config/default.yml index 2ae7f4f33..02fe6ef6e 100644 --- a/config/default.yml +++ b/config/default.yml @@ -450,7 +450,7 @@ RSpec/ExpectInHook: RSpec/ExpectInLet: Description: Do not use `expect` in let. Enabled: pending - VersionAdded: "<>" + VersionAdded: '2.30' Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ExpectInLet RSpec/ExpectOutput: diff --git a/docs/antora.yml b/docs/antora.yml index 51a533a15..043def678 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: ~ +version: '2.30' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_rspec.adoc b/docs/modules/ROOT/pages/cops_rspec.adoc index 55d731e46..c0f1ff8ef 100644 --- a/docs/modules/ROOT/pages/cops_rspec.adoc +++ b/docs/modules/ROOT/pages/cops_rspec.adoc @@ -2050,7 +2050,7 @@ end | Pending | Yes | No -| <> +| 2.30 | - |=== diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 001719a71..8c637c6a9 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.29.2' + STRING = '2.30.0' end end end