Skip to content

Commit

Permalink
Release version: 1.7.0
Browse files Browse the repository at this point in the history
[ci skip]

Powered by CDeliveryBoy.
  • Loading branch information
szpak-ci committed Sep 20, 2021
1 parent d974ee2 commit 620ad93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gradle-pitest-plugin changelog

## 1.7.0 - Unreleased
## 1.7.0 - 2021-09-20

- Support for Gradle configuration cache - [#249](https://github.com/szpak/gradle-pitest-plugin/issues/249) - PR by [David Burstrom](https://github.com/davidburstrom)
- Turn on cacheability for `PitestTask` - [#67](https://github.com/szpak/gradle-pitest-plugin/issues/67) - PR by [David Burstrom](https://github.com/davidburstrom)
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f

```groovy
plugins {
id 'info.solidsoft.pitest' version '1.6.0'
id 'info.solidsoft.pitest' version '1.7.0'
}
```

Expand Down Expand Up @@ -47,7 +47,7 @@ buildscript {
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.6.0'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.0'
}
}
```
Expand All @@ -67,7 +67,7 @@ The Pitest plugin does not need to be additionally configured if you use JUnit 4
```groovy
pitest {
targetClasses = ['our.base.package.*'] //by default "${project.group}.*"
pitestVersion = '1.6.0' //not needed when a default PIT version should be used
pitestVersion = '1.7.0' //not needed when a default PIT version should be used
threads = 4
outputFormats = ['XML', 'HTML']
timestampedReports = false
Expand Down Expand Up @@ -152,7 +152,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.6.0'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.0'
}
}
Expand All @@ -179,7 +179,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.6.0'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.0'
}
}
Expand Down Expand Up @@ -253,7 +253,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
```groovy
plugins {
id 'java'
id 'info.solidsoft.pitest' version '1.6.0'
id 'info.solidsoft.pitest' version '1.7.0'
}
pitest {
Expand All @@ -276,7 +276,7 @@ To enable PIT plugins, it is enough to add it to the pitest configuration in the
```groovy
plugins {
id 'java'
id 'info.solidsoft.pitest' version '1.6.0'
id 'info.solidsoft.pitest' version '1.7.0'
}
repositories {
Expand Down

0 comments on commit 620ad93

Please sign in to comment.