File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# gradle-pitest-plugin changelog
2
2
3
- ## 1.4.9 - Unreleased
3
+ ## 1.4.9 - 2020-04-22
4
4
5
5
- Fix regression in 1.4.8 related to missing source listing in PIT reports - [ #198 ] ( https://github.com/szpak/gradle-pitest-plugin/issues/198 )
6
6
- migrate remaining configuration properties to [ Lazy Configuration API] ( https://docs.gradle.org/current/userguide/lazy_configuration.html )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f
17
17
18
18
``` groovy
19
19
plugins {
20
- id 'info.solidsoft.pitest' version '1.4.8 '
20
+ id 'info.solidsoft.pitest' version '1.4.9 '
21
21
}
22
22
```
23
23
@@ -49,7 +49,7 @@ buildscript {
49
49
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
50
50
}
51
51
dependencies {
52
- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8 '
52
+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.9 '
53
53
}
54
54
}
55
55
```
@@ -145,7 +145,7 @@ buildscript {
145
145
mavenCentral()
146
146
}
147
147
dependencies {
148
- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8 '
148
+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.9 '
149
149
(...)
150
150
}
151
151
}
@@ -222,7 +222,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
222
222
``` groovy
223
223
plugins {
224
224
id 'java'
225
- id 'info.solidsoft.pitest' version '1.4.8 '
225
+ id 'info.solidsoft.pitest' version '1.4.9 '
226
226
}
227
227
228
228
pitest {
@@ -247,7 +247,7 @@ buildscript {
247
247
}
248
248
configurations.maybeCreate('pitest')
249
249
dependencies {
250
- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8 '
250
+ classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.9 '
251
251
pitest 'org.pitest:pitest-junit5-plugin:0.12'
252
252
}
253
253
}
You can’t perform that action at this time.
0 commit comments