From 33f4c35448fb99a85c8168d7ec43e7b892c1d59c Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Fri, 20 Apr 2018 09:18:46 +0200 Subject: [PATCH] Prepare version 0.4.0 --- CHANGELOG.md | 20 ++++++++++++++++++-- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b38a609..33ed4e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log -Version 0.4.0 *(In development)* --------------------------------- +Version 0.4.0 *(2018-04-20)* +---------------------------- + +- Add a test for a project which is named like one of the dependency names. [\#43](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/43) ([vanniktech](https://github.com/vanniktech)) +- Remove rank and let dot do the ranking. [\#42](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/42) ([vanniktech](https://github.com/vanniktech)) +- Update several dependencies. [\#38](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/38) ([vanniktech](https://github.com/vanniktech)) +- Nuke badges in README. [\#37](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/37) ([vanniktech](https://github.com/vanniktech)) +- Update Detekt to 1.0.0.RC6-4 [\#36](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/36) ([vanniktech](https://github.com/vanniktech)) +- Special name for Jetbrains annotations and sqldelight runtime. [\#35](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/35) ([vanniktech](https://github.com/vanniktech)) +- Generate PNG image into build/reports/dependency-graph directory. [\#34](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/34) ([vanniktech](https://github.com/vanniktech)) +- Support module dependencies with project\(\) and drop rootSuffix. [\#33](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/33) ([vanniktech](https://github.com/vanniktech)) +- Generator: Add API to filter out projects. [\#32](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/32) ([vanniktech](https://github.com/vanniktech)) +- Handle Android Architecture components special since their module name sucks. [\#31](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/31) ([vanniktech](https://github.com/vanniktech)) +- Generate dot file into reports/dependency-graph folder. [\#30](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/30) ([vanniktech](https://github.com/vanniktech)) +- Test against Gradle 4 as minimum supported Gradle version. [\#29](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/29) ([vanniktech](https://github.com/vanniktech)) +- Use identifier for detecting duplicate connections instead of the ResolvedDependency. [\#27](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/27) ([vanniktech](https://github.com/vanniktech)) +- Easier integration test of the plugin. [\#22](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/22) ([vanniktech](https://github.com/vanniktech)) +- Adding minimum Gradle version to Readme [\#21](https://github.com/vanniktech/gradle-dependency-graph-generator-plugin/pull/21) ([Thunderforge](https://github.com/Thunderforge)) Version 0.3.0 *(2018-03-13)* ---------------------------- diff --git a/README.md b/README.md index b37b06e..6fa3e9a 100755 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.vanniktech:gradle-dependency-graph-generator-plugin:0.3.0" + classpath "com.vanniktech:gradle-dependency-graph-generator-plugin:0.4.0" } } diff --git a/gradle.properties b/gradle.properties index 4fba7dd..c207433 100755 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.4.0-SNAPSHOT +VERSION_NAME=0.4.0 POM_ARTIFACT_ID=gradle-dependency-graph-generator-plugin POM_NAME=Gradle Graph Generator Plugin