Skip to content

Commit 2768145

Browse files
committed
Version 1.12
1 parent 3fb6a63 commit 2768145

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22

33
## Version 1.12
44
* [New] [#174](https://github.com/gradlex-org/extra-java-module-info/pull/174) - Add 'requiresStaticTransitive(...)' to module patch DSL
5+
* [New] [#172](https://github.com/gradlex-org/extra-java-module-info/pull/172) - Allow ignoring specific service provider implementations (Thanks [Ihor Herasymenko](https://github.com/iherasymenko) for contributing!)
6+
* [Fixed] [#171](https://github.com/gradlex-org/extra-java-module-info/pull/171) - In some cases, the plugin creates and empty providers set (Thanks [Larry North](https://github.com/LarryNorth) for reporting!)
57

68
## Version 1.11
79
* [New] [#134](https://github.com/gradlex-org/extra-java-module-info/pull/134) - Add 'disable(...)' and 'enable(...)' options to control when the plugin is active
810
* [New] [#161](https://github.com/gradlex-org/extra-java-module-info/pull/161) - Add 'skipLocalJars' option
911
* [New] [#106](https://github.com/gradlex-org/extra-java-module-info/pull/106) - Actionable error message when plugin is used at configuration time
1012

1113
## Version 1.10.1
12-
* [Fix] [#164](https://github.com/gradlex-org/extra-java-module-info/pull/164) - fix: 'preserveExisting' does not duplicate 'provides' entries
14+
* [Fixed] [#164](https://github.com/gradlex-org/extra-java-module-info/pull/164) - 'preserveExisting' does not duplicate 'provides' entries
1315

1416
## Version 1.10
1517
* [New] [#160](https://github.com/gradlex-org/extra-java-module-info/pull/160) - Add 'preserveExisting' option to patch real modules

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Add this to the build file of your convention plugin's build
5252

5353
```
5454
dependencies {
55-
implementation("org.gradlex:extra-java-module-info:1.11")
55+
implementation("org.gradlex:extra-java-module-info:1.12")
5656
}
5757
```
5858

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "org.gradlex"
7-
version = "1.11"
7+
version = "1.12"
88

99
java {
1010
sourceCompatibility = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)