File tree 5 files changed +6
-4
lines changed
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.6.0 (2025-04-18)
6
+
5
7
- Fix false positive in ` RSpec/Pending ` , where it would mark the default block ` it ` as an offense. ([ @bquorning ] )
6
8
- Fix issue when ` Style/ContextWording ` is configured with a Prefix being interpreted as a boolean, like ` on ` . ([ @sakuro ] )
7
9
- Add new ` RSpec/IncludeExamples ` cop to enforce using ` it_behaves_like ` over ` include_examples ` . ([ @dvandersluis ] )
Original file line number Diff line number Diff line change @@ -535,7 +535,7 @@ RSpec/ImplicitSubject:
535
535
RSpec/IncludeExamples :
536
536
Description : Checks for usage of `include_examples`.
537
537
Enabled : pending
538
- VersionAdded : " <<next>> "
538
+ VersionAdded : ' 3.6 '
539
539
Reference : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/IncludeExamples
540
540
541
541
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.6 '
4
4
nav :
5
5
- modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change @@ -2773,7 +2773,7 @@ it { expect(named_subject).to be_truthy }
2773
2773
| Pending
2774
2774
| Yes
2775
2775
| Always
2776
- | <<next>>
2776
+ | 3.6
2777
2777
| -
2778
2778
|===
2779
2779
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.5 .0'
7
+ STRING = '3.6 .0'
8
8
end
9
9
end
10
10
end
You can’t perform that action at this time.
0 commit comments