Skip to content

Commit

Permalink
Release 4.4.0
Browse files Browse the repository at this point in the history
- Upgrade to ktlint 1.3.0
- Upgrade to kotlin 2.0
  • Loading branch information
jeremymailen committed Jun 22, 2024
1 parent e08aeae commit 9a40481
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand All @@ -31,7 +31,7 @@ plugins {

```groovy
plugins {
id "org.jmailen.kotlinter" version "4.3.0"
id "org.jmailen.kotlinter" version "4.4.0"
}
```

Expand All @@ -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
}
```

Expand All @@ -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
}
```

Expand Down Expand Up @@ -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")
}

```
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 9a40481

Please sign in to comment.