File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 22
33## Master (Unreleased)
44
5+ ## 2.5.0 (2021-09-21)
6+
57* Declare autocorrect as unsafe for ` ExpectChange ` . ([ @francois-ferrandis ] [ ] )
68* Fix each example for ` RSpec/HookArgument ` . ([ @lokhi ] [ ] )
79* Exclude unrelated Rails directories from ` RSpec/DescribeClass ` . ([ @MothOnMars ] [ ] )
810* Add ` RSpec/ExcessiveDocstringSpacing ` cop. ([ @G-Rath ] [ ] )
911* Add ` RSpec/SubjectDeclaration ` cop. ([ @dswij ] [ ] )
1012* Fix excessive whitespace removal in ` RSpec/EmptyHook ` autocorrection. ([ @pirj ] [ ] )
1113* Bump RuboCop requirement to v1.19.0. ([ @pirj ] [ ] )
12- * Fix false positive in ` RSpec/IteratedExpectation ` when there is single, non-espectation statement in the block body. ([ @Darhazer ] [ ] )
14+ * Fix false positive in ` RSpec/IteratedExpectation ` when there is single, non-expectation statement in the block body. ([ @Darhazer ] [ ] )
1315
1416## 2.4.0 (2021-06-09)
1517
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ RSpec/DescribeClass:
170170 - mailbox
171171 - aruba
172172 VersionAdded : ' 1.0'
173- VersionChanged : 2.4.1
173+ VersionChanged : ' 2.5 '
174174 StyleGuide : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/DescribeClass
175175
176176RSpec/DescribeMethod :
@@ -311,7 +311,7 @@ RSpec/ExpectChange:
311311 - block
312312 SafeAutoCorrect : false
313313 VersionAdded : ' 1.22'
314- VersionChanged : 2.5.0
314+ VersionChanged : ' 2.5'
315315 StyleGuide : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/ExpectChange
316316
317317RSpec/ExpectInHook :
Original file line number Diff line number Diff line change 11name : rubocop-rspec
22title : RuboCop RSpec
3- version : master
3+ version : ' 2.5 '
44nav :
55 - modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change 399399| Yes
400400| No
401401| 1.0
402- | 2.4.1
402+ | 2.5
403403|===
404404
405405Check that the first argument to the top-level describe is a constant.
@@ -1368,7 +1368,7 @@ expect(name).to eq("John")
13681368| Yes
13691369| Yes (Unsafe)
13701370| 1.22
1371- | 2.5.0
1371+ | 2.5
13721372|===
13731373
13741374Checks for consistent style of change matcher.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module RuboCop
44 module RSpec
55 # Version information for the RSpec RuboCop plugin.
66 module Version
7- STRING = '2.4 .0'
7+ STRING = '2.5 .0'
88 end
99 end
1010end
You can’t perform that action at this time.
0 commit comments