diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f19428..74bbe69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Module Maker Changelog +## [1.1.2] +- Fix startup issue on Windows + ## [1.1.1] - Platform updates diff --git a/build.gradle.kts b/build.gradle.kts index 19da77f..5c15e71 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -51,7 +51,10 @@ dependencies { implementation(compose.materialIconsExtended) implementation(libs.segment) - val version = "0.8.18" + // I usually do + // ./gradlew dependencies | grep "skiko" + // to get the skiko version that compose depends on + val version = "0.9.37.4" val macTarget = "macos-arm64" val windowsTarget = "windows-x64" val linuxTarget = "linux-x64" diff --git a/gradle.properties b/gradle.properties index b085eb5..bb39734 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.joetr.modulemaker pluginName = ModuleMaker pluginRepositoryUrl = https://github.com/j-roskopf/ModuleMakerPlugin # SemVer format -> https://semver.org -pluginVersion = 1.1.1 +pluginVersion = 1.1.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 222 @@ -13,7 +13,7 @@ pluginSinceBuild = 222 # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = AI # AS version and patch at the end -platformVersion = 2024.3.1.1 +platformVersion = 2025.2.3.1 # Example: platformBundledPlugins = com.intellij.java platformBundledPlugins = com.intellij.java @@ -39,4 +39,4 @@ org.gradle.caching = true # Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment systemProp.org.gradle.unsafe.kotlin.assignment = true -compose.version=1.7.3 +compose.version=1.10.1 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 5299255..fb0130a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,9 +2,9 @@ freemarker = "2.3.30" serialization = "1.5.1" jdk = "17" -kotlin = "2.1.20" +kotlin = "2.3.0" changelog = "2.0.0" -gradleIntelliJPlugin = "2.4.0" +gradleIntelliJPlugin = "2.11.0" spotless = "6.8.0" segment = "1.13.2" junit = "4.13.2"