File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Master (Unreleased)
4
4
5
+ ## 3.7.0 (2025-09-01)
6
+
5
7
- Mark ` RSpec/IncludeExamples ` as ` SafeAutoCorrect: false ` . ([ @yujideveloper ] )
6
8
- Fix a false positive for ` RSpec/LeakyConstantDeclaration ` when defining constants in explicit namespaces. ([ @naveg ] )
7
9
- Add support for error matchers (` raise_exception ` and ` raise_error ` ) to ` RSpec/Dialect ` . ([ @lovro-bikic ] )
Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ RSpec/IncludeExamples:
544
544
Enabled : pending
545
545
SafeAutoCorrect : false
546
546
VersionAdded : ' 3.6'
547
- VersionChanged : " <<next>> "
547
+ VersionChanged : ' 3.7 '
548
548
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/IncludeExamples
549
549
550
550
RSpec/IndexedLet :
Original file line number Diff line number Diff line change 1
1
name : rubocop-rspec
2
2
title : RuboCop RSpec
3
- version : ~
3
+ version : ' 3.7 '
4
4
nav :
5
5
- modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change @@ -2782,7 +2782,7 @@ it { expect(named_subject).to be_truthy }
2782
2782
| Yes
2783
2783
| Always (Unsafe)
2784
2784
| 3.6
2785
- | <<next>>
2785
+ | 3.7
2786
2786
|===
2787
2787
2788
2788
Checks for usage of `include_examples`.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module RuboCop
4
4
module RSpec
5
5
# Version information for the RSpec RuboCop plugin.
6
6
module Version
7
- STRING = '3.6 .0'
7
+ STRING = '3.7 .0'
8
8
end
9
9
end
10
10
end
You can’t perform that action at this time.
0 commit comments