From 5fe44083a069e3e58fb9c4e3c57ec1d5b163dc62 Mon Sep 17 00:00:00 2001 From: Jared Burrows Date: Thu, 6 Jun 2024 10:12:23 -0400 Subject: [PATCH] prepare next development version --- CHANGELOG.md | 15 +++++++++++++++ README.md | 17 +++++++++-------- gradle.properties | 2 +- 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c78edf5..62262fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## Version 0.9.8 *(2024-06-06)* + * [#496](https://github.com/jaredsburrows/gradle-license-plugin/pull/496) Make sure dependencies are sorted deterministically + * [#465](https://github.com/jaredsburrows/gradle-license-plugin/pull/465) Don't show versions in html + * [#464](https://github.com/jaredsburrows/gradle-license-plugin/pull/464) Add dark mode support for html + * [#463](https://github.com/jaredsburrows/gradle-license-plugin/pull/463) POM artifact resolution + * [#439](https://github.com/jaredsburrows/gradle-license-plugin/pull/439) Remove debug print + * [#433](https://github.com/jaredsburrows/gradle-license-plugin/pull/433) Sort project group order in HTML report using license keys + * [#431](https://github.com/jaredsburrows/gradle-license-plugin/pull/431) Sort set of licenses in HTML report + +Many thanks to +[@monae](https://github.com/monae) +[@t-beckmann](https://github.com/t-beckmann) +[@francescocervone](https://github.com/francescocervone) +for the code contributions! + ## Version 0.9.7 *(2024-01-30)* * [#422](https://github.com/jaredsburrows/gradle-license-plugin/pull/422) Bump compileOnly AGP to 7.2.2 diff --git a/README.md b/README.md index c1176c57..bfbd5cf0 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,11 @@ Also, for Android projects the license HTML file will be copied to `/sr | Plugin Version | Minimum [Gradle](https://gradle.org/) Version | Minimum [AGP](https://developer.android.com/build/releases/gradle-plugin) Version | |---------------:|----------------------------------------------:|----------------------------------------------------------------------------------:| -| <= 0.9.4 | <= 7.0.2 | 3.6.4+ | -| 0.9.5 | 7.0.2 | 3.6.4+ | -| 0.9.6 | 7.1.3 | 3.6.4+ | -| 0.9.7 | 7.2.2 | 3.6.4+ | +| <= 0.9.4 | <= 7.0.2 | 3.6.4+ | +| 0.9.5 | 7.0.2 | 3.6.4+ | +| 0.9.6 | 7.1.3 | 3.6.4+ | +| 0.9.7 | 7.2.2 | 3.6.4+ | +| 0.9.8 | 7.2.2 | 3.6.4+ | ## Download @@ -33,7 +34,7 @@ Also, for Android projects the license HTML file will be copied to `/sr ```kotlin plugins { - id('com.jaredsburrows.license') version '0.9.7' + id('com.jaredsburrows.license') version '0.9.8' } ``` @@ -50,7 +51,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.7' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8' } } @@ -69,7 +70,7 @@ and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-licens ```kotlin plugins { - id('com.jaredsburrows.license') version '0.9.8-SNAPSHOT' + id('com.jaredsburrows.license') version '0.9.9-SNAPSHOT' } ``` @@ -85,7 +86,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.8-SNAPSHOT' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.9-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index 8953519b..d2a5814c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true RELEASE_SIGNING_ENABLED=true GROUP=com.jaredsburrows -VERSION_NAME=0.9.8-SNAPSHOT +VERSION_NAME=0.9.9-SNAPSHOT POM_INCEPTION_YEAR=2016 POM_PACKAGING=jar