Skip to content

Commit dc8f6ac

Browse files
authored
Merge pull request #2133 from rubocop/bump
Bump version to 3.8.0
2 parents 44b9294 + c271e68 commit dc8f6ac

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Master (Unreleased)
44

5+
## 3.8.0 (2025-11-12)
6+
57
- Add new cop `RSpec/LeakyLocalVariable`. ([@lovro-bikic])
68
- Bump RuboCop requirement to +1.81. ([@ydah])
79
- Fix a false positive for `RSpec/LetSetup` when `let!` used in outer scope. ([@ydah])

config/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ RSpec/LeakyConstantDeclaration:
613613
RSpec/LeakyLocalVariable:
614614
Description: Checks for local variables from outer scopes used inside examples.
615615
Enabled: pending
616-
VersionAdded: "<<next>>"
616+
VersionAdded: '3.8'
617617
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/LeakyLocalVariable
618618

619619
RSpec/LetBeforeExamples:
@@ -945,7 +945,7 @@ RSpec/SpecFilePathFormat:
945945
- active_support
946946
EnforcedInflector: default
947947
VersionAdded: '2.24'
948-
VersionChanged: "<<next>>"
948+
VersionChanged: '3.8'
949949
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/SpecFilePathFormat
950950

951951
RSpec/SpecFilePathSuffix:

docs/antora.yml

Lines changed: 1 addition & 1 deletion
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.8'
44
nav:
55
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/cops_rspec.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3412,7 +3412,7 @@ end
34123412
| Pending
34133413
| Yes
34143414
| No
3415-
| <<next>>
3415+
| 3.8
34163416
| -
34173417
|===
34183418
@@ -6015,7 +6015,7 @@ context 'Something', :z, variable, :a, :b
60156015
| Yes
60166016
| No
60176017
| 2.24
6018-
| <<next>>
6018+
| 3.8
60196019
|===
60206020
60216021
Checks that spec file paths are consistent and well-formed.

lib/rubocop/rspec/version.rb

Lines changed: 1 addition & 1 deletion
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.7.0'
7+
STRING = '3.8.0'
88
end
99
end
1010
end

0 commit comments

Comments
 (0)