Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* Gradle 8.4 -> 8.5
* Kotlin 1.9.20 -> 1.9.21
* kotlinx.serialization 1.6.1 -> 1.6.2
* kotlinx-datetime 0.4.1 -> 0.5.0
* Stately 2.0.5 -> 2.0.6
* KSP 1.9.20-1.0.14 -> 1.9.21-1.0.15
* KotlinPoet 1.15.1 -> 1.15.3
* AtomicFU 0.23.0 -> 0.23.1
  • Loading branch information
lukellmann committed Dec 4, 2023
1 parent 1595b95 commit 7e9cca8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ repositories {
mavenCentral()
}

kotlin {
compilerOptions {
allWarningsAsErrors = true
}
}

dependencies {
implementation(libs.bundles.pluginsForBuildSrc)
}
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[versions]

# api dependencies
kotlin = "1.9.20" # https://github.com/JetBrains/kotlin
kotlin = "1.9.21" # https://github.com/JetBrains/kotlin
ktor = "2.3.6" # https://github.com/ktorio/ktor
kotlinx-coroutines = "1.7.3" # https://github.com/Kotlin/kotlinx.coroutines
kotlinx-serialization = "1.6.1" # https://github.com/Kotlin/kotlinx.serialization
kotlinx-datetime = "0.4.1" # https://github.com/Kotlin/kotlinx-datetime
kotlinx-serialization = "1.6.2" # https://github.com/Kotlin/kotlinx.serialization
kotlinx-datetime = "0.5.0" # https://github.com/Kotlin/kotlinx-datetime
kotlin-logging = "3.0.5" # https://github.com/oshai/kotlin-logging
kord-cache = "0.4.0" # https://github.com/kordlib/cache

# implementation dependencies
kotlin-node = "18.16.12-pre.619" # https://github.com/JetBrains/kotlin-wrappers
bignum = "0.3.8" # https://github.com/ionspin/kotlin-multiplatform-bignum
stately = "2.0.5" # https://github.com/touchlab/Stately
stately = "2.0.6" # https://github.com/touchlab/Stately
fastZlib = "2.0.1" # https://github.com/timotejroiko/fast-zlib

# code generation
ksp = "1.9.20-1.0.14" # https://github.com/google/ksp
kotlinpoet = "1.15.1" # https://github.com/square/kotlinpoet
ksp = "1.9.21-1.0.15" # https://github.com/google/ksp
kotlinpoet = "1.15.3" # https://github.com/square/kotlinpoet

# tests
junit5 = "5.10.1" # https://github.com/junit-team/junit5
Expand All @@ -26,7 +26,7 @@ slf4j = "2.0.9" # https://www.slf4j.org

# plugins
dokka = "1.9.10" # https://github.com/Kotlin/dokka
kotlinx-atomicfu = "0.23.0" # https://github.com/Kotlin/kotlinx-atomicfu
kotlinx-atomicfu = "0.23.1" # https://github.com/Kotlin/kotlinx-atomicfu
binary-compatibility-validator = "0.13.2" # https://github.com/Kotlin/binary-compatibility-validator
buildconfig = "4.2.0" # https://github.com/gmazzo/gradle-buildconfig-plugin

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=3e1af3ae886920c3ac87f7a91f816c0c7c436f276a6eefdb3da152100fef72ae
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionSha256Sum=9d926787066a081739e8200858338b4a69e837c3a821a33aca9db09dd4a41026
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 7e9cca8

Please sign in to comment.