Skip to content

Commit 6b810a2

Browse files
committed
Release version: 1.9.0
[ci skip] Powered by CDeliveryBoy.
1 parent 0826aa5 commit 6b810a2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gradle-pitest-plugin changelog
22

3-
## 1.9.0 - Unreleased
3+
## 1.9.0 - 2022-08-19
44

55
- PIT 1.9.4 by default (requires pitest-junit5-plugin 1.0.0!)
66
- Deprecate support for JDK 8 - [#299](https://github.com/szpak/gradle-pitest-plugin/issues/299)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
1717

1818
```groovy
1919
plugins {
20-
id 'info.solidsoft.pitest' version '1.7.4'
20+
id 'info.solidsoft.pitest' version '1.9.0'
2121
}
2222
```
2323

@@ -47,7 +47,7 @@ buildscript {
4747
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
4848
}
4949
dependencies {
50-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
50+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0'
5151
}
5252
}
5353
```
@@ -67,7 +67,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
6767
```groovy
6868
pitest {
6969
targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
70-
pitestVersion = '1.7.4' //not needed when a default PIT version should be used
70+
pitestVersion = '1.9.0' //not needed when a default PIT version should be used
7171
threads = 4
7272
outputFormats = ['XML', 'HTML']
7373
timestampedReports = false
@@ -152,7 +152,7 @@ buildscript {
152152
mavenCentral()
153153
}
154154
dependencies {
155-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
155+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0'
156156
}
157157
}
158158
@@ -179,7 +179,7 @@ buildscript {
179179
mavenCentral()
180180
}
181181
dependencies {
182-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
182+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.0'
183183
}
184184
}
185185
@@ -253,7 +253,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
253253
```groovy
254254
plugins {
255255
id 'java'
256-
id 'info.solidsoft.pitest' version '1.7.4'
256+
id 'info.solidsoft.pitest' version '1.9.0'
257257
}
258258
259259
pitest {
@@ -276,7 +276,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
276276
```groovy
277277
plugins {
278278
id 'java'
279-
id 'info.solidsoft.pitest' version '1.7.4'
279+
id 'info.solidsoft.pitest' version '1.9.0'
280280
}
281281
282282
repositories {

0 commit comments

Comments
 (0)