Skip to content

Commit

Permalink
update readme for 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Jan 3, 2023
1 parent 67f77ae commit b327799
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Adds support to pitest for JUnit 5 and the Jupiter api.

[![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)

* 1.1.0 requires pitest 1.9.0 or above and JUnit Platform 1.9.x (Jupiter 5.9.1)
* 1.1.x requires pitest 1.9.0 or above and JUnit Platform 1.9.x (Jupiter 5.9.1)
* 1.0.0 requires pitest 1.9.0 or above and JUnit Platform 1.8.x (Jupiter 5.8.0)
* 0.16 requires pitest 1.4.0 or above and JUnit Platform 1.8.x (Jupiter 5.8.0)
* 0.15 requires pitest 1.4.0 or above and JUnit Platform 1.8.x (Jupiter 5.8.0)
Expand All @@ -28,12 +28,12 @@ To activate the plugin it must be placed on the classpath of the pitest tool (**
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.9.0</version>
<version>1.10.3</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -51,8 +51,8 @@ plugins {
pitest {
//adds dependency to org.pitest:pitest-junit5-plugin and sets "testPlugin" to "junit5"
junit5PluginVersion = '1.0.0'
pitestVersion = '1.9.0'
junit5PluginVersion = '1.1.1'
pitestVersion = '1.10.3'
// ...
}
```
Expand All @@ -61,6 +61,10 @@ See [gradle-pitest-plugin documentation](https://github.com/szpak/gradle-pitest-

## Release Notes

### 1.1.1

* #73 Automatically disable parallel mode

### 0.16

* #64 Errors in `BeforeAll` methods do not register
Expand Down

0 comments on commit b327799

Please sign in to comment.