Skip to content

Commit

Permalink
Merge pull request #3731 from Hannah-Sten/since-until
Browse files Browse the repository at this point in the history
Fix "until-build" property
  • Loading branch information
PHPirates authored Nov 9, 2024
2 parents 6ffb5f9 + 59a563c commit 1a10528
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,11 @@ intellijPlatform {
}
}
)

ideaVersion {
sinceBuild.set(properties("pluginSinceBuild"))
untilBuild = provider { null }
}
}

publishing {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1a10528

Please sign in to comment.