From e58c3daa1596f0cf2338545f89f216e871f1ac49 Mon Sep 17 00:00:00 2001 From: Andy Goossens Date: Sat, 24 Feb 2024 18:42:50 +0100 Subject: [PATCH] Prepare release 1.9.1 --- README.md | 4 ++-- RELEASE_NOTES.md | 2 ++ build.gradle | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index add075a..a6ac49e 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ To use the plugin, include in your build script: plugins { // Option A: When your root project has a SourceSet // e.g. the root project is applying the java/groovy/kotlin plugin as well - id "com.github.andygoossens.modernizer" version "1.9.0" + id "com.github.andygoossens.modernizer" version "1.9.1" // Option B: When your root project does not have a SourceSet - id "com.github.andygoossens.modernizer" version "1.9.0" apply false + id "com.github.andygoossens.modernizer" version "1.9.1" apply false } repositories { diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 522975e..2fe16f5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,7 @@ ### Next version +### Version 1.9.1 (February 24, 2024) + * Get rid of Gradle's deprecation warnings * Build plugin with Gradle 7.6.4 diff --git a/build.gradle b/build.gradle index 16b672a..30ffedc 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ apply from: "$rootDir/gradle/gradle-plugin-publishing.gradle" // 2) Gradle Plugins Portal: publishPlugins group = 'com.github.andygoossens' -version = '1.9.1-SNAPSHOT' +version = '1.9.1' dependencies { compileOnly 'org.gaul:modernizer-maven-plugin:2.7.0'