From 59a563c323c05e48f2f8349eba9844f0c6dc0ced Mon Sep 17 00:00:00 2001 From: Thomas Schouten Date: Sat, 9 Nov 2024 10:05:18 +0100 Subject: [PATCH] Fix "until-build" property --- build.gradle.kts | 5 +++++ gradle.properties | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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