diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fb74ccc..5306570f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.20.0 / 2021-01-09 + +* [FEATURE] Add Ruby 3 compatibility +* [FEATURE] Add SimpleCov 0.21.0 compatibility +* [ENHANCEMENT] Update dependencies + ## 0.19.0 / 2020-12-02 * [FEATURE] Add SimpleCov 0.20.0 compatibility diff --git a/LICENSE b/LICENSE index ffd2a223..925142c7 100644 --- a/LICENSE +++ b/LICENSE @@ -2,7 +2,7 @@ MIT License Copyright (c) 2018 Wil Gieseler -Copyright (c) 2020 Geremia Taglialatela +Copyright (c) 2021 Geremia Taglialatela Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index c3ba4757..58f74c1e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# [Coveralls Reborn](http://coveralls.io) for Ruby [![Coverage Status](https://coveralls.io/repos/github/tagliala/coveralls-ruby-reborn/badge.svg?branch=master)](https://coveralls.io/github/tagliala/coveralls-ruby-reborn?branch=master) [![Build Status](https://secure.travis-ci.org/tagliala/coveralls-ruby-reborn.svg?branch=master)](https://travis-ci.org/tagliala/coveralls-ruby-reborn) [![Gem Version](https://badge.fury.io/rb/coveralls_reborn.svg)](http://badge.fury.io/rb/coveralls_reborn) +# [Coveralls Reborn](https://coveralls.io) for Ruby [![Coverage Status](https://coveralls.io/repos/github/tagliala/coveralls-ruby-reborn/badge.svg?branch=master)](https://coveralls.io/github/tagliala/coveralls-ruby-reborn?branch=master) [![Build Status](https://secure.travis-ci.org/tagliala/coveralls-ruby-reborn.svg?branch=master)](https://travis-ci.org/tagliala/coveralls-ruby-reborn) [![Gem Version](https://badge.fury.io/rb/coveralls_reborn.svg)](https://badge.fury.io/rb/coveralls_reborn) ### [Read the docs →](https://docs.coveralls.io/ruby-on-rails) @@ -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.19.0', require: false +gem 'coveralls_reborn', '~> 0.20.0', require: false ``` diff --git a/lib/coveralls/version.rb b/lib/coveralls/version.rb index 90e88005..d0296e3b 100644 --- a/lib/coveralls/version.rb +++ b/lib/coveralls/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Coveralls - VERSION = '0.19.0' + VERSION = '0.20.0' end