Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
release: 1.3.0
Browse files Browse the repository at this point in the history
IDEA compatability:
- IDEA 2021.3
  • Loading branch information
Pakisan committed Dec 4, 2021
1 parent d9fa944 commit 28e51c2
Showing 1 changed file with 7 additions and 24 deletions.
31 changes: 7 additions & 24 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group "com.asyncapi.plugin.idea"
version = "1.2.0+idea2021"
version = "1.3.0+idea2021"

repositories {
mavenCentral()
Expand All @@ -19,34 +19,16 @@ dependencies {

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set("2021.2")
version.set("2021.3")
plugins.set(listOf("yaml"))
}
tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") {
sinceBuild.set("211")
untilBuild.set("212.*")
untilBuild.set("213.*")
changeNotes.set("""
<b>Added</b>
<b>IDEA compatability:</b>
<ul>
<li><code>2021.1</code> - <code>2021.1.3</code> Reload on change for AsyncAPI schema preview in built-in/external browser</li>
<li><code>2021.2</code> - <code>2021.2.3</code> Reload on save for AsyncAPI schema preview in built-in/external browser</li>
</ul>
<b>Changed</b>
<ul>
<li>Was changed <code>org.jetbrains.intellij</code> version</li>
<ul>
<li>1.1.4 -> 1.2.1</li>
</ul>
<li>Was changed <code>intellij-plugin-verifier</code> version</li>
<ul>
<li>1.266 -> 1.268</li>
</ul>
</ul>
<b>Fixed</b>
<ul>
<li>Now plugin is available for IDEA <code>2021.1</code> - <code>2021.1.3</code></li>
<li>IDEA 2021.3</li>
</ul>
""".trimIndent())
}
Expand All @@ -60,7 +42,8 @@ tasks.getByName<org.jetbrains.intellij.tasks.RunPluginVerifierTask>("runPluginVe
"2021.2",
"2021.2.1",
"2021.2.2",
"2021.2.3"
"2021.2.3",
"2021.3"
))
verifierVersion.set("1.268")
}
Expand Down

0 comments on commit 28e51c2

Please sign in to comment.