diff --git a/CHANGELOG.md b/CHANGELOG.md index c4bfc14..63a237d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.29.0 (2024-06-08) + - Support `AutoCorrect: contextual` option for LSP. ([@ydah]) ## 2.28.3 (2024-04-11) diff --git a/config/default.yml b/config/default.yml index 005ae85..51ec888 100644 --- a/config/default.yml +++ b/config/default.yml @@ -74,7 +74,7 @@ RSpecRails/NegationBeValid: - be_invalid Enabled: pending VersionAdded: '2.23' - VersionChanged: "<>" + VersionChanged: '2.29' Reference: https://www.rubydoc.info/gems/rubocop-rspec_rails/RuboCop/Cop/RSpecRails/NegationBeValid RSpecRails/TravelAround: diff --git a/docs/antora.yml b/docs/antora.yml index 86387ac..bde1de1 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec_rails title: RuboCop RSpec Rails -version: ~ +version: '2.29' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_rspecrails.adoc b/docs/modules/ROOT/pages/cops_rspecrails.adoc index 12097dd..685e6b6 100644 --- a/docs/modules/ROOT/pages/cops_rspecrails.adoc +++ b/docs/modules/ROOT/pages/cops_rspecrails.adoc @@ -323,7 +323,7 @@ expect(a).to be(false) | No | Command-line only (Unsafe) | 2.23 -| <> +| 2.29 |=== Enforces use of `be_invalid` or `not_to` for negated be_valid. diff --git a/lib/rubocop/rspec_rails/version.rb b/lib/rubocop/rspec_rails/version.rb index 611ebc8..a824574 100644 --- a/lib/rubocop/rspec_rails/version.rb +++ b/lib/rubocop/rspec_rails/version.rb @@ -4,7 +4,7 @@ module RuboCop module RSpecRails # Version information for the RSpec Rails RuboCop plugin. module Version - STRING = '2.28.3' + STRING = '2.29.0' end end end