Skip to content

Commit bc888bb

Browse files
authored
Merge pull request #2023 from rubocop/release
Release v3.4.0
2 parents cbb3632 + 775b4ee commit bc888bb

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Master (Unreleased)
44

5+
## 3.4.0 (2025-01-20)
6+
57
- Fix `RSpec/SortMetadata` cop to limit sorting to trailing metadata arguments. ([@cbliard])
68
- Replace `RSpec/StringAsInstanceDoubleConstant` with `RSpec/VerifiedDoubleReference` configured to only support constant class references. ([@corsonknowles])
79
- Fix `RSpec/EmptyExampleGroup` cop false positive when a simple conditional is used inside an iterator. ([@lovro-bikic])

config/default.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ RSpec/VerifiedDoubleReference:
989989
Enabled: true
990990
SafeAutoCorrect: false
991991
VersionAdded: 2.10.0
992-
VersionChanged: "<<next>>"
992+
VersionChanged: '3.4'
993993
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/VerifiedDoubleReference
994994

995995
RSpec/VerifiedDoubles:

docs/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rubocop-rspec
22
title: RuboCop RSpec
3-
version: ~
3+
version: '3.4'
44
nav:
55
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/cops_rspec.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6320,7 +6320,7 @@ let(:userFood_2) { 'fettuccine' }
63206320
| Yes
63216321
| Always (Unsafe)
63226322
| 2.10.0
6323-
| <<next>>
6323+
| 3.4
63246324
|===
63256325
63266326
Checks for consistent verified double reference style.

lib/rubocop/rspec/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module RuboCop
44
module RSpec
55
# Version information for the RSpec RuboCop plugin.
66
module Version
7-
STRING = '3.3.0'
7+
STRING = '3.4.0'
88
end
99
end
1010
end

0 commit comments

Comments
 (0)