Skip to content

Commit fb635f0

Browse files
committed
Manually release version: 1.19.0-rc.3
1 parent f935b4f commit fb635f0

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.3 - Unreleased
3+
## 1.19.0-rc.3 - 2026-01-19
44

55
- Properly map additional classpath inputs to not lose task dependencies (also fix [regression](https://github.com/szpak/gradle-pitest-plugin/issues/385) with "NoClassDefFoundError" in rc.2) - [PR](https://github.com/szpak/gradle-pitest-plugin/pull/387) by [Björn Kautler](https://github.com/Vampire)
66
- Remove explicit "dependsOn" for `pitest` task - [#388](https://github.com/szpak/gradle-pitest-plugin/issues/388)

README.md

Lines changed: 15 additions & 15 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
```groovy
1818
plugins {
1919
id 'java' //or 'java-library' - depending on your needs
20-
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
20+
id 'info.solidsoft.pitest' version '1.19.0-rc.3'
2121
}
2222
```
2323

@@ -27,7 +27,7 @@ plugins {
2727
```kotlin
2828
plugins {
2929
id("java") //or "java-library" - depending on your needs
30-
id("info.solidsoft.pitest") version "1.19.0-rc.2"
30+
id("info.solidsoft.pitest") version "1.19.0-rc.3"
3131
}
3232
```
3333
</details>
@@ -68,7 +68,7 @@ buildscript {
6868
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
6969
}
7070
dependencies {
71-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2'
71+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.3'
7272
}
7373
}
7474
```
@@ -86,7 +86,7 @@ buildscript {
8686
//}
8787
}
8888
dependencies {
89-
classpath("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2")
89+
classpath("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.3")
9090
}
9191
}
9292
```
@@ -117,7 +117,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
117117
```groovy
118118
pitest {
119119
targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
120-
pitestVersion = '1.20.3' //not needed when a default PIT version should be used
120+
pitestVersion = '1.22.0' //not needed when a default PIT version should be used
121121
threads = 4
122122
outputFormats = ['XML', 'HTML']
123123
timestampedReports = false
@@ -131,7 +131,7 @@ Idiomatic and more portable configuration:
131131
```kotlin
132132
pitest {
133133
targetClasses.set(setOf("our.base.package.*")) //by default "${project.group}.*"
134-
pitestVersion.set("1.20.3") //not needed when a default PIT version should be used
134+
pitestVersion.set("1.22.0") //not needed when a default PIT version should be used
135135
threads.set(4)
136136
outputFormats.set(setOf("XML", "HTML"))
137137
timestampedReports.set(false)
@@ -143,7 +143,7 @@ can be used for configuring plugin (instead of the `set()` method):
143143
```kotlin
144144
pitest {
145145
targetClasses = setOf("our.base.package.*") //by default "${project.group}.*"
146-
pitestVersion = "1.20.3" //not needed when a default PIT version should be used
146+
pitestVersion = "1.22.0" //not needed when a default PIT version should be used
147147
threads = 4
148148
outputFormats = setOf("XML", "HTML")
149149
timestampedReports = false
@@ -254,7 +254,7 @@ all subprojects which should be processed with PIT. A sample snippet from build.
254254
```groovy
255255
//in root project configuration
256256
plugins {
257-
id 'info.solidsoft.pitest' version '1.19.0-rc.2' apply false
257+
id 'info.solidsoft.pitest' version '1.19.0-rc.3' apply false
258258
}
259259
260260
subprojects {
@@ -277,7 +277,7 @@ subprojects {
277277
```kotlin
278278
//in root project configuration
279279
plugins {
280-
id("info.solidsoft.pitest") version "1.19.0-rc.2"
280+
id("info.solidsoft.pitest") version "1.19.0-rc.3"
281281
}
282282

283283
subprojects {
@@ -302,7 +302,7 @@ task `pitestReportAggregate`. Root project must be properly configured to use `p
302302
```groovy
303303
//in root project configuration
304304
plugins {
305-
id 'info.solidsoft.pitest' version '1.19.0-rc.2' apply false
305+
id 'info.solidsoft.pitest' version '1.19.0-rc.3' apply false
306306
}
307307
308308
apply plugin: 'info.solidsoft.pitest.aggregator' // to 'pitestReportAggregate' appear
@@ -332,7 +332,7 @@ subprojects {
332332
```kotlin
333333
//in root project configuration
334334
plugins {
335-
id("info.solidsoft.pitest") version "1.19.0-rc.2"
335+
id("info.solidsoft.pitest") version "1.19.0-rc.3"
336336
}
337337
apply(plugin = "info.solidsoft.pitest.aggregator")
338338

@@ -448,7 +448,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
448448
```groovy
449449
plugins {
450450
id 'java'
451-
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
451+
id 'info.solidsoft.pitest' version '1.19.0-rc.3'
452452
}
453453
454454
pitest {
@@ -464,7 +464,7 @@ pitest {
464464
```kotlin
465465
plugins {
466466
id("java")
467-
id("info.solidsoft.pitest") version "1.19.0-rc.2"
467+
id("info.solidsoft.pitest") version "1.19.0-rc.3"
468468
}
469469

470470
pitest {
@@ -487,7 +487,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
487487
```groovy
488488
plugins {
489489
id 'java'
490-
id 'info.solidsoft.pitest' version '1.19.0-rc.2'
490+
id 'info.solidsoft.pitest' version '1.19.0-rc.3'
491491
}
492492
493493
repositories {
@@ -505,7 +505,7 @@ dependencies {
505505
```kotlin
506506
plugins {
507507
id("java")
508-
id("info.solidsoft.pitest") version "1.19.0-rc.2"
508+
id("info.solidsoft.pitest") version "1.19.0-rc.3"
509509
}
510510

511511
repositories {

0 commit comments

Comments
 (0)