Skip to content

Commit

Permalink
Update/Bump the dependency versions to the latest, including the buil…
Browse files Browse the repository at this point in the history
…d dependencies and those in `CommonVersions`
  • Loading branch information
ShreckYe committed Mar 14, 2024
1 parent a6627ad commit b1fd923
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
}
*/
// for `KotlinCompilationTask` and the version is for Compose 1.5.1
implementation(kotlin("gradle-plugin", "1.9.22"))
implementation(kotlin("gradle-plugin", "1.9.23"))
implementation("org.gradle.kotlin:gradle-kotlin-dsl-plugins:4.2.1") // This version has to be used for Gradle 8.6.

implementation("com.gradle.publish:plugin-publish-plugin:1.2.1")
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/VersionsAndDependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import com.huanshankeji.CommonVersions
val commonVersions = CommonVersions()
val commonGradleClasspathDependencies = CommonGradleClasspathDependencies(commonVersions)

val kotlinVersion = "1.9.20" // for Compose 1.4.0 // TODO remove this comment
val kotlinVersion = "1.9.23" // for Compose 1.6.1

val alignedPluginVersion = "0.5.0-SNAPSHOT"
val alignedPluginVersion = "0.5.1-SNAPSHOT"

// "x.y.z" indicates the version of the way of organizing the code,
// and the date indicates the version when the dependency versions are updated.
val commonGradleDependenciesVersion = "0.7.1-20231111-SNAPSHOT"
val commonGradleDependenciesVersion = "0.7.1-20240314-boostrap-SNAPSHOT"

// This is the source dependency version. There is another build source dependency in "buildSrc/build.gradle.kts".
val pluginProjectSourceDependentStableCommonGradleDependenciesVersion = "0.7.1-20231111".apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ class CommonVersions @JvmOverloads constructor(

val kotlinCommon: String = "0.3.0",

val kotlinxCoroutines: String = "1.7.3",
val kotlinxHtml: String = "0.9.1",
val kotlinxSerialization: String = "1.6.0",
val kotlinxDatetime: String = "0.4.1",
val kotlinxBenchmark: String = "0.4.9",
val exposed: String = "0.44.1",
val ktor: String = "2.3.6",
val composeMultiplatform: String = "1.5.10", // this is usually only used in classpath dependencies
val kotlinxCoroutines: String = "1.8.0",
val kotlinxHtml: String = "0.11.0",
val kotlinxSerialization: String = "1.6.3",
val kotlinxDatetime: String = "0.5.0",
val kotlinxBenchmark: String = "0.4.10",
val exposed: String = "0.48.0",
val ktor: String = "2.3.9",
val composeMultiplatform: String = "1.6.1", // this is usually only used in classpath dependencies

val vertx: String = "4.4.6", // TODO bump to "4.5.0". There are some breaking changes however. See https://github.com/vert-x3/wiki/wiki/4.5.0-Deprecations-and-breaking-changes.
val arrow: String = "1.2.1",
val orgJunit: String = "5.10.1",
val kotest: String = "5.8.0",
val postgreSql: String = "42.6.0",
val vertx: String = "4.5.5",
val arrow: String = "1.2.3",
val orgJunit: String = "5.10.2",
val kotest: String = "5.8.1",
val postgreSql: String = "42.7.2",
val slf4j: String = "1.7.36", // TODO: consider replacing with kotlin-logging (https://github.com/oshai/kotlin-logging)
val testContainers: String = "1.19.1"
val testContainers: String = "1.19.7"
)

1 comment on commit b1fd923

@ShreckYe
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a typo "boostrap".

Please sign in to comment.