Skip to content

Commit

Permalink
Update dependencies (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Jul 16, 2021
1 parent 02d4603 commit a1731aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
matrix:
# No 12 because Kapt
java_version: [ 11, 13, 14, 15, 16 ]
kotlin_version: [ 1.5.20 ]
java_version: [ 11, 13, 14, 15, 16, 17-ea ]
kotlin_version: [ 1.5.21 ]
ksp_enabled: [ true, false ]
ksp_incremental_enabled: [ true, false ]
exclude:
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Dependencies.kt
Expand Up @@ -33,16 +33,16 @@ object Dependencies {
}

object Kotlin {
val version = System.getenv()["MOSHIX_KOTLIN"] ?: "1.5.20"
const val dokkaVersion = "1.4.32"
val version = System.getenv()["MOSHIX_KOTLIN"] ?: "1.5.21"
const val dokkaVersion = "1.5.0"
val reflect = "org.jetbrains.kotlin:kotlin-reflect:$version"
const val metadata = "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.3.0"
val compilerEmbeddable = "org.jetbrains.kotlin:kotlin-compiler-embeddable:$version"
const val jvmTarget = "1.8"
val defaultFreeCompilerArgs = listOf("-Xjsr305=strict", "-progressive")

object Ksp {
const val version = "1.5.20-1.0.0-beta04"
const val version = "1.5.21-1.0.0-beta05"
const val api = "com.google.devtools.ksp:symbol-processing-api:$version"
const val ksp = "com.google.devtools.ksp:symbol-processing:$version"
}
Expand Down

0 comments on commit a1731aa

Please sign in to comment.