Skip to content

Commit a71a1c0

Browse files
committed
Release v0.6.0
1 parent 468d7ee commit a71a1c0

File tree

4 files changed

+32
-5
lines changed

4 files changed

+32
-5
lines changed

.rubocop.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ AllCops:
1010
- "tmp/**/*"
1111
- "vendor/**/*"
1212

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+
1329
Layout/FirstArrayElementIndentation:
1430
EnforcedStyle: consistent
1531

@@ -19,9 +35,6 @@ Layout/MultilineMethodCallIndentation:
1935
Layout/MultilineOperationIndentation:
2036
EnforcedStyle: indented
2137

22-
# Metrics/AbcSize:
23-
# Max: 30
24-
2538
Metrics/BlockLength:
2639
Exclude:
2740
- "spec/**/*"

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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+
115
## [0.5.0] - 2021-09-03
216

317
### Fixed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rspec-tracer (0.5.0)
4+
rspec-tracer (0.6.0)
55
docile (~> 1.1, >= 1.1.0)
66
rspec-core (~> 3.6, >= 3.6.0)
77

lib/rspec_tracer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RSpecTracer
4-
VERSION = '0.5.0'
4+
VERSION = '0.6.0'
55
end

0 commit comments

Comments
 (0)