Skip to content

Commit

Permalink
Upgrade dependencies and version to ensure compatibility
Browse files Browse the repository at this point in the history
Updated Kotlin JVM to 2.0.21, Compose to 1.7.3, and version to 0.5.1. These changes improve compatibility, stability, and include the latest fixes and updates. Adjusted test dependency to match the updated Compose version.
  • Loading branch information
kdroidFilter committed Dec 27, 2024
1 parent ff5fdf5 commit d2e74e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import com.vanniktech.maven.publish.SonatypeHost
import org.jetbrains.compose.desktop.application.dsl.TargetFormat

plugins {
kotlin("jvm") version "2.0.20"
id("org.jetbrains.compose") version "1.7.0"
kotlin("jvm") version "2.0.21"
id("org.jetbrains.compose") version "1.7.3"
id("org.jetbrains.kotlin.plugin.compose") version "2.0.21"
id("com.vanniktech.maven.publish") version "0.30.0"
}

group = "com.kdroid.composenativetray"
version = "0.5.0"
version = "0.5.1"

repositories {
mavenCentral()
Expand All @@ -24,7 +24,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
implementation("io.github.kdroidfilter:kmplog:0.3.0")
implementation(compose.desktop.currentOs)
testImplementation("org.jetbrains.compose.material3:material3-desktop:1.7.0")
testImplementation("org.jetbrains.compose.material3:material3-desktop:1.7.3")
testImplementation(kotlin("test"))
}

Expand Down

0 comments on commit d2e74e6

Please sign in to comment.