Skip to content

Commit 972316c

Browse files
committed
1.6.9: Compatibility with IntelliJ 2025.3
1 parent 7b5f030 commit 972316c

File tree

17 files changed

+4131
-4124
lines changed

17 files changed

+4131
-4124
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ m2
88
*.swp
99
.intellijPlatform
1010
.kotlin
11+
local.properties

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
# KDoc Formatter Changelog
44

5+
## [1.6.9]
6+
- IDE-only update: Marked compatible with IntelliJ IDEA 2025.3.
7+
58
## [1.6.8]
69
- IDE-only update: Marked compatible with IntelliJ IDEA 2025.2.
710

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Options:
120120
@<filename>
121121
Read filenames from file.
122122
123-
kdoc-formatter: Version 1.6.8
123+
kdoc-formatter: Version 1.6.9
124124
https://github.com/tnorbye/kdoc-formatter
125125
```
126126

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
apply from: "$rootDir/version.gradle"
33

44
ext {
5-
gradlePluginVersion = '8.7.1'
5+
gradlePluginVersion = '8.13.2'
66
}
77

88
repositories {
@@ -17,8 +17,8 @@ buildscript {
1717

1818
plugins {
1919
id 'java'
20-
id 'org.jetbrains.kotlin.jvm' version '2.1.21'
21-
id 'com.ncorti.ktfmt.gradle' version '0.22.0'
20+
id 'org.jetbrains.kotlin.jvm' version '2.2.21'
21+
id 'com.ncorti.ktfmt.gradle' version '0.25.0'
2222
}
2323

2424
group 'kdocformatter'

cli/src/main/kotlin/kdocformatter/cli/KDocFileFormattingOptions.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,10 @@ class KDocFileFormattingOptions {
308308
}
309309

310310
return """
311-
Usage: kdoc-formatter [options] file(s)
311+
Usage: kdoc-formatter [options] file(s)
312312
313-
Options:
314-
"""
313+
Options:
314+
"""
315315
.trimIndent() +
316316
"\n" +
317317
formattedOptions +

cli/src/test/kotlin/kdocformatter/cli/EditorConfigsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class EditorConfigsTest {
2828
@TempDir @JvmField var temporaryFolder: File? = null
2929
}
3030

31-
class ConfigFile(val relativePath: String, @Language("EditorConfig") val contents: String)
31+
class ConfigFile(val relativePath: String, @param:Language("EditorConfig") val contents: String)
3232

3333
private fun createFileTree(vararg files: ConfigFile): File {
3434
val root = temporaryFolder!!

0 commit comments

Comments
 (0)