Skip to content

Commit 5f3fa3f

Browse files
committed
Release version: 1.7.4
[ci skip] Powered by CDeliveryBoy.
1 parent c1d0237 commit 5f3fa3f

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.7.4 - Unreleased
3+
## 1.7.4 - 2022-03-12
44

55
- Do not pass `--testPlugin` for PIT 1.6.7+ for forward compatibility - [#277](https://github.com/szpak/gradle-pitest-plugin/issues/277)
66
- Deprecate `testPlugin` configuration parameter (not needed in [PIT 1.6.7+](https://github.com/hcoles/pitest/pull/900), to be removed in PIT 1.8.0) - [#277](https://github.com/szpak/gradle-pitest-plugin/issues/277)

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.0'
20+
id 'info.solidsoft.pitest' version '1.7.4'
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.0'
50+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
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.0' //not needed when a default PIT version should be used
70+
pitestVersion = '1.7.4' //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.0'
155+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
156156
}
157157
}
158158
@@ -179,7 +179,7 @@ buildscript {
179179
mavenCentral()
180180
}
181181
dependencies {
182-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.0'
182+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
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.0'
256+
id 'info.solidsoft.pitest' version '1.7.4'
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.0'
279+
id 'info.solidsoft.pitest' version '1.7.4'
280280
}
281281
282282
repositories {

0 commit comments

Comments
 (0)