Skip to content

Commit

Permalink
fix: expand compatibility range (#85)
Browse files Browse the repository at this point in the history
expands the compatibility range for the plugin from `241.*` to `242.*`
  • Loading branch information
benmelz authored Aug 21, 2024
1 parent 4e7eb17 commit 87a46e7
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("2024.1")
version.set("2024.2")
type.set("IU") // Target IDE Platform

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

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

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

signPlugin {
Expand Down

0 comments on commit 87a46e7

Please sign in to comment.