From b9467afc1106bc3368fd669c312c19b5d7e8ce8b Mon Sep 17 00:00:00 2001 From: Szpak CI Bot Date: Wed, 1 Apr 2020 18:14:34 +0000 Subject: [PATCH] Release version: 1.4.8 [ci skip] Powered by CDeliveryBoy. --- CHANGELOG.md | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c06d6b58..0bc5b5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # gradle-pitest-plugin changelog -## 1.4.8 - Unreleased +## 1.4.8 - 2020-04-01 - Fix problem with setting `historyInputLocation` and `jvmPath` - [#189](https://github.com/szpak/gradle-pitest-plugin/issues/189) - Less noisy "Adding dependency" logging - [#182](https://github.com/szpak/gradle-pitest-plugin/issues/182) diff --git a/README.md b/README.md index a0edc493..cab3852b 100644 --- a/README.md +++ b/README.md @@ -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.7' + id 'info.solidsoft.pitest' version '1.4.8' } ``` @@ -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.7' + classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8' } } ``` @@ -144,7 +144,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.7' + classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8' (...) } } @@ -221,7 +221,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.4.7' + id 'info.solidsoft.pitest' version '1.4.8' } pitest { @@ -246,7 +246,7 @@ buildscript { } configurations.maybeCreate('pitest') dependencies { - classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.7' + classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.8' pitest 'org.pitest:pitest-junit5-plugin:0.12' } }