From 448236c5c36681a529d76c7c7a635f256121393c Mon Sep 17 00:00:00 2001 From: Pavel Dudka Date: Mon, 1 Feb 2016 23:31:38 -0800 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 4 ++++ app/build.gradle | 7 ++++++- plugin/gradle.properties | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1281acb..b506d40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Change Log ========== +Version 0.2.0 *(2016-02-01)* +---------------------------- +* [#1](https://github.com/paveldudka/JacocoEverywhere/issues/1) - Plugin is hardcoded to `debug` build type +* [#4](https://github.com/paveldudka/JacocoEverywhere/issues/4) - Product flavors are not supported Version 0.1.1 *(2015-12-16)* ---------------------------- diff --git a/app/build.gradle b/app/build.gradle index c9e1896..049010d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.trickyandroid:jacoco-everywhere:0.1.1' + classpath 'com.trickyandroid:jacoco-everywhere:0.2.0' } } @@ -32,6 +32,11 @@ android { testCoverageEnabled = true } } + + productFlavors { + paid {} + free {} + } } tasks.matching { it instanceof Test }.all { diff --git a/plugin/gradle.properties b/plugin/gradle.properties index 7474de6..da4a97e 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -18,7 +18,7 @@ # org.gradle.parallel=true -VERSION_NAME=0.2.0-SNAPSHOT +VERSION_NAME=0.2.0 ARTIFACT_NAME=jacoco-everywhere POM_DESCRIPTION=Gradle plugin which allows to generate Jacoco coverage report for both integration & unit tests