From 54ce47a8afe8d76302bae10d9a4fb15933a2a162 Mon Sep 17 00:00:00 2001 From: Tobias Pfeiffer Date: Sun, 29 Nov 2020 21:23:33 +0100 Subject: [PATCH] prep 0.20.0 release --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- lib/simplecov/version.rb | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22b724dd..451f22be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +0.20.0 (2020-11-29) +========== + +The "JSON formatter" release. Starting now a JSON formatter is included by default in the release. This is mostly done for Code Climate reasons, you can find more details [in this issue](https://github.com/codeclimate/test-reporter/issues/413). +Shipping with so much by default is sub-optimal, we know. It's the long term plan to also provide `simplecov-core` without the HTML or JSON formatters for those who don't need them/for other formatters to rely on. + +## Enhancements +* `simplecov_json_formatter` included by default ([docs](https://github.com/simplecov-ruby/simplecov#json-formatter)), this should enable the Code Climate test reporter to work again once it's updated +* invalidate internal cache after switching `SimpleCov.root`, should help with some bugs + 0.19.1 (2020-10-25) ========== diff --git a/Gemfile.lock b/Gemfile.lock index b0e29c1a..092cd1f2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simplecov (0.19.1) + simplecov (0.20.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) diff --git a/lib/simplecov/version.rb b/lib/simplecov/version.rb index 16478a25..25f57190 100644 --- a/lib/simplecov/version.rb +++ b/lib/simplecov/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SimpleCov - VERSION = "0.19.1" + VERSION = "0.20.0" end