diff --git a/README.md b/README.md index 120fd4a8..2961ab89 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Available on the Gradle Plugins Portal: https://plugins.gradle.org/plugin/org.jm ```kotlin plugins { - id("org.jmailen.kotlinter") version "2.1.1" + id("org.jmailen.kotlinter") version "2.1.2" } ``` @@ -26,7 +26,7 @@ plugins { ```groovy plugins { - id "org.jmailen.kotlinter" version "2.1.1" + id "org.jmailen.kotlinter" version "2.1.2" } ``` @@ -46,7 +46,7 @@ buildscript { } } dependencies { - classpath("org.jmailen.gradle:kotlinter-gradle:2.1.1") + classpath("org.jmailen.gradle:kotlinter-gradle:2.1.2") } } ``` @@ -71,7 +71,7 @@ buildscript { } } dependencies { - classpath "org.jmailen.gradle:kotlinter-gradle:2.1.1" + classpath "org.jmailen.gradle:kotlinter-gradle:2.1.2" } } ``` diff --git a/build.gradle b/build.gradle index b7df1f28..14c2f61b 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ repositories { } dependencies { - implementation 'com.pinterest:ktlint:0.34.2' + implementation 'com.pinterest:ktlint:0.35.0' implementation 'me.cassiano:ktlint-html-reporter:0.2.1' compileOnly 'org.jetbrains.kotlin:kotlin-gradle-plugin' @@ -30,7 +30,7 @@ tasks.withType(PluginUnderTestMetadata).configureEach { pluginClasspath.from(configurations.compileOnly) } -version = '2.1.1' +version = '2.1.2' group = 'org.jmailen.gradle' def pluginId = 'org.jmailen.kotlinter'