diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a50539..33b544a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,9 @@ ## [Unreleased] -## [1.0.4] - 2023-12-11 - ### Changed - Update Gradle version -- Remove untilBuild property and make plugin compatible with all future intellij version +- Update untilBuild property and make plugin compatible with new Intellij version ## [1.0.3] - 2023-08-17 diff --git a/build.gradle.kts b/build.gradle.kts index bb12751..a14ac04 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,6 +63,7 @@ tasks { patchPluginXml { version = properties("pluginVersion") sinceBuild = properties("pluginSinceBuild") + untilBuild = properties("pluginUntilBuild") // Extract the section from README.md and provide for the plugin's manifest pluginDescription = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map { diff --git a/gradle.properties b/gradle.properties index 3e2ce8c..ce10266 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,6 +8,7 @@ pluginVersion=1.0.4 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild=222 +pluginUntilBuild=233.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType=IC