Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldudka committed Feb 2, 2016
1 parent ba53156 commit 448236c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------
Expand Down
7 changes: 6 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.trickyandroid:jacoco-everywhere:0.1.1'
classpath 'com.trickyandroid:jacoco-everywhere:0.2.0'
}
}

Expand Down Expand Up @@ -32,6 +32,11 @@ android {
testCoverageEnabled = true
}
}

productFlavors {
paid {}
free {}
}
}

tasks.matching { it instanceof Test }.all {
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 448236c

Please sign in to comment.