From a00314088eeacef5ecbaa1d5055c719ba3663da7 Mon Sep 17 00:00:00 2001 From: Tobias Pfeiffer Date: Sat, 9 Jan 2021 14:06:34 +0100 Subject: [PATCH] prep 0.21.2 release --- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- lib/simplecov/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6489d3d4..f6931b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +0.21.2 (2021-01-09) +========== + +## Bugfixes +* `maximum_coverage_drop` won't fail any more if `.last_run.json` is still in the old format. Thanks [@petertellgren](https://github.com/petertellgren) +* `maximum_coverage_drop` won't fail if an expectation is specified for a previous unrecorded criterion, it will just pass (there's nothing, so nothing to drop) +* fixed bug in `maximum_coverage_drop` calculation that could falsely report it had dropped for minimal differences + 0.21.1 (2021-01-04) ========== diff --git a/Gemfile.lock b/Gemfile.lock index bc6fbcc1..acca484a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - simplecov (0.21.1) + simplecov (0.21.2) 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 4dbe5a73..0f1939eb 100644 --- a/lib/simplecov/version.rb +++ b/lib/simplecov/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SimpleCov - VERSION = "0.21.1" + VERSION = "0.21.2" end