From b234ad10d7507a4263e8e826ac65fe148a800a3a Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Sun, 22 Nov 2020 04:44:54 +0000 Subject: [PATCH] Change version to 0.10.7 --- Changelog.md | 20 +++++++++++++++----- Gemfile.lock | 2 +- lib/mutant/version.rb | 2 +- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Changelog.md b/Changelog.md index bdfe7a49a..8f7f7ebf7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,10 +1,20 @@ -# v0.10.7 unreleased +# v0.10.7 2020-11-22 + +* Add support for external mutation timeouts. + + New config file settings. `mutation_timeout` and `coverage_criteria` + to control timeouts and coverage conditions. + + - [#1105](https://github.com/mbj/mutant/pull/1105) + - [#1118](https://github.com/mbj/mutant/pull/1118) + +* Improve CLI reporting to be less noisy: + - [#1117](https://github.com/mbj/mutant/pull/1117) + - [#1106](https://github.com/mbj/mutant/pull/1106) -* Add support for external mutation timeouts. [#1105](https://github.com/mbj/mutant/pull/1105) * Fix crash on static send mutation. [#1108](https://github.com/mbj/mutant/pull/1108) -* Change CLI report format to print diff last. - This should be more user friendly on incremental / interactive - operation. + +* Add more verbose configuration [documentation](https://github.com/mbj/mutant/blob/master/docs/configuration.md). # v0.10.6 2020-11-06 diff --git a/Gemfile.lock b/Gemfile.lock index c6be198f7..a0b657ac3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - mutant (0.10.6) + mutant (0.10.7) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) anima (~> 0.3.1) diff --git a/lib/mutant/version.rb b/lib/mutant/version.rb index a2cf6f5b2..97f298ca6 100644 --- a/lib/mutant/version.rb +++ b/lib/mutant/version.rb @@ -2,5 +2,5 @@ module Mutant # Current mutant version - VERSION = '0.10.6' + VERSION = '0.10.7' end # Mutant