Skip to content

Commit 59a8710

Browse files
committed
Prepare release 1.11.0
1 parent c0e6ffe commit 59a8710

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ To use the plugin, include in your build script:
2828
plugins {
2929
// Option A: When your root project has a SourceSet
3030
// e.g. the root project is applying the java/groovy/kotlin plugin as well
31-
id "com.github.andygoossens.modernizer" version "1.10.0"
31+
id "com.github.andygoossens.modernizer" version "1.11.0"
3232
// Option B: When your root project does not have a SourceSet
33-
id "com.github.andygoossens.modernizer" version "1.10.0" apply false
33+
id "com.github.andygoossens.modernizer" version "1.11.0" apply false
3434
}
3535
3636
repositories {
@@ -193,10 +193,10 @@ Add the following dependency to your Gradle build script:
193193

194194
```groovy
195195
// Option 1: compile time dependency (Gradle's old way)
196-
compile 'org.gaul:modernizer-maven-annotations:2.6.0'
196+
compile 'org.gaul:modernizer-maven-annotations:3.1.0'
197197
198198
// Option 2: implementation dependency (Gradle's new way)
199-
implementation 'org.gaul:modernizer-maven-annotations:2.6.0'
199+
implementation 'org.gaul:modernizer-maven-annotations:3.1.0'
200200
```
201201

202202
## Version comparison
@@ -217,6 +217,7 @@ The table below describes how they relate to each other.
217217
| 1.8.x | 2.6.0 |
218218
| 1.9.x | 2.7.0 |
219219
| 1.10.0 | 2.9.0 |
220+
| 1.11.0 | 3.1.0 |
220221

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

243244
```groovy
244245
modernizer {
245-
toolVersion = '1.10.0'
246+
toolVersion = '3.1.0'
246247
}
247248
```
248249

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.11.0 (January 19, 2025)
4+
35
* Support for Modernizer Maven Plugin 3.1.0 and its new API
46

57
### Version 1.10.0 (November 4, 2024)

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.10.1-SNAPSHOT'
13+
version = '1.11.0'
1414

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

0 commit comments

Comments
 (0)