File tree Expand file tree Collapse file tree 4 files changed +32
-5
lines changed Expand file tree Collapse file tree 4 files changed +32
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,22 @@ AllCops:
10
10
- " tmp/**/*"
11
11
- " vendor/**/*"
12
12
13
+ Layout/ClassStructure :
14
+ Enabled : true
15
+ Categories :
16
+ module_inclusion :
17
+ - include
18
+ - prepend
19
+ - extend
20
+ ExpectedOrder :
21
+ - module_inclusion
22
+ - constants
23
+ - public_class_methods
24
+ - initializer
25
+ - instance_methods
26
+ - protected_methods
27
+ - private_methods
28
+
13
29
Layout/FirstArrayElementIndentation :
14
30
EnforcedStyle : consistent
15
31
@@ -19,9 +35,6 @@ Layout/MultilineMethodCallIndentation:
19
35
Layout/MultilineOperationIndentation :
20
36
EnforcedStyle : indented
21
37
22
- # Metrics/AbcSize:
23
- # Max: 30
24
-
25
38
Metrics/BlockLength :
26
39
Exclude :
27
40
- " spec/**/*"
Original file line number Diff line number Diff line change
1
+ ## [ 0.6.0] - 2021-09-05
2
+
3
+ ### Added
4
+
5
+ - Improved dependency change detection (#18 )
6
+ - Flaky tests detection (#19 )
7
+ - Exclude vendor files from analysis (#21 )
8
+ - Report elapsed time at various stages (#23 )
9
+
10
+ ### Note
11
+
12
+ The first run on this version will not use any cache on the CI because the number
13
+ of files changed from eight to nine, so there will be no appropriate cache to use.
14
+
1
15
## [ 0.5.0] - 2021-09-03
2
16
3
17
### Fixed
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- rspec-tracer (0.5 .0 )
4
+ rspec-tracer (0.6 .0 )
5
5
docile (~> 1.1 , >= 1.1.0 )
6
6
rspec-core (~> 3.6 , >= 3.6.0 )
7
7
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module RSpecTracer
4
- VERSION = '0.5 .0'
4
+ VERSION = '0.6 .0'
5
5
end
You can’t perform that action at this time.
0 commit comments