From 1d711b2c4ed4b0a1c7188e48801a6d728fec19ed Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 13 May 2025 10:17:52 +0200 Subject: [PATCH] Remove `pluginUntilBuild` obsolete property --- .github/template-cleanup/gradle.properties | 1 - CHANGELOG.md | 5 +++++ README.md | 1 - build.gradle.kts | 1 - gradle.properties | 1 - 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 0cf2d60..257da7c 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -8,7 +8,6 @@ pluginVersion = 0.0.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 242 -pluginUntilBuild = 252.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC diff --git a/CHANGELOG.md b/CHANGELOG.md index c63bfd9..0237d17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## [Unreleased] + +### Removed + +- Remove `pluginUntilBuild` obsolete property + ### Changed - Upgrade Gradle Wrapper to `8.14` diff --git a/README.md b/README.md index 622651b..e2f0184 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,6 @@ The project-specific configuration file [`gradle.properties`][file:gradle.proper | `pluginRepositoryUrl` | Repository URL used for generating URLs by the [Gradle Changelog Plugin][gh:gradle-changelog-plugin] | | `pluginVersion` | The current version of the plugin in [SemVer][semver] format. | | `pluginSinceBuild` | The `since-build` attribute of the `` tag. | -| `pluginUntilBuild` | The `until-build` attribute of the `` tag. | | `platformType` | The type of IDE distribution. | | `platformVersion` | The version of the IntelliJ Platform IDE will be used to build the plugin. | | `platformPlugins` | Comma-separated list of dependencies to the plugins from the Plugin Repositories. | diff --git a/build.gradle.kts b/build.gradle.kts index 69ca8f4..2e4ddb7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -82,7 +82,6 @@ intellijPlatform { ideaVersion { sinceBuild = providers.gradleProperty("pluginSinceBuild") - untilBuild = providers.gradleProperty("pluginUntilBuild") } } diff --git a/gradle.properties b/gradle.properties index 1cce3bc..f2e432a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,6 @@ pluginVersion = 2.1.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 242 -pluginUntilBuild = 252.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC