Skip to content

Commit 4cf3084

Browse files
committed
1.6.5: Update compatibility with IntelliJ IDEA 2024.3
1 parent 03842f5 commit 4cf3084

File tree

10 files changed

+19
-20
lines changed

10 files changed

+19
-20
lines changed

CHANGELOG.md

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

33
# KDoc Formatter Changelog
44

5+
## [1.6.5]
6+
- IDE-only update: Marked compatible with IntelliJ IDEA 2024.3.
7+
- Updated dependencies
8+
59
## [1.6.4]
610
- Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview
711
treats an indent of 4 or more as preformatted text even on a continued

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.4
123+
kdoc-formatter: Version 1.6.5
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.4.1'
5+
gradlePluginVersion = '8.6.0'
66
}
77

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

1818
plugins {
1919
id 'java'
20-
id 'org.jetbrains.kotlin.jvm' version '2.0.0'
21-
id 'com.ncorti.ktfmt.gradle' version '0.19.0'
20+
id 'org.jetbrains.kotlin.jvm' version '2.0.20'
21+
id 'com.ncorti.ktfmt.gradle' version '0.20.1'
2222
}
2323

2424
group 'kdocformatter'

gradle-plugin/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.4.1'
5+
gradlePluginVersion = '8.6.0'
66
}
77

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

1818
plugins {
1919
id 'java'
20-
id 'org.jetbrains.kotlin.jvm' version '2.0.0'
20+
id 'org.jetbrains.kotlin.jvm' version '2.0.20'
2121
id 'java-gradle-plugin'
2222
id 'maven-publish'
2323
id 'com.gradle.plugin-publish' version '0.9.10'
24-
id 'com.ncorti.ktfmt.gradle' version '0.19.0'
24+
id 'com.ncorti.ktfmt.gradle' version '0.20.1'
2525
}
2626

2727
// https://issues.sonatype.org/browse/OSSRH-63191

gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

ide-plugin/CHANGELOG.md

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

33
# KDoc Formatter Plugin Changelog
44

5+
## [1.6.5]
6+
- Mark plugin as compatible with 2024.3.
7+
58
## [1.6.4]
69
- Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview
710
treats an indent of 4 or more as preformatted text even on a continued

ide-plugin/build.gradle.kts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ fun properties(key: String) = project.findProperty(key).toString()
88
plugins {
99
id("java")
1010
id("org.jetbrains.kotlin.jvm")
11-
id("org.jetbrains.intellij") version "1.17.3"
12-
id("org.jetbrains.changelog") version "2.2.0"
13-
id("org.jetbrains.qodana") version "0.1.13"
11+
id("org.jetbrains.intellij") version "1.17.4"
12+
id("org.jetbrains.changelog") version "2.2.1"
1413
id("com.android.lint")
1514
id("com.ncorti.ktfmt.gradle")
1615
}
@@ -42,13 +41,6 @@ changelog {
4241
repositoryUrl.set(properties("pluginRepositoryUrl"))
4342
}
4443

45-
qodana {
46-
cachePath.set(projectDir.resolve(".qodana").canonicalPath)
47-
reportPath.set(projectDir.resolve("build/reports/inspections").canonicalPath)
48-
saveReport.set(true)
49-
showReport.set(System.getenv("QODANA_SHOW_REPORT")?.toBoolean() ?: false)
50-
}
51-
5244
tasks {
5345
properties("javaVersion").let {
5446
withType<JavaCompile> {

ide-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginRepositoryUrl = https://github.com/tnorbye/kdoc-formatter
88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.
1010
pluginSinceBuild = 232
11-
pluginUntilBuild = 242.*
11+
pluginUntilBuild = 243.*
1212

1313
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1414
platformType = IC

library/src/main/resources/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616

1717
# Release version definition
18-
buildVersion = 1.6.4
18+
buildVersion = 1.6.5

0 commit comments

Comments
 (0)