Skip to content

Commit

Permalink
Version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Nov 17, 2023
1 parent dd3d198 commit 7c3ef68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Extra Java Module Info Gradle Plugin - Changelog

## 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
* [Fixed] [#77](https://github.com/gradlex-org/extra-java-module-info/issues/77) - 'exportAllPackages' breaks module for multi-release Jars (Thanks [Christopher Schnick](https://github.com/crschnick) for reporting!)
* [Fixed] [#78](https://github.com/gradlex-org/extra-java-module-info/issues/78) - Empty Jars created when Intellij refreshes project (Thanks [Kostas Pagratis](https://github.com/kpagratis) for reporting!)
* [Fixed] [#81](https://github.com/gradlex-org/extra-java-module-info/issues/81) - 'requireAllDefinedDependencies' does not work reliably for 'annotationProcessor'

## Version 1.5
* [New] [#75](https://github.com/gradlex-org/extra-java-module-info/issues/75) - Add 'failOnAutomaticModules' option (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!)
* [New] [#75](https://github.com/gradlex-org/extra-java-module-info/issues/75) - Support patching of real modules (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5")
implementation("org.gradlex:extra-java-module-info:1.6")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "org.gradlex"
version = "1.5"
version = "1.6"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 7c3ef68

Please sign in to comment.