Skip to content

Commit

Permalink
Merge pull request #123 from devoxx/issue-122
Browse files Browse the repository at this point in the history
Feat #122: Support IDEA v242.*
  • Loading branch information
stephanj authored Jun 26, 2024
2 parents 28c9478 + 4d2af28 commit 3c52e72
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "com.devoxx.genie"
version = "0.1.19"
version = "0.1.20"

repositories {
mavenCentral()
Expand Down Expand Up @@ -77,7 +77,7 @@ tasks {

patchPluginXml {
sinceBuild.set("233")
untilBuild.set("241.*")
untilBuild.set("242.*")
}

shadowJar {
Expand Down
7 changes: 7 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>

<!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. -->
<id>com.devoxx.genie</id>

Expand All @@ -10,6 +11,8 @@
<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
<vendor email="[email protected]" url="https://devoxx.com">Devoxx</vendor>

<idea-version since-build="233"/>

<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager.
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag.
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
Expand All @@ -32,6 +35,10 @@
]]></description>

<change-notes><![CDATA[
<h2>v0.1.20</h2>
<UL>
<LI>Updated until-version to 242</LI>
</UL>
<h2>v0.1.19</h2>
<UL>
<LI>Feat #98: Allow a streaming response to be stopped</LI>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Tue Jun 25 16:16:01 CEST 2024
version=0.1.19
#Wed Jun 26 10:32:29 CEST 2024
version=0.1.20

0 comments on commit 3c52e72

Please sign in to comment.