Skip to content

Commit

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

Powered by CDeliveryBoy.
  • Loading branch information
szpak-ci committed Feb 27, 2020
1 parent df7d273 commit 0da91e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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.4.7 - Unreleased
## 1.4.7 - 2020-02-27

- Simpler usage with JUnit 5 with `junit5PluginVersion` configuration parameter - [#177](https://github.com/szpak/gradle-pitest-plugin/issues/177) - idea by [John Scancella](https://github.com/jscancella)
- Remove deprecation warnings in Gradle 6 - [#155](https://github.com/gradle/gradle/issues/155)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add gradle-pitest-plugin to the `plugins` configuration in your `build.gradle` f

```groovy
plugins {
id 'info.solidsoft.pitest' version '1.4.6'
id 'info.solidsoft.pitest' version '1.4.7'
}
```

Expand Down Expand Up @@ -48,7 +48,7 @@ buildscript {
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.6'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.7'
}
}
```
Expand Down Expand Up @@ -131,7 +131,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.6'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.7'
(...)
}
}
Expand Down Expand Up @@ -208,7 +208,7 @@ Starting with this release the configuration required to use PIT with JUnit 5 ha
```
plugins {
id 'java'
id 'info.solidsoft.pitest' version '1.4.6'
id 'info.solidsoft.pitest' version '1.4.7'
}
pitest {
Expand All @@ -231,7 +231,7 @@ buildscript {
}
configurations.maybeCreate('pitest')
dependencies {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.6'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.7'
pitest 'org.pitest:pitest-junit5-plugin:0.12'
}
}
Expand Down

0 comments on commit 0da91e1

Please sign in to comment.