From 8800e9620a4b29f6628b3c4373bd9b1200e76483 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Wed, 7 Mar 2018 08:48:47 +0100 Subject: [PATCH] Prepare version 0.2.0 --- CHANGELOG.md | 11 +++++++++-- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c61ea7d..b8326aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Change Log -Version 0.2.0 *(In development)* --------------------------------- +Version 0.2.0 *(2018-03-07)* +---------------------------- + +- Support Android flavors and buildTypes out of the box and add include Configuration extension point to Generator. [\#9](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/9) ([vanniktech](https://github.com/vanniktech)) +- Minor improvements of README [\#6](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/6) ([AlexKorovyansky](https://github.com/AlexKorovyansky)) +- Fix typo [\#5](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/5) ([rmtheis](https://github.com/rmtheis)) +- Simplify PNG generation and remove copy step. [\#4](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/4) ([vanniktech](https://github.com/vanniktech)) +- Use rank feature only when necessary. [\#3](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/3) ([vanniktech](https://github.com/vanniktech)) +- Fail early and give tailored message when dot command is not present. [\#2](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/2) ([vanniktech](https://github.com/vanniktech)) Version 0.1.0 *(2018-03-04)* ---------------------------- diff --git a/README.md b/README.md index f3635d1..0ba8873 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.vanniktech:gradle-dependency-graph-generator-plugin:0.1.0" + classpath "com.vanniktech:gradle-dependency-graph-generator-plugin:0.2.0" } } diff --git a/gradle.properties b/gradle.properties index be62ddc..36cee9e 100755 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.2.0-SNAPSHOT +VERSION_NAME=0.2.0 POM_ARTIFACT_ID=gradle-dependency-graph-generator-plugin POM_NAME=Gradle Graph Generator Plugin