From 0229f1d81f68ae187ff637e0027da719f04f7dcf Mon Sep 17 00:00:00 2001 From: Jared Burrows Date: Sun, 1 Mar 2020 08:18:07 -0800 Subject: [PATCH] prepare next version --- CHANGELOG.md | 13 +++++++++++-- README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b218278b..978e729f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,21 @@ # Change Log -## Version 0.8.6 (2019-10-14) +## Version 0.8.7 (2020-03-01) + * [#112](https://github.com/jaredsburrows/gradle-license-plugin/pull/112) Fix windows file path + * [#114](https://github.com/jaredsburrows/gradle-license-plugin/pull/114) Include Copyright owner/date in HTML license report; show multiple licenses + * [#118](https://github.com/jaredsburrows/gradle-license-plugin/pull/118) Add another official spelling of the MIT License URL + + Many thanks to + [@DonnKey](https://github.com/DonnKey) + for the code contributions! + +## Version 0.8.6 (2019-10-14) * Finished converting plugin to Kotlin * [#99](https://github.com/jaredsburrows/gradle-license-plugin/pull/99) Make sure to use correct Path.Separator * [#102](https://github.com/jaredsburrows/gradle-license-plugin/pull/102) Initiate extension earlier in setup process * [#103](https://github.com/jaredsburrows/gradle-license-plugin/pull/103) Use Console Renderer to handle cross platform terminal printing -## Version 0.8.5 (2019-04-23) +## Version 0.8.5 (2019-04-23) * Converted many files to Kotlin * [#57](https://github.com/jaredsburrows/gradle-license-plugin/pull/57) Eliminate duplicate licenses diff --git a/README.md b/README.md index 23cd4c68..bd54cf94 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.8.6' + classpath 'com.jaredsburrows:gradle-license-plugin:0.8.7' } } @@ -39,7 +39,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.8.7-SNAPSHOT' + classpath 'com.jaredsburrows:gradle-license-plugin:0.8.8-SNAPSHOT' } } @@ -200,7 +200,7 @@ import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentTransaction; -public class OpenSourceLicensesDialog extends DialogFragment { +public final class OpenSourceLicensesDialog extends DialogFragment { public OpenSourceLicensesDialog() { } diff --git a/gradle.properties b/gradle.properties index 4faa8aa6..3abff46f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jaredsburrows -VERSION_NAME=0.8.7-SNAPSHOT +VERSION_NAME=0.8.8-SNAPSHOT POM_NAME=Gradle License Plugin POM_ARTIFACT_ID=gradle-license-plugin