Skip to content

Commit

Permalink
release 1.7.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SchweinchenFuntik committed May 10, 2021
1 parent 1ef2915 commit d7527fb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,17 @@ intellij {
}

tasks {
withType<PatchPluginXmlTask> {
patchPluginXml {
version(project.version)
sinceBuild("203")
untilBuild("")
}

withType<PublishTask> {
publishPlugin {
username(publishUsername)
password(publishPassword)
}

withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}

withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}
Expand All @@ -55,3 +50,8 @@ tasks {
}
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

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.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 4 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
]]></description>

<change-notes><![CDATA[
<h4>1.7.20.1 2021-05-10</h4>
<ul>
<li>Support IDEA 2020.3</li>
</ul>
<h4>1.7.20 2020-08-24</h4>
<ul>
<li>Support kotlin 1.4</li>
Expand Down

0 comments on commit d7527fb

Please sign in to comment.