Skip to content

Commit 18bc35a

Browse files
committed
Manually release version: 1.19.0-rc.2
1 parent ca064c4 commit 18bc35a

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
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.19.0-rc.2 - Unreleased
3+
## 1.19.0-rc.2 - 2025-10-01
44

55
- pitestReportAggregate task is compatible with configuration cache in Gradle 9 - [#381](https://github.com/szpak/gradle-pitest-plugin/issues/381) - PR by [Luis Guillermo Gómez Galeano ](https://github.com/luisgomez29)
66
- PIT 1.20.3 by default

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
1818
```groovy
1919
plugins {
2020
id 'java' //or 'java-library' - depending on your needs
21-
id 'info.solidsoft.pitest' version '1.19.0-rc.1'
21+
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
2222
}
2323
```
2424

@@ -28,7 +28,7 @@ plugins {
2828
```kotlin
2929
plugins {
3030
id("java") //or "java-library" - depending on your needs
31-
id("info.solidsoft.pitest") version "1.19.0-rc.1"
31+
id("info.solidsoft.pitest") version "1.19.0-rc.2"
3232
}
3333
```
3434
</details>
@@ -69,7 +69,7 @@ buildscript {
6969
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
7070
}
7171
dependencies {
72-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.1'
72+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2'
7373
}
7474
}
7575
```
@@ -87,7 +87,7 @@ buildscript {
8787
//}
8888
}
8989
dependencies {
90-
classpath("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.1")
90+
classpath("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2")
9191
}
9292
}
9393
```
@@ -118,7 +118,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
118118
```groovy
119119
pitest {
120120
targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
121-
pitestVersion = '1.19.6' //not needed when a default PIT version should be used
121+
pitestVersion = '1.20.3' //not needed when a default PIT version should be used
122122
threads = 4
123123
outputFormats = ['XML', 'HTML']
124124
timestampedReports = false
@@ -132,7 +132,7 @@ Idiomatic and more portable configuration:
132132
```kotlin
133133
pitest {
134134
targetClasses.set(setOf("our.base.package.*")) //by default "${project.group}.*"
135-
pitestVersion.set("1.19.6") //not needed when a default PIT version should be used
135+
pitestVersion.set("1.20.3") //not needed when a default PIT version should be used
136136
threads.set(4)
137137
outputFormats.set(setOf("XML", "HTML"))
138138
timestampedReports.set(false)
@@ -144,7 +144,7 @@ can be used for configuring plugin (instead of the `set()` method):
144144
```kotlin
145145
pitest {
146146
targetClasses = setOf("our.base.package.*") //by default "${project.group}.*"
147-
pitestVersion = "1.19.6" //not needed when a default PIT version should be used
147+
pitestVersion = "1.20.3" //not needed when a default PIT version should be used
148148
threads = 4
149149
outputFormats = setOf("XML", "HTML")
150150
timestampedReports = false
@@ -255,7 +255,7 @@ all subprojects which should be processed with PIT. A sample snippet from build.
255255
```groovy
256256
//in root project configuration
257257
plugins {
258-
id 'info.solidsoft.pitest' version '1.19.0-rc.1' apply false
258+
id 'info.solidsoft.pitest' version '1.19.0-rc.2' apply false
259259
}
260260
261261
subprojects {
@@ -278,7 +278,7 @@ subprojects {
278278
```kotlin
279279
//in root project configuration
280280
plugins {
281-
id("info.solidsoft.pitest") version "1.19.0-rc.1"
281+
id("info.solidsoft.pitest") version "1.19.0-rc.2"
282282
}
283283

284284
subprojects {
@@ -303,7 +303,7 @@ task `pitestReportAggregate`. Root project must be properly configured to use `p
303303
```groovy
304304
//in root project configuration
305305
plugins {
306-
id 'info.solidsoft.pitest' version '1.19.0-rc.1' apply false
306+
id 'info.solidsoft.pitest' version '1.19.0-rc.2' apply false
307307
}
308308
309309
apply plugin: 'info.solidsoft.pitest.aggregator' // to 'pitestReportAggregate' appear
@@ -333,7 +333,7 @@ subprojects {
333333
```kotlin
334334
//in root project configuration
335335
plugins {
336-
id("info.solidsoft.pitest") version "1.19.0-rc.1"
336+
id("info.solidsoft.pitest") version "1.19.0-rc.2"
337337
}
338338
apply(plugin = "info.solidsoft.pitest.aggregator")
339339

@@ -449,7 +449,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
449449
```groovy
450450
plugins {
451451
id 'java'
452-
id 'info.solidsoft.pitest' version '1.19.0-rc.1'
452+
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
453453
}
454454
455455
pitest {
@@ -465,7 +465,7 @@ pitest {
465465
```kotlin
466466
plugins {
467467
id("java")
468-
id("info.solidsoft.pitest") version "1.19.0-rc.1"
468+
id("info.solidsoft.pitest") version "1.19.0-rc.2"
469469
}
470470

471471
pitest {
@@ -488,7 +488,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
488488
```groovy
489489
plugins {
490490
id 'java'
491-
id 'info.solidsoft.pitest' version '1.19.0-rc.1'
491+
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
492492
}
493493
494494
repositories {
@@ -506,7 +506,7 @@ dependencies {
506506
```kotlin
507507
plugins {
508508
id("java")
509-
id("info.solidsoft.pitest") version "1.19.0-rc.1"
509+
id("info.solidsoft.pitest") version "1.19.0-rc.2"
510510
}
511511

512512
repositories {

0 commit comments

Comments
 (0)