Skip to content

Commit 3a8fcf7

Browse files
authored
[IJ Plugin] Remove untilBuild (#6279)
1 parent e8da44d commit 3a8fcf7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

intellij-plugin/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ intellijPlatform {
197197
version.set(project.version.toString())
198198
ideaVersion {
199199
sinceBuild = properties("pluginSinceBuild")
200-
untilBuild = properties("pluginUntilBuild")
200+
// No untilBuild specified, the plugin wants to be compatible with all future versions
201+
untilBuild = provider { null }
201202
}
202203
// Extract the <!-- Plugin description --> section from README.md and provide it to the plugin's manifest
203204
description.set(

intellij-plugin/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pluginRepositoryUrl=https://github.com/apollographql/apollo-kotlin
1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
1212
pluginSinceBuild=242
13-
# Upper bound: it's mandatory set it, and the plugin must be tested with this version
14-
pluginUntilBuild=243.*
13+
# No untilBuild specified, the plugin wants to be compatible with all future versions
14+
# pluginUntilBuild=243.*
1515
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1616
platformType=IU
1717
# Corresponds to AS Ladybug 2024.2.1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html

0 commit comments

Comments
 (0)