Skip to content

Commit d7d49f5

Browse files
committed
Prepare release 1.12.0
1 parent d22825e commit d7d49f5

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ To use the plugin, include in your build script.
3131
plugins {
3232
// Option A: When your root project has a SourceSet
3333
// e.g. the root project is applying the java/groovy/kotlin plugin as well
34-
id "com.github.andygoossens.modernizer" version "1.11.0"
34+
id "com.github.andygoossens.modernizer" version "1.12.0"
3535
// Option B: When your root project does not have a SourceSet
36-
id "com.github.andygoossens.modernizer" version "1.11.0" apply false
36+
id "com.github.andygoossens.modernizer" version "1.12.0" apply false
3737
}
3838
3939
repositories {
@@ -72,9 +72,9 @@ subprojects {
7272
plugins {
7373
// Option A: When your root project has a SourceSet
7474
// e.g., the root project is applying the java/groovy/kotlin plugin as well
75-
id("com.github.andygoossens.modernizer") version "1.11.0"
75+
id("com.github.andygoossens.modernizer") version "1.12.0"
7676
// Option B: When your root project does not have a SourceSet
77-
id("com.github.andygoossens.modernizer") version "1.11.0" apply false
77+
id("com.github.andygoossens.modernizer") version "1.12.0" apply false
7878
}
7979

8080
repositories {
@@ -299,7 +299,7 @@ public class Example {
299299
Add the following dependency to your Gradle build script:
300300

301301
```groovy
302-
implementation "org.gaul:modernizer-maven-annotations:3.1.0"
302+
implementation "org.gaul:modernizer-maven-annotations:3.2.0"
303303
```
304304

305305
## Version comparison
@@ -321,6 +321,7 @@ The table below describes how they relate to each other.
321321
| 1.9.x | 2.7.0 |
322322
| 1.10.0 | 2.9.0 |
323323
| 1.11.0 | 3.1.0 |
324+
| 1.12.0 | 3.2.0 |
324325

325326
Note that you can override the default version of Modernizer Maven Plugin which will be used.
326327
Specify the desired version in the `toolVersion` extension property.
@@ -346,7 +347,7 @@ The Gradle plugin will then pick up the requested version and, if the API is sti
346347

347348
```groovy
348349
modernizer {
349-
toolVersion = "3.1.0"
350+
toolVersion = "3.2.0"
350351
}
351352
```
352353

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### Next version
22

3+
### Version 1.12.0 (October 3, 2025)
4+
35
* Support for Modernizer Maven Plugin 3.2.0
46

57
### Version 1.11.0 (January 19, 2025)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apply from: "$rootDir/gradle/gradle-plugin-publishing.gradle"
1010
// 2) Gradle Plugins Portal: publishPlugins
1111

1212
group = 'com.github.andygoossens'
13-
version = '1.11.1-SNAPSHOT'
13+
version = '1.12.0'
1414

1515
dependencies {
1616
compileOnly 'org.gaul:modernizer-maven-plugin:3.2.0'

0 commit comments

Comments
 (0)