diff --git a/CHANGELOG.md b/CHANGELOG.md index 46dc4d5..7cb3f63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ # Change Log -Version 0.14.0 *(In development)* ---------------------------------- +Version 0.14.0 *(2019-04-30)* +----------------------------- + +- Update dependencies. [\#154](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/154) ([vanniktech](https://github.com/vanniktech)) +- Add support for Gradle 5 [\#153](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/153) ([henriquenfaria](https://github.com/henriquenfaria)) +- Fix StackOverflowError with Gradle 5.0 regarding FileCollection [\#151](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/151) ([Laimiux](https://github.com/Laimiux)) +- Cope with new Android DSL to configure includeNoLocationClasses [\#150](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/150) ([aygalinc](https://github.com/aygalinc)) +- Add support for kotlin multiplatform plugin [\#141](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/141) ([henriquenfaria](https://github.com/henriquenfaria)) +- Remove sudo: false from travis config. [\#135](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/135) ([vanniktech](https://github.com/vanniktech)) +- Don't run tests when creating the merged test coverage report. Instead it's required to run specific tests manually before. [\#134](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/134) ([vRallev](https://github.com/vRallev)) Version 0.13.0 *(2018-10-11)* ----------------------------- diff --git a/README.md b/README.md index 674c611..76ef6a0 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ In addition the plugin generates `mergeJacocoReports` & `jacocoTestReportMerged` `jacocoTestReportMerged` will output an xml and html file for the merged report. -Works with the latest Gradle Android Tools version 2.3.3. This plugin is compiled using Java 7 hence you also need Java 7 in order to use it. +Works with the latest Gradle Android Tools version 3.4.0. This plugin is compiled using Java 7 hence you also need Java 7 in order to use it. # Set up @@ -58,7 +58,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.13.0" + classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.14.0" } } diff --git a/gradle.properties b/gradle.properties index fb7d6b6..555743d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.14.0-SNAPSHOT +VERSION_NAME=0.14.0 POM_ARTIFACT_ID=gradle-android-junit-jacoco-plugin POM_NAME=Gradle Android Jacoco Plugin