File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,8 @@ intellijPlatform {
197
197
version.set(project.version.toString())
198
198
ideaVersion {
199
199
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 }
201
202
}
202
203
// Extract the <!-- Plugin description --> section from README.md and provide it to the plugin's manifest
203
204
description.set(
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ pluginRepositoryUrl=https://github.com/apollographql/apollo-kotlin
10
10
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
11
11
# for insight into build numbers and IntelliJ Platform versions.
12
12
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.*
15
15
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
16
16
platformType =IU
17
17
# Corresponds to AS Ladybug 2024.2.1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
You can’t perform that action at this time.
0 commit comments