Skip to content

Commit ad092fc

Browse files
committed
Bump all dependencies to the latest and add release reference links
1 parent e1c6b70 commit ad092fc

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

buildSrc/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ repositories {
1010
}
1111

1212
dependencies {
13-
val kotlinVersion = "2.2.10"
13+
val kotlinVersion = "2.2.21"
1414
implementation(kotlin("gradle-plugin", kotlinVersion))
1515
implementation("org.jetbrains.kotlin:compose-compiler-gradle-plugin:$kotlinVersion")
16-
implementation("org.jetbrains.compose:compose-gradle-plugin:1.9.0")
16+
implementation("org.jetbrains.compose:compose-gradle-plugin:1.9.1")
1717
implementation("com.huanshankeji.team:gradle-plugins:0.10.0-SNAPSHOT") // TODO don't use a snapshot version in a main branch
18+
// https://developer.android.com/build/releases/gradle-plugin, https://mvnrepository.com/artifact/com.android.tools.build/gradle
1819
implementation("com.android.tools.build:gradle:8.12.3")
19-
implementation("com.huanshankeji:common-gradle-dependencies:0.10.0-20250918-SNAPSHOT") // TODO don't use a snapshot version in a main branch
20+
implementation("com.huanshankeji:common-gradle-dependencies:0.10.0-20251024-SNAPSHOT") // TODO don't use a snapshot version in a main branch
2021
}

buildSrc/src/main/kotlin/VersionsAndDependencies.kt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,18 @@ val commonDependencies = CommonDependencies()
88
object DependencyVersions {
99
const val composeMultiplatform = ComposeBuildConfig.composeVersion // for "ui-unit"
1010

11+
1112
// https://slack-chats.kotlinlang.org/t/27579160/after-updating-to-1-8-0-rc01-package-androidx-compose-materi
1213
// https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.8.0-rc01
1314
const val composeMultiplatformMaterialIconsExtended = "1.7.3"
15+
16+
// https://github.com/varabyte/kobweb/releases
1417
val kobweb = "0.23.3"
1518
val huanshankejiComposeHtml = "0.4.1-SNAPSHOT" // TODO don't use a snapshot version in a main branch
19+
20+
// https://github.com/mpetuska/kmdc/releases
1621
val kmdc = "0.1.2"
17-
val materialSymbols = "0.35.2"
22+
23+
// https://github.com/marella/material-symbols/releases
24+
val materialSymbols = "0.38.0"
1825
}

0 commit comments

Comments
 (0)