Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
avmnu-sng committed Sep 5, 2021
1 parent 468d7ee commit a71a1c0
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
19 changes: 16 additions & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,22 @@ AllCops:
- "tmp/**/*"
- "vendor/**/*"

Layout/ClassStructure:
Enabled: true
Categories:
module_inclusion:
- include
- prepend
- extend
ExpectedOrder:
- module_inclusion
- constants
- public_class_methods
- initializer
- instance_methods
- protected_methods
- private_methods

Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent

Expand All @@ -19,9 +35,6 @@ Layout/MultilineMethodCallIndentation:
Layout/MultilineOperationIndentation:
EnforcedStyle: indented

# Metrics/AbcSize:
# Max: 30

Metrics/BlockLength:
Exclude:
- "spec/**/*"
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [0.6.0] - 2021-09-05

### Added

- Improved dependency change detection (#18)
- Flaky tests detection (#19)
- Exclude vendor files from analysis (#21)
- Report elapsed time at various stages (#23)

### Note

The first run on this version will not use any cache on the CI because the number
of files changed from eight to nine, so there will be no appropriate cache to use.

## [0.5.0] - 2021-09-03

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rspec-tracer (0.5.0)
rspec-tracer (0.6.0)
docile (~> 1.1, >= 1.1.0)
rspec-core (~> 3.6, >= 3.6.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_tracer/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RSpecTracer
VERSION = '0.5.0'
VERSION = '0.6.0'
end

0 comments on commit a71a1c0

Please sign in to comment.