diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c7427a9..32f13558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 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 + +Many thanks to +[@realdadfish](https://github.com/realdadfish) +[@monae](https://github.com/monae) +for the code contributions! + ## Version 0.9.3 *(2023-06-20)* * [#291](https://github.com/jaredsburrows/gradle-license-plugin/pull/291) Use ReaderFactory.newXmlReader to fix #275 diff --git a/README.md b/README.md index dc85e68b..1a8c24e5 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Also, for Android projects the license HTML file will be copied to `/sr ```kotlin plugins { - id("com.jaredsburrows.license") version "0.9.3" + id("com.jaredsburrows.license") version "0.9.4" } ``` @@ -40,7 +40,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.3' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4' } } @@ -49,7 +49,9 @@ apply plugin: 'com.jaredsburrows.license' ``` -Release versions are available in the [Sonatype's release repository](https://repo1.maven.org/maven2/com/jaredsburrows/gradle-license-plugin/). +Release versions are available in +the [Sonatype's release repository](https://repo1.maven.org/maven2/com/jaredsburrows/gradle-license-plugin/) +and [here](https://central.sonatype.com/artifact/com.jaredsburrows/gradle-license-plugin). **Snapshot:**
@@ -57,7 +59,7 @@ Release versions are available in the [Sonatype's release repository](https://re ```kotlin plugins { - id("com.jaredsburrows.license") version "0.9.4-SNAPSHOT" + id("com.jaredsburrows.license") version "0.9.5-SNAPSHOT" } ```
@@ -73,7 +75,7 @@ buildscript { } dependencies { - classpath 'com.jaredsburrows:gradle-license-plugin:0.9.4-SNAPSHOT' + classpath 'com.jaredsburrows:gradle-license-plugin:0.9.5-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index 4f8a3d05..d3042b65 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.4-SNAPSHOT +VERSION_NAME=0.9.5-SNAPSHOT POM_INCEPTION_YEAR=2016 POM_PACKAGING=jar