Skip to content

Commit

Permalink
fix: expand compatibility range (#76)
Browse files Browse the repository at this point in the history
expands the compatibility range for the plugin from 233.* to 241.*
  • Loading branch information
benmelz authored Apr 4, 2024
1 parent 2f5964e commit 60c50f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ dependencies {
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.1")
version.set("2024.1")
type.set("IU") // Target IDE Platform

plugins.set(listOf("org.jetbrains.plugins.haml:231.8109.91"))
plugins.set(listOf("org.jetbrains.plugins.haml:241.14494.150"))
}

configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
Expand All @@ -49,7 +49,7 @@ tasks {

patchPluginXml {
sinceBuild.set("231")
untilBuild.set("233.*")
untilBuild.set("241.*")
}

signPlugin {
Expand Down

0 comments on commit 60c50f8

Please sign in to comment.