Skip to content

Commit

Permalink
Drop support for Ruby 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
infertux committed Dec 1, 2018
1 parent 18c5a5e commit 2da876f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.3
TargetRubyVersion: 2.4

Metrics/AbcSize:
Max: 30
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ os:
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
env:
matrix:
- INSTALL_BASH_VERSION=4.4
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
## Unreleased ([changes](https://github.com/infertux/bashcov/compare/v1.8.2...master))
## Unreleased ([changes](https://github.com/infertux/bashcov/compare/v2.0.0...master))

* TBD

## v2.0.0, 2018-12-?? ([changes](https://github.com/infertux/bashcov/compare/v1.8.2...v2.0.0))

* [FEATURE] Bashcov omits from the coverage results any files that match one
or more of the filters in `SimpleCov.filters`.
or more of the filters in `SimpleCov.filters` (#38)
* [FEATURE] Ensure that files matching the `SimpleCov.tracked_files` glob
pattern are included in the coverage results, regardless of
whether `Bashcov.skip_uncovered` is enabled.
whether `Bashcov.skip_uncovered` is enabled (#38)
* [MISC] Add support for Ruby 2.6 and drop 2.3

## v1.8.2, 2018-03-27 ([changes](https://github.com/infertux/bashcov/compare/v1.8.1...v1.8.2))

Expand Down
2 changes: 1 addition & 1 deletion bashcov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.executables = gem.files.grep(%r{\Abin/}).map { |f| File.basename(f) }
gem.require_paths = ["lib"]

gem.required_ruby_version = ">= 2.3.0"
gem.required_ruby_version = ">= 2.4.0"

gem.add_dependency "simplecov", "0.15.1"

Expand Down

0 comments on commit 2da876f

Please sign in to comment.