diff --git a/build.gradle.kts b/build.gradle.kts index 912883577..6912ee7c3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -217,6 +217,11 @@ intellijPlatform { } } ) + + ideaVersion { + sinceBuild.set(properties("pluginSinceBuild")) + untilBuild = provider { null } + } } publishing { diff --git a/gradle.properties b/gradle.properties index b503c2491..f522b18da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,10 +1,10 @@ -pluginVersion = 0.9.8-alpha.1 +pluginVersion = 0.9.8-alpha.5 # Info about build ranges: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html # Note that an xyz branch corresponds to version 20xy.z and a since build of xyz.* # means that the first possible build is the next branch number after xyz, so e.g. # a since build of 173.* is equal to 181 -pluginSinceBuild = 241 +pluginSinceBuild = 242.0 # Token for releasing to Jetbrains using the Gradle intellij/publishPlugin task, for more information see the Gradle build file. intellijPublishToken=mytoken