Skip to content

Commit 5399775

Browse files
committed
Support for IntelliJ 2023.3.*
1 parent 4805ce4 commit 5399775

File tree

4 files changed

+5
-15
lines changed

4 files changed

+5
-15
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,12 @@ jobs:
7070
with:
7171
plugin-location: 'target/plugin/kebs-intellij/lib/kebs-intellij.jar'
7272
ide-versions: |
73-
ideaIC:2022.3
74-
ideaIU:2022.3
7573
ideaIC:2022.3.3
7674
ideaIU:2022.3.3
7775
ideaIC:2023.1.2
7876
ideaIU:2023.1.2
79-
ideaIC:232-EAP-SNAPSHOT
80-
ideaIU:232-EAP-SNAPSHOT
77+
ideaIC:2023.3.1
78+
ideaIU:2023.3.1
8179
failure-levels: |
8280
COMPATIBILITY_PROBLEMS
8381
INVALID_PLUGIN

project/ChangeNotes.scala

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
object ChangeNotes {
22
val value =
33
"""<![CDATA[
4-
<p>Support for recent versions of IntelliJ and small improvement to "Generate @tagged object" action.</p>
5-
<p><b>Note:</b> starting from version 0.0.10 plugin will work in IntelliJ IDEA 2022.3 and newer (older versions
6-
are supported by older version of the plugin)</p>
7-
<ul>
8-
<li>support for IntelliJ IDEA 2022.3.*</li>
9-
<li>support for IntelliJ IDEA 2023.1.*</li>
10-
<li>support for IntelliJ IDEA 2023.2.* (EAP and hopefully also future GA)</li>
11-
<li>organize imports and code reformat after changes made in code by "Generate @tagged object" action</li>
12-
</ul>
4+
<p>Support for IntelliJ IDEA 2023.3.*</p>
135
]]>"""
146
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<change-notes>replaced-by-build</change-notes>
2525

26-
<idea-version since-build="223" until-build="232.*"/>
26+
<idea-version since-build="223" until-build="233.*"/>
2727

2828
<depends>org.intellij.scala</depends>
2929
<depends>com.intellij.java</depends>

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.0.10"
1+
ThisBuild / version := "0.0.10-SNAPSHOT"

0 commit comments

Comments
 (0)