Skip to content

Commit 7a2f59c

Browse files
committed
Bump all dependencies to the latest stable versions
1 parent 4547db1 commit 7a2f59c

2 files changed

Lines changed: 19 additions & 19 deletions

File tree

buildSrc/src/main/kotlin/VersionsAndDependencies.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ object DependencyVersions {
1010
val kotlin = "2.3.0" // compatible with the compose version below
1111

1212
// https://github.com/JetBrains/compose-multiplatform/releases
13-
val composeMultiplatform = "1.9.1"
13+
val composeMultiplatform = "1.10.0"
1414

1515
// https://github.com/Kotlin/kotlinx-benchmark/releases
16-
val kotlinxBenchmark = "0.4.14"
16+
val kotlinxBenchmark = "0.4.15"
1717

1818
// https://github.com/Kotlin/dokka/releases
1919
val dokka = "2.1.0"
@@ -22,14 +22,14 @@ object DependencyVersions {
2222
val binaryCompatibilityValidator = "0.18.1"
2323

2424
// https://github.com/vanniktech/gradle-maven-publish-plugin/releases
25-
val vanniktechMavenPublish = "0.34.0"
25+
val vanniktechMavenPublish = "0.36.0"
2626
}
2727

2828
val alignedPluginVersion = "0.11.0-SNAPSHOT"
2929

3030
// "x.y.z" indicates the version of the way of organizing the code,
3131
// and the date indicates the version when the dependency versions are updated.
32-
val commonGradleDependenciesVersion = "0.10.0-20251224-SNAPSHOT"
32+
val commonGradleDependenciesVersion = "0.10.0-20260126-SNAPSHOT"
3333

3434
// This is the source dependency version. There is another build source dependency in "buildSrc/build.gradle.kts".
3535
val pluginProjectSourceDependencyStableCommonGradleDependenciesVersion = "0.10.0-20251024".apply {

common-gradle-dependencies/src/main/kotlin/com/huanshankeji/CommonVersions.kt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,36 @@ class CommonVersions(
66
val kotlin: String = GeneratedVersions.kotlin,
77

88
// https://github.com/huanshankeji/kotlin-common/releases
9-
val kotlinCommon: String = "0.6.1",
9+
val kotlinCommon: String = "0.7.0",
1010

1111
// https://github.com/Kotlin/kotlinx.coroutines/releases
1212
val kotlinxCoroutines: String = "1.10.2",
1313
// https://github.com/Kotlin/kotlinx.html/releases
1414
val kotlinxHtml: String = "0.12.0",
1515
// https://github.com/Kotlin/kotlinx.serialization/releases
16-
val kotlinxSerialization: String = "1.9.0",
16+
val kotlinxSerialization: String = "1.10.0",
1717
// https://github.com/Kotlin/kotlinx-datetime/releases
1818
val kotlinxDatetime: String = "0.7.1",
1919
val kotlinxBenchmark: String = GeneratedVersions.kotlinxBenchmark,
2020
// https://github.com/Kotlin/kotlinx-io/releases
21-
val kotlinxIo: String = "0.8.0",
21+
val kotlinxIo: String = "0.8.2",
2222
// https://github.com/JetBrains/Exposed/releases
23-
val exposed: String = "1.0.0-rc-3",
23+
val exposed: String = "1.0.0",
2424
// https://github.com/ktorio/ktor/releases
25-
val ktor: String = "3.3.1",
25+
val ktor: String = "3.4.0",
2626
val jetBrainsAndroidx: JetbrainsAndroidx = JetbrainsAndroidx(),
2727
val androidx: Androidx = Androidx(),
2828

2929
// https://vertx.io/blog/category/releases/, https://github.com/eclipse-vertx/vert.x/tags
30-
val vertx: String = "5.0.5",
30+
val vertx: String = "5.0.7",
3131
// https://github.com/arrow-kt/arrow/releases
32-
val arrow: String = "2.1.2",
32+
val arrow: String = "2.2.1.1",
3333
// https://docs.junit.org/6.0.0/release-notes/, https://github.com/junit-team/junit-framework/releases
34-
val orgJunit: String = "5.14.0", // JUnit 5 actually // JUnit 6 requires Java 17
34+
val orgJunit: String = "5.14.1", // JUnit 5 actually // JUnit 6 requires Java 17
3535
// https://github.com/kotest/kotest/releases
36-
val kotest: String = "6.0.4",
36+
val kotest: String = "6.1.1",
3737
// https://jdbc.postgresql.org/changelogs/, https://github.com/pgjdbc/pgjdbc/releases
38-
val postgreSql: String = "42.7.8",
38+
val postgreSql: String = "42.7.9",
3939
// https://github.com/qos-ch/slf4j/tags
4040
val slf4j: String = "2.0.17",
4141
// TODO add kotlin-logging (https://github.com/oshai/kotlin-logging)
@@ -44,9 +44,9 @@ class CommonVersions(
4444
) {
4545
class JetbrainsAndroidx(
4646
val composeMultiplatform: String = GeneratedVersions.composeMultiplatform, // this is usually only used in classpath dependencies
47-
// https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-lifecycle.html
48-
val lifecycle: String = "2.9.5",
49-
// https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-navigation-routing.html
47+
// https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-lifecycle.html, https://mvnrepository.com/artifact/org.jetbrains.androidx.lifecycle/lifecycle-runtime-compose
48+
val lifecycle: String = "2.9.6",
49+
// https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-navigation-routing.html, https://mvnrepository.com/artifact/org.jetbrains.androidx.navigation/navigation-compose
5050
val navigation: String = "2.9.1",
5151
)
5252

@@ -55,14 +55,14 @@ class CommonVersions(
5555
// https://developer.android.com/jetpack/androidx/versions
5656
class Androidx(
5757
// https://developer.android.com/jetpack/androidx/releases/activity
58-
val activity: String = "1.11.0",
58+
val activity: String = "1.12.2",
5959
val compose: Compose = Compose()
6060
) {
6161
class Compose(
6262
// https://developer.android.com/jetpack/androidx/releases/compose-compiler
6363
val compiler: String = "1.5.15",
6464
// https://developer.android.com/jetpack/androidx/releases/compose-foundation
65-
val common: String = "1.9.4", // for "animation", "foundation", "material", "runtime", and "ui"
65+
val common: String = "1.10.1", // for "animation", "foundation", "material", "runtime", and "ui"
6666
// https://developer.android.com/jetpack/androidx/releases/compose-material3
6767
val material3: String = "1.4.0",
6868
// https://developer.android.com/jetpack/androidx/releases/compose-material3-adaptive

0 commit comments

Comments
 (0)