From 122179effc9204cec9427734c436afaa5c274652 Mon Sep 17 00:00:00 2001 From: Jared Burrows Date: Tue, 30 Jan 2024 12:20:38 -0500 Subject: [PATCH] prepare next development version --- CHANGELOG.md | 13 +++++++++++++ README.md | 14 +++++++------- gradle.properties | 2 +- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32f13558..933532d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## Version 0.9.5 *(2024-01-30)* + * [#465](https://github.com/jaredsburrows/gradle-license-plugin/pull/416) Bump compileOnly AGP to 7.0.4 + * [#415](https://github.com/jaredsburrows/gradle-license-plugin/pull/415) Bump compileOnly AGP to 4.2.2 + * [#413](https://github.com/jaredsburrows/gradle-license-plugin/pull/413) Bump compileOnly AGP to 4.0.2 + * [#411](https://github.com/jaredsburrows/gradle-license-plugin/pull/411) Update dialog code to remove warning + * [#407](https://github.com/jaredsburrows/gradle-license-plugin/pull/407) Run tests against Android 34 + * [#406](https://github.com/jaredsburrows/gradle-license-plugin/pull/406) Make sure HTML reports are valid + * [#402](https://github.com/jaredsburrows/gradle-license-plugin/pull/402) Add keys for list of known licenses + +Many thanks to +[@monae](https://github.com/monae) +for the code contributions! + ## Version 0.9.4 *(2024-01-25)* * [#398](https://github.com/jaredsburrows/gradle-license-plugin/pull/398) Fix exponential execution time for resolving complex dependencies * [#312](https://github.com/jaredsburrows/gradle-license-plugin/pull/312) Quiet "Cannot resolve configuration" warnings diff --git a/README.md b/README.md index c83621e1..9c90b94a 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ Also, for Android projects the license HTML file will be copied to `/sr ## Compatibility Matrix -| Plugin Version | Minimum [AGP](https://developer.android.com/build/releases/gradle-plugin) Version | -|----------------|----------------------------------------------------------------------------------:| -| <= 0.9.4 | 3.6.4+ | +| 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+ | ## Download @@ -30,7 +30,7 @@ Also, for Android projects the license HTML file will be copied to `/sr ```kotlin plugins { - id("com.jaredsburrows.license") version "0.9.4" + id("com.jaredsburrows.license") version "0.9.5" } ``` @@ -47,7 +47,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5' } } @@ -66,7 +66,7 @@ and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-licens ```kotlin plugins { - id("com.jaredsburrows.license") version "0.9.5-SNAPSHOT" + id("com.jaredsburrows.license") version "0.9.6-SNAPSHOT" } ``` @@ -82,7 +82,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5-SNAPSHOT' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.6-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index d3042b65..1e87168d 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.5-SNAPSHOT +VERSION_NAME=0.9.6-SNAPSHOT POM_INCEPTION_YEAR=2016 POM_PACKAGING=jar