diff --git a/CHANGELOG.md b/CHANGELOG.md index db9eda4..3701d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Support for RubyMine 2025.1 and up (#38) + ## [0.0.11] - 2024-11-08 ### Added diff --git a/build.gradle.kts b/build.gradle.kts index 06816ad..591656c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -83,7 +83,7 @@ intellijPlatform { ideaVersion { sinceBuild = providers.gradleProperty("pluginSinceBuild") - untilBuild = providers.gradleProperty("pluginUntilBuild") + untilBuild = provider { null } } } diff --git a/gradle.properties b/gradle.properties index 13f038c..b0f3930 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,11 +4,10 @@ pluginGroup = com.vinted.packwerkintellij pluginName = packwerk-intellij pluginRepositoryUrl = https://github.com/vinted/packwerk-intellij # SemVer format -> https://semver.org -pluginVersion = 0.0.11 +pluginVersion = 0.0.12 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 233 -pluginUntilBuild = 243.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IU