Skip to content

Commit cd79225

Browse files
committed
Prepare version 0.6.0
1 parent 471b896 commit cd79225

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Change Log
22

3-
Version 0.6.0 *(In development)*
4-
--------------------------------
3+
Version 0.6.0 *(2017-03-20)*
4+
----------------------------
5+
6+
- Fix includeNoLocationClasses. [\#61](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/61) ([vanniktech](https://github.com/vanniktech))
7+
- Add a few more default excludes. [\#58](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/58) ([vanniktech](https://github.com/vanniktech))
8+
- Add extension for includeNoLocationClasses [\#55](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/55) ([vanniktech](https://github.com/vanniktech))
9+
- Adding AutoValue to exclusion list [\#54](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/54) ([setheclark](https://github.com/setheclark))
10+
- Added several exclusions when generating report. [\#41](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin/pull/41) ([zsavely](https://github.com/zsavely))
511

612
Version 0.5.0 *(2016-07-17)*
713
----------------------------

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ buildscript {
4040
mavenCentral()
4141
}
4242
dependencies {
43-
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0'
43+
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.6.0'
4444
}
4545
}
4646
@@ -63,9 +63,10 @@ Those are all available configurations - shown with default values and their typ
6363

6464
```groovy
6565
junitJacoco {
66-
jacocoVersion = '0.7.2.201409121644' // type String
67-
ignoreProjects = [] // type String array
68-
excludes // type String List
66+
jacocoVersion = '0.7.2.201409121644' // type String
67+
ignoreProjects = [] // type String array
68+
excludes // type String List
69+
includeNoLocationClasses = false // type boolean
6970
}
7071
```
7172

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.vanniktech
2-
VERSION_NAME=0.6.0-SNAPSHOT
2+
VERSION_NAME=0.6.0
33

44
POM_ARTIFACT_ID=gradle-android-junit-jacoco-plugin
55
POM_NAME=Gradle Android Jacoco Plugin

0 commit comments

Comments
 (0)