From c0024b4b4bc5a58bab1b1ecb0af0af300486611e Mon Sep 17 00:00:00 2001 From: Oleg Smelov <79197369+oleg-vinted@users.noreply.github.com> Date: Mon, 20 Jan 2025 13:33:05 +0200 Subject: [PATCH] Add support for RubyMine 2025.1 and up --- CHANGELOG.md | 2 ++ build.gradle.kts | 2 +- gradle.properties | 3 +-- 3 files changed, 4 insertions(+), 3 deletions(-) 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