Skip to content

Commit

Permalink
Version 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Jan 31, 2024
1 parent 6615eff commit b25ec13
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

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.7"
version = "1.8"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit b25ec13

Please sign in to comment.