Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.4.0 #386

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading