Skip to content

Commit 59a563c

Browse files
committed
Fix "until-build" property
1 parent 6ffb5f9 commit 59a563c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,11 @@ intellijPlatform {
217217
}
218218
}
219219
)
220+
221+
ideaVersion {
222+
sinceBuild.set(properties("pluginSinceBuild"))
223+
untilBuild = provider { null }
224+
}
220225
}
221226

222227
publishing {

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
pluginVersion = 0.9.8-alpha.1
1+
pluginVersion = 0.9.8-alpha.5
22

33
# Info about build ranges: https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
44
# Note that an xyz branch corresponds to version 20xy.z and a since build of xyz.*
55
# means that the first possible build is the next branch number after xyz, so e.g.
66
# a since build of 173.* is equal to 181
7-
pluginSinceBuild = 241
7+
pluginSinceBuild = 242.0
88

99
# Token for releasing to Jetbrains using the Gradle intellij/publishPlugin task, for more information see the Gradle build file.
1010
intellijPublishToken=mytoken

0 commit comments

Comments
 (0)