From 9a40481706967437f173622a919bc6a04c4ec207 Mon Sep 17 00:00:00 2001 From: Jeremy Mailen Date: Sat, 22 Jun 2024 11:22:00 -0700 Subject: [PATCH] Release 4.4.0 - Upgrade to ktlint 1.3.0 - Upgrade to kotlin 2.0 --- README.md | 10 +++++----- build.gradle.kts | 3 +-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e94f5e9..3be775a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jm ```kotlin plugins { - id("org.jmailen.kotlinter") version "4.3.0" + id("org.jmailen.kotlinter") version "4.4.0" } ``` @@ -31,7 +31,7 @@ plugins { ```groovy plugins { - id "org.jmailen.kotlinter" version "4.3.0" + id "org.jmailen.kotlinter" version "4.4.0" } ``` @@ -45,7 +45,7 @@ Root `build.gradle.kts` ```kotlin plugins { - id("org.jmailen.kotlinter") version "4.3.0" apply false + id("org.jmailen.kotlinter") version "4.4.0" apply false } ``` @@ -65,7 +65,7 @@ Root `build.gradle` ```groovy plugins { - id 'org.jmailen.kotlinter' version "4.3.0" apply false + id 'org.jmailen.kotlinter' version "4.4.0" apply false } ``` @@ -319,7 +319,7 @@ Alternatively, if you have a custom build convention plugin that utilizes kotlin ```kotlin dependencies { implementation(platform("com.pinterest.ktlint:ktlint-bom:1.2.1")) - implementation("org.jmailen.gradle:kotlinter-gradle:4.3.0") + implementation("org.jmailen.gradle:kotlinter-gradle:4.4.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index fad0de4..56db985 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,11 +20,10 @@ val githubUrl = "https://github.com/jeremymailen/kotlinter-gradle" val webUrl = "https://github.com/jeremymailen/kotlinter-gradle" val projectDescription = "Lint and formatting for Kotlin using ktlint with configuration-free setup on JVM and Android projects" -version = "4.3.0" +version = "4.4.0" group = "org.jmailen.gradle" description = projectDescription - configurations { register("testRuntimeDependencies") { extendsFrom(compileOnly.get())