diff --git a/CHANGELOG.md b/CHANGELOG.md index eebe2ef..b7f178a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Extra Java Module Info Gradle Plugin - Changelog +## Version 1.8 +* [New] [#99](https://github.com/gradlex-org/extra-java-module-info/issues/99) - Default behavior for 'module(id, name)' notation without configuration block +* [New] - Use custom mappings from 'java-module-dependencies' for 'known modules' (if available) +* [Fixed] [#96](https://github.com/gradlex-org/extra-java-module-info/pull/96) - Scope computation of 'requireAllDefinedDependencies' + ## Version 1.7 -* [New] [#95](https://github.com/gradlex-org/extra-java-module-info/issues/95) - granular exports and opens declarations (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!) -* [Fixed] [#94](https://github.com/gradlex-org/extra-java-module-info/issues/94) - requireAllDefinedDependencies: skip platform dependencies +* [New] [#95](https://github.com/gradlex-org/extra-java-module-info/issues/95) - Granular exports and opens declarations (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!) +* [Fixed] [#94](https://github.com/gradlex-org/extra-java-module-info/issues/94) - 'requireAllDefinedDependencies' skips platform dependencies ## Version 1.6.2 * [New] - Use shared mappings from 'java-module-dependencies' for 'known modules' (if available) diff --git a/README.md b/README.md index 7370e5a..4a4d81a 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Add this to the build file of your convention plugin's build ``` dependencies { - implementation("org.gradlex:extra-java-module-info:1.7") + implementation("org.gradlex:extra-java-module-info:1.8") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 780e1d4..d842bec 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "org.gradlex" -version = "1.7" +version = "1.8" java { sourceCompatibility = JavaVersion.VERSION_1_8