Skip to content

Commit 90c37cc

Browse files
committed
1.6.3: Support K2 compatibility
1 parent 5956d02 commit 90c37cc

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ build
55
hs_err_pid*
66
TODO.md
77
m2
8+
*.swp

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.3]
6+
7+
- Mark plugin as compatible with K2
8+
59
## [1.6.2]
610

711
- IDE plugin update only: Compatibility with IntelliJ 2024.1 EAP.

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.2
123+
kdoc-formatter: Version 1.6.3
124124
https://github.com/tnorbye/kdoc-formatter
125125
```
126126

ide-plugin/CHANGELOG.md

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

33
# KDoc Formatter Plugin Changelog
44

5+
## [1.6.3]
6+
7+
- Mark plugin as compatible with K2
8+
59
## [1.6.2]
610

711
- Compatibility with IntelliJ 2024.1 EAP.

ide-plugin/src/main/resources/META-INF/plugin.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
<depends>com.intellij.modules.platform</depends>
99
<depends>org.jetbrains.kotlin</depends>
1010

11+
<!-- This is temporary mechanism to mark certain plugins as K2-compatible. See IntelliJ commit cf213fb139 for details. -->
12+
<extensions defaultExtensionNs="org.jetbrains.kotlin">
13+
<!--suppress PluginXmlValidity -->
14+
<supportsKotlinK2Mode/>
15+
</extensions>
16+
1117
<extensions defaultExtensionNs="com.intellij">
1218
<applicationService serviceImplementation="kdocformatter.plugin.KDocPluginOptions"/>
1319
<applicationConfigurable groupId="editor" groupWeight="112" id="kdocformatter.options"

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.2
18+
buildVersion = 1.6.3

0 commit comments

Comments
 (0)