Browse Source

Remove `pluginUntilBuild` obsolete property

pull/530/head
Jakub Chrzanowski 7 months ago
parent
commit
da439ee085
  1. 1
      .github/template-cleanup/gradle.properties
  2. 5
      CHANGELOG.md
  3. 1
      README.md
  4. 1
      build.gradle.kts
  5. 1
      gradle.properties

1
.github/template-cleanup/gradle.properties

@ -8,7 +8,6 @@ pluginVersion = 0.0.1 @@ -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

5
CHANGELOG.md

@ -4,6 +4,11 @@ @@ -4,6 +4,11 @@
## [Unreleased]
### Removed
- Remove `pluginUntilBuild` obsolete property
### Changed
- Upgrade Gradle Wrapper to `8.14`

1
README.md

@ -112,7 +112,6 @@ The project-specific configuration file [`gradle.properties`][file:gradle.proper @@ -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 `<idea-version>` tag. |
| `pluginUntilBuild` | The `until-build` attribute of the `<idea-version>` 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. |

1
build.gradle.kts

@ -82,7 +82,6 @@ intellijPlatform { @@ -82,7 +82,6 @@ intellijPlatform {
ideaVersion {
sinceBuild = providers.gradleProperty("pluginSinceBuild")
untilBuild = providers.gradleProperty("pluginUntilBuild")
}
}

1
gradle.properties

@ -8,7 +8,6 @@ pluginVersion = 2.1.0 @@ -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

Loading…
Cancel
Save