From 701d21ccd30c6940ba1c324b5ee6d9ebb48e86b9 Mon Sep 17 00:00:00 2001 From: ydah Date: Sat, 8 Jun 2024 11:03:35 +0900 Subject: [PATCH] Release v2.29.0 --- CHANGELOG.md | 2 ++ config/default.yml | 2 +- docs/antora.yml | 2 +- docs/modules/ROOT/pages/cops_rspecrails.adoc | 2 +- lib/rubocop/rspec_rails/version.rb | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4bfc14f..63a237d3 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 005ae859..51ec8889 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 86387acc..bde1de1f 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 12097dd1..685e6b6c 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 611ebc87..a8245748 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