Skip to content

Commit

Permalink
Add SimpleCov 0.20.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Dec 2, 2020
1 parent a705c56 commit b53a9f3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec

AllCops:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.19.0 / 2020-12-02

* [FEATURE] Add SimpleCov 0.20.0 compatibility

## 0.18.0 / 2020-09-07

* [ENHANCEMENT] Refactor HTTP client [#10](https://github.com/tagliala/coveralls-ruby-reborn/pull/10)
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ end
group :development do
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.10'
gem 'rubocop', '~> 1.4'
gem 'rubocop', '~> 1.5'
gem 'rubocop-performance', '~> 1.9'
gem 'rubocop-rake', '~> 0.5.1'
gem 'rubocop-rspec', '~> 2.0'
gem 'truthy', '~> 1.0'
gem 'vcr', '~> 6.0'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ An up-to-date fork of [lemurheavy/coveralls-ruby](https://github.com/lemurheavy/
Add to your `Gemfile`:

```rb
gem 'coveralls_reborn', '~> 0.18.0', require: false
gem 'coveralls_reborn', '~> 0.19.0', require: false
```
2 changes: 1 addition & 1 deletion lib/coveralls/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Coveralls
VERSION = '0.18.0'
VERSION = '0.19.0'
end

0 comments on commit b53a9f3

Please sign in to comment.