From 10e46a4164647dd70b9c8572ff960ee28c5817b9 Mon Sep 17 00:00:00 2001 From: Jendrik Johannes Date: Thu, 7 Dec 2023 17:31:37 +0100 Subject: [PATCH] Version 1.6.1 --- CHANGELOG.md | 3 +++ README.md | 2 +- build.gradle.kts | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d57a4..b2e810d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Extra Java Module Info Gradle Plugin - Changelog +## Version 1.6.1 +* [Fixed] [#89](https://github.com/gradlex-org/extra-java-module-info/issues/89) - Make Jar patching reproducible + ## Version 1.6 * [New] [#74](https://github.com/gradlex-org/extra-java-module-info/issues/74) - Add 'deriveAutomaticModuleNamesFromFileNames' option (Thanks [Mike Wacker](https://github.com/mikewacker) for suggesting!) * [New] [#85](https://github.com/gradlex-org/extra-java-module-info/issues/85) - Add check that existing 'Automatic-Module-Names' are not changed accidentally diff --git a/README.md b/README.md index 87e428c..5831f83 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Add this to the build file of your convention plugin's build ``` dependencies { - implementation("org.gradlex:extra-java-module-info:1.6") + implementation("org.gradlex:extra-java-module-info:1.6.1") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index e61bffd..426b7d6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "org.gradlex" -version = "1.6" +version = "1.6.1" java { sourceCompatibility = JavaVersion.VERSION_1_8