diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e6aff8..65d0647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,14 @@ All notable changes to this project are documented in this file. ### Security +## [1.5.0] - 2024-10-20 + +### Changed + +- Updated compatibility beyond Rider 2024.1 +- Updated to Java 21 +- replaced all obsolete APIs + ## 1.4.0 - 2024-10-13 ### Changed diff --git a/build.gradle.kts b/build.gradle.kts index b03453b..d885ecc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -60,7 +60,10 @@ intellijPlatform { version = plugInVer ideaVersion { sinceBuild = providers.gradleProperty("pluginSinceBuild") - untilBuild = providers.gradleProperty("pluginUntilBuild") + untilBuild = if (providers.gradleProperty("pluginUntilBuild").get().isEmpty()) + provider { null } + else + providers.gradleProperty("pluginUntilBuild") } } pluginVerification { diff --git a/gradle.properties b/gradle.properties index a2613f3..424e837 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,10 @@ # This plugin pluginGroup=jezzsantos -pluginVersion=1.4.0 +pluginVersion=1.5.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html -pluginSinceBuild=222 -pluginUntilBuild=241.* +pluginSinceBuild=241 +# Note: leave pluginUntilBuild empty to support all future minor versions +pluginUntilBuild= # platformVersion below is the version of Rider we will be running on and testing with locally platformVersion=2024.1 # Other properties -> https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-gradle-properties.html