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

Commit

Permalink
release: 1.5.0 #34 from Pakisan/release/1.5.0
Browse files Browse the repository at this point in the history
### Added
- Compatability with IDEA 2022.1

### Changed
- was changed `org.jetbrains.intellij` version
  - 1.4.0 -> 1.5.3
- was changed `intellij-plugin-verifier` version
  - 1.268 -> 1.278
- was changed `Gradle` version
  - 6.8 -> 7.4.2
- was changed `JUnit` version
  - 4.12 -> 5.8.2
  • Loading branch information
Pakisan authored Apr 27, 2022
2 parents fb1fe36 + 60cdb4a commit c8880b8
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 13 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 1.5.0+idea2021
published to:
- [JetBrains marketplace](https://plugins.jetbrains.com/plugin/15673-asyncapi/versions/stable/167090)
- [GitHub](https://github.com/Pakisan/jasyncapi-idea-plugin/releases/tag/1.4.0%2Bidea2021)

### Added
- Compatability with IDEA 2022.1

### Changed
- was changed `org.jetbrains.intellij` version
- 1.4.0 -> 1.5.3
- was changed `intellij-plugin-verifier` version
- 1.268 -> 1.278
- was changed `Gradle` version
- 6.8 -> 7.4.2
- was changed `JUnit` version
- 4.12 -> 5.8.2


## 1.4.0+idea2021
published to:
- [JetBrains marketplace](https://plugins.jetbrains.com/plugin/15673-asyncapi/versions/stable/167090)
Expand Down
28 changes: 16 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
plugins {
id("org.jetbrains.intellij") version "1.4.0"
id("org.jetbrains.intellij") version "1.5.3"
java
kotlin("jvm") version "1.4.21"
kotlin("jvm") version "1.6.20"
}

group "com.asyncapi.plugin.idea"
version = "1.4.0+idea2021"
version = "1.5.0+idea2021"

repositories {
mavenCentral()
}

dependencies {
implementation(kotlin("stdlib"))
testImplementation("junit", "junit", "4.12")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.8.2")
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set("2021.3")
version.set("2022.1")
plugins.set(listOf("yaml"))
}
tasks.getByName<org.jetbrains.intellij.tasks.PatchPluginXmlTask>("patchPluginXml") {
sinceBuild.set("211")
untilBuild.set("213.*")
untilBuild.set("221.*")
changeNotes.set("""
<b>New AsyncAPI versions:</b>
<b>IDEA compatability:</b>
<ul>
<li>2.1.0</li>
<li>2.2.0</li>
<li>2.3.0</li>
<li>IDEA 2022.1</li>
</ul>
""".trimIndent())
}
Expand All @@ -48,9 +48,10 @@ tasks.getByName<org.jetbrains.intellij.tasks.RunPluginVerifierTask>("runPluginVe
"2021.3",
"2021.3.1",
"2021.3.2",
"2021.3.3"
"2021.3.3",
"2022.1"
))
verifierVersion.set("1.268")
verifierVersion.set("1.278")
}

tasks {
Expand All @@ -60,4 +61,7 @@ tasks {
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}
test {
useJUnitPlatform()
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c8880b8

Please sign in to comment.