Skip to content

Commit

Permalink
Update plugin version and IntelliJ compatibility (#48)
Browse files Browse the repository at this point in the history
* Update plugin version and IntelliJ compatibility

Upgraded plugin version to 0.4.4-stable and extended compatibility to IntelliJ IDEA 2024.3. Also updated Kotlin to 2.0.21 and IntelliJ platform to version 2.1.0.

* remove pluginUntilBuild limit

---------

Co-authored-by: GoldSubmarine <[email protected]>
  • Loading branch information
daejoon and Nayacco authored Nov 17, 2024
1 parent 88e5959 commit 177f67d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
# RestfulHelper Changelog

## [Unreleased]
- Support IntelliJ IDEA 2024.3
- Upgrade Kotlin to 2.0.21
- Upgrade org.jetbrains.intellij.platform to 2.1.0
- Upgrade platformVersion to 2024.3

## [0.4.3-stable]
- Support IntelliJ IDEA 2024.2
- Upgrade Gradle to 8.9
- Upgrade Kotlin to 1.9.24
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ intellijPlatform {

ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
untilBuild = provider { null }
}
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

pluginGroup = com.github.goldsubmarine.restfulhelper
pluginName = RestfulHelper
pluginVersion = 0.4.3-stable
pluginVersion = 0.4.4-stable
pluginRepositoryUrl = https://github.com/GoldSubmarine/RestfulHelper

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 242
pluginUntilBuild = 242.*
pluginSinceBuild = 243
#pluginUntilBuild = 243.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion = 2024.2
platformVersion = 2024.3

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ apacheText = "1.12.0"

# plugins
changelog = "2.2.1"
intelliJPlatform = "2.0.0"
kotlin = "1.9.24"
intelliJPlatform = "2.1.0"
kotlin = "2.0.21"
kover = "0.8.1"
qodana = "2024.1.5"

Expand Down

0 comments on commit 177f67d

Please sign in to comment.