Skip to content

Commit 74a43fa

Browse files
committed
Release version: 1.15.0
1 parent 58cc0f1 commit 74a43fa

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.15.0 - Unreleased
3+
## 1.15.0 - 2023-09-28
44

55
- Automatically add `junit-platform-launcher` dependency to `testRuntimeOnly` for JUnit Platform projects - [#337](https://github.com/szpak/gradle-pitest-plugin/issues/337) - help from [Björn Kautler](https://github.com/Vampire)
66
- Remove deprecated `Project.getConvention()` usage (in Gradle 8.2+) - [#343](https://github.com/szpak/gradle-pitest-plugin/issues/343)

README.md

Lines changed: 7 additions & 7 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.9.11'
21+
id 'info.solidsoft.pitest' version '1.15.0'
2222
}
2323
```
2424

@@ -48,7 +48,7 @@ buildscript {
4848
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
4949
}
5050
dependencies {
51-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.11'
51+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0'
5252
}
5353
}
5454
```
@@ -69,7 +69,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
6969
```groovy
7070
pitest {
7171
targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
72-
pitestVersion = '1.9.11' //not needed when a default PIT version should be used
72+
pitestVersion = '1.15.0' //not needed when a default PIT version should be used
7373
threads = 4
7474
outputFormats = ['XML', 'HTML']
7575
timestampedReports = false
@@ -150,7 +150,7 @@ all subprojects which should be processed with PIT. A sample snippet from build.
150150
```groovy
151151
//in root project configuration
152152
plugins {
153-
id 'info.solidsoft.pitest' version '1.9.11' apply false
153+
id 'info.solidsoft.pitest' version '1.15.0' apply false
154154
}
155155
156156
subprojects {
@@ -173,7 +173,7 @@ task `pitestReportAggregate`. Root project must be properly configured to use `p
173173
```groovy
174174
//in root project configuration
175175
plugins {
176-
id 'info.solidsoft.pitest' version '1.9.11' apply false
176+
id 'info.solidsoft.pitest' version '1.15.0' apply false
177177
}
178178
179179
apply plugin: 'info.solidsoft.pitest.aggregator' // to 'pitestReportAggregate' appear
@@ -252,7 +252,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
252252
```groovy
253253
plugins {
254254
id 'java'
255-
id 'info.solidsoft.pitest' version '1.9.11'
255+
id 'info.solidsoft.pitest' version '1.15.0'
256256
}
257257
258258
pitest {
@@ -275,7 +275,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
275275
```groovy
276276
plugins {
277277
id 'java'
278-
id 'info.solidsoft.pitest' version '1.9.11'
278+
id 'info.solidsoft.pitest' version '1.15.0'
279279
}
280280
281281
repositories {

0 commit comments

Comments
 (0)