From 8f4251c8b827d9e6465c6ba1e050355cc6124507 Mon Sep 17 00:00:00 2001 From: Henry Coles Date: Tue, 24 Oct 2023 14:46:58 +0100 Subject: [PATCH] update readem for 1.2.1 --- README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c672318..80996f6 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,13 @@ Adds support to pitest for JUnit 5 platform test engines, e.g. Jupiter, Cucumber [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.pitest/pitest-junit5-plugin/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/org.pitest/pitest-junit5-plugin) +Release 1.2.1 requires pitest 1.15.2 or above. + Release 1.2.0 requires pitest 1.14.0 or above. -When used with the pitest-maven plugin, it will automatically work with JUnit platform 1.5.0 to 1.10.0-M1 (and probably above). +When used with the pitest-maven plugin, or version 1.15.0 of the gradle plugin, it will automatically work with JUnit platform 1.5.0 to 1.10.0-M1 (and probably above). -When used with the pitest gradle plugin a dependency must be added to a compatible version of junit-platform-launcher. Depending on how the gradle project is configured the must be added wither a scope of either pitest, or a testImplementation. +When used with earlier versions of the pitest gradle plugin a dependency must be added to a compatible version of junit-platform-launcher. Depending on how the gradle project is configured the must be added wither a scope of either pitest, or a testImplementation. Older versions of the plugin must be matched to both the pitest and junit version in use as below. @@ -38,12 +40,12 @@ To activate the plugin it must be placed on the classpath of the pitest tool (** org.pitest pitest-maven - 1.10.3 + 1.15.2 org.pitest pitest-junit5-plugin - 1.1.1 + 1.2.1 @@ -56,13 +58,13 @@ For Pitest configuration options, have a look at http://pitest.org/quickstart/ma ``` plugins { id 'java' - id 'info.solidsoft.pitest' version '1.7.4' + id 'info.solidsoft.pitest' version '1.15.0' } pitest { //adds dependency to org.pitest:pitest-junit5-plugin and sets "testPlugin" to "junit5" - junit5PluginVersion = '1.1.1' - pitestVersion = '1.10.3' + junit5PluginVersion = '1.2.1' + pitestVersion = '1.15.2' // ... } ``` @@ -71,6 +73,10 @@ See [gradle-pitest-plugin documentation](https://github.com/szpak/gradle-pitest- ## Release Notes +### 1.2.1 + +* #103 Report errors and failures during scan stage + ### 1.1.1 * #73 Automatically disable parallel mode