File tree Expand file tree Collapse file tree 10 files changed +19
-20
lines changed
library/src/main/resources Expand file tree Collapse file tree 10 files changed +19
-20
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# KDoc Formatter Changelog
4
4
5
+ ## [ 1.6.5]
6
+ - IDE-only update: Marked compatible with IntelliJ IDEA 2024.3.
7
+ - Updated dependencies
8
+
5
9
## [ 1.6.4]
6
10
- Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview
7
11
treats an indent of 4 or more as preformatted text even on a continued
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ Options:
120
120
@<filename>
121
121
Read filenames from file.
122
122
123
- kdoc-formatter: Version 1.6.4
123
+ kdoc-formatter: Version 1.6.5
124
124
https://github.com/tnorbye/kdoc-formatter
125
125
```
126
126
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ buildscript {
2
2
apply from : " $rootDir /version.gradle"
3
3
4
4
ext {
5
- gradlePluginVersion = ' 8.4.1 '
5
+ gradlePluginVersion = ' 8.6.0 '
6
6
}
7
7
8
8
repositories {
@@ -17,8 +17,8 @@ buildscript {
17
17
18
18
plugins {
19
19
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 '
22
22
}
23
23
24
24
group ' kdocformatter'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ buildscript {
2
2
apply from : " $rootDir /../version.gradle"
3
3
4
4
ext {
5
- gradlePluginVersion = ' 8.4.1 '
5
+ gradlePluginVersion = ' 8.6.0 '
6
6
}
7
7
8
8
repositories {
@@ -17,11 +17,11 @@ buildscript {
17
17
18
18
plugins {
19
19
id ' java'
20
- id ' org.jetbrains.kotlin.jvm' version ' 2.0.0 '
20
+ id ' org.jetbrains.kotlin.jvm' version ' 2.0.20 '
21
21
id ' java-gradle-plugin'
22
22
id ' maven-publish'
23
23
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 '
25
25
}
26
26
27
27
// https://issues.sonatype.org/browse/OSSRH-63191
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 2
2
3
3
# KDoc Formatter Plugin Changelog
4
4
5
+ ## [ 1.6.5]
6
+ - Mark plugin as compatible with 2024.3.
7
+
5
8
## [ 1.6.4]
6
9
- Switch continuation indent from 4 to 3. (IntelliJ's Dokka preview
7
10
treats an indent of 4 or more as preformatted text even on a continued
Original file line number Diff line number Diff line change @@ -8,9 +8,8 @@ fun properties(key: String) = project.findProperty(key).toString()
8
8
plugins {
9
9
id(" java" )
10
10
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"
14
13
id(" com.android.lint" )
15
14
id(" com.ncorti.ktfmt.gradle" )
16
15
}
@@ -42,13 +41,6 @@ changelog {
42
41
repositoryUrl.set(properties(" pluginRepositoryUrl" ))
43
42
}
44
43
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
-
52
44
tasks {
53
45
properties(" javaVersion" ).let {
54
46
withType<JavaCompile > {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pluginRepositoryUrl = https://github.com/tnorbye/kdoc-formatter
8
8
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
9
9
# for insight into build numbers and IntelliJ Platform versions.
10
10
pluginSinceBuild = 232
11
- pluginUntilBuild = 242 .*
11
+ pluginUntilBuild = 243 .*
12
12
13
13
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
14
14
platformType = IC
Original file line number Diff line number Diff line change 15
15
#
16
16
17
17
# Release version definition
18
- buildVersion = 1.6.4
18
+ buildVersion = 1.6.5
You can’t perform that action at this time.
0 commit comments