Skip to content

Commit

Permalink
build: compatibility with IDEA 2020.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lppedd committed Jun 10, 2020
1 parent 0fe3236 commit adbe2db
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
java
id("org.jetbrains.intellij") version "0.4.18"
kotlin("jvm") version "1.4-M1"
id("org.jetbrains.intellij") version "0.4.21"
kotlin("jvm") version "1.4-M2"
}

group = "com.github.lppedd"
version = "0.15.0"
version = "0.15.1"

repositories {
maven("https://dl.bintray.com/kotlin/kotlin-eap")
Expand Down Expand Up @@ -57,7 +57,7 @@ tasks {
patchPluginXml {
version(project.version)
sinceBuild("192.5728")
untilBuild("201.*")
untilBuild("202.*")
pluginDescription(File("plugin-description.html").readText(Charsets.UTF_8))
changeNotes(File("change-notes/${version.replace('.', '_')}.html").readText(Charsets.UTF_8))
}
Expand Down
8 changes: 8 additions & 0 deletions change-notes/0_15_1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<h3>0.15.1 (11/06/2020)</h3>
<p>
Twenty-third alpha release.<br/>
Build changes
</p>
<ul>
<li>Compatibility with IDEA 2020.2</li>
</ul>

0 comments on commit adbe2db

Please sign in to comment.