Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## [Unreleased]
- Upgrade project to JDK 17 from JDK 11
- Configure Gradle build to explicitly specify JDK 17 requirements for better IDE integration
- Configure Gradle build to explicitly specify JDK 17 requirements for better IDE integration
- update dependencies
- upgrade to gradle 7.3
- Update to IntelliJ 2022.2 as building platform
- Upgrade gradle-intellij-plugin to 1.8.0 for IntelliJ 2022.2 support
- Upgrade gradle-changelog-plugin to 1.3.1
- Upgrade Kotlin to 1.7.10 for better compatibility


## [1.11.0]
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.6.0"
id 'org.jetbrains.intellij' version '1.1.4'
id 'org.jetbrains.changelog' version '1.2.1'
id 'org.jetbrains.kotlin.jvm' version "1.7.10"
id 'org.jetbrains.intellij' version '1.8.0'
id 'org.jetbrains.changelog' version '1.3.1'
}

apply plugin: 'org.jetbrains.changelog'
Expand Down Expand Up @@ -39,7 +39,7 @@ compileTestKotlin {
}

intellij {
version.set('2021.2')
version.set('2022.2')
patchPluginXml {
changeNotes.set(provider({changelog.getLatest().toHTML()}))
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
I am happy if you report issues, I am going to fix them.
]]></description>

<idea-version since-build="212"/>
<idea-version since-build="222"/>

<depends>com.intellij.modules.lang</depends>

Expand Down
Loading