From 7aeecf7ef884e7d968214def81ae8fad4cac4eaf Mon Sep 17 00:00:00 2001 From: ydah Date: Wed, 12 Nov 2025 21:24:49 +0900 Subject: [PATCH] Bump version to 2.32.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 e5f5a0f9..b2d63657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.32.0 (2025-11-12) + - Add `RSpecRails/HttpStatusNameConsistency` cop. ([@taketo1113]) - Support correcting `assert_response` assertion in in `RSpec/Rails/MinitestAssertions`. ([@nzlaura]) diff --git a/config/default.yml b/config/default.yml index 7224693c..a8c35fbf 100644 --- a/config/default.yml +++ b/config/default.yml @@ -38,7 +38,7 @@ RSpecRails/HttpStatus: RSpecRails/HttpStatusNameConsistency: Description: Enforces consistency by using the current HTTP status names. Enabled: pending - VersionAdded: "<>" + VersionAdded: '2.32' Reference: https://www.rubydoc.info/gems/rubocop-rspec_rails/RuboCop/Cop/RSpecRails/HttpStatusNameConsistency RSpecRails/InferredSpecType: diff --git a/docs/antora.yml b/docs/antora.yml index 86387acc..4a34dfee 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec_rails title: RuboCop RSpec Rails -version: ~ +version: '2.32' nav: - modules/ROOT/nav.adoc diff --git a/docs/modules/ROOT/pages/cops_rspecrails.adoc b/docs/modules/ROOT/pages/cops_rspecrails.adoc index 7f41bd58..65954658 100644 --- a/docs/modules/ROOT/pages/cops_rspecrails.adoc +++ b/docs/modules/ROOT/pages/cops_rspecrails.adoc @@ -220,7 +220,7 @@ it { is_expected.to have_http_status :ok } | Pending | Yes | Always -| <> +| 2.32 | - |=== diff --git a/lib/rubocop/rspec_rails/version.rb b/lib/rubocop/rspec_rails/version.rb index daa15f5a..fceac332 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.31.0' + STRING = '2.32.0' end end end