Skip to content

Commit

Permalink
Allow newer version including EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
morland-a authored and TheBlob42 committed Oct 6, 2022
1 parent 88b4682 commit 5598f78
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.7.1

### Changed

- Update to work with version 2022.3

## 0.7.0

### Changed
Expand Down
8 changes: 7 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import org.jetbrains.intellij.tasks.PatchPluginXmlTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
Expand All @@ -7,7 +8,7 @@ plugins {
}

group = "eu.theblob42.idea.whichkey"
version = "0.7.0"
version = "0.7.1"

repositories {
mavenCentral()
Expand All @@ -24,9 +25,14 @@ tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}

tasks.withType<PatchPluginXmlTask> {
sinceBuild.set("222")
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set("2022.2")
updateSinceUntilBuild.set(false)
plugins.set(listOf("IdeaVIM:1.11.1"))
}

Expand Down
8 changes: 3 additions & 5 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,14 @@

<change-notes><![CDATA[
<p>
<strong>0.7.0</strong>
<strong>0.7.1</strong>
</p>
<ul>
<li>update to work with intellij version 2022.2</li>
<li>update to work with IdeaVim version 1.11.1</li>
<li>remove all log4j dependencies</li>
<li>update to work with intellij version 2022.3</li>
</ul>
]]></change-notes>

<version>0.7.0</version>
<version>0.7.1</version>

<depends>com.intellij.modules.platform</depends>
<depends>IdeaVIM</depends>
Expand Down

0 comments on commit 5598f78

Please sign in to comment.