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

Updated default KtLint version to 1.5.0 #818

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

- Updated default KtLint version to 1.5.0 [#809](https://github.com/JLLeitschuh/ktlint-gradle/issues/809)

## [12.1.2] - 2024-11-25

### Changed
Expand All @@ -18,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Bump commons-io:commons-io from 2.8.0 to 2.17.0 [#802](https://github.com/JLLeitschuh/ktlint-gradle/pull/802)
- Update version for jgit to 5.13.3.202401111512-r [#766](https://github.com/JLLeitschuh/ktlint-gradle/pull/766)
- builds: remove specific lintian version, as latest ubuntu is now a new version
[#767](https://github.com/JLLeitschuh/ktlint-gradle/pull/767)
[#767](https://github.com/JLLeitschuh/ktlint-gradle/pull/767)
- docs: add Version Catalog setup instructions in README
[#770](https://github.com/JLLeitschuh/ktlint-gradle/pull/770)
[#767](https://github.com/JLLeitschuh/ktlint-gradle/pull/767)
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ java {
}

ktlint {
version = "1.1.0"
version = "1.5.0"
}

tasks.withType<KotlinCompile> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,12 @@ class KtLintSupportedVersionsTest : AbstractPluginTest() {
"0.50.0",
"1.0.1",
"1.1.1",
"1.2.1"
"1.2.1",
"1.3.0",
"1.3.1",
"1.4.0",
"1.4.1",
"1.5.0"
)

override fun provideArguments(
Expand Down