Skip to content

Commit

Permalink
Upgrade KotlinPoet to the latest version
Browse files Browse the repository at this point in the history
Upgrade KotlinPoet to `2.0.0`, which comes with fixes for line wrapping. kotlin-inject ran into these edge cases for larger components where wrong line wrapping made the code not compile. The latest version of KotlinPoet fixes these issues.

KotlinPoet depends on Kotlin `2.0.10`, therefore upgrade Kotlin and KSP at the same time.
  • Loading branch information
vRallev authored and evant committed Oct 31, 2024
1 parent c7f7086 commit 7f7dcd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
kotlin-inject = "0.7.3-SNAPSHOT"
kotlin = "2.0.0"
ksp = "2.0.0-1.0.22"
kotlinpoet = "1.16.0"
kotlin = "2.0.10"
ksp = "2.0.10-1.0.24"
kotlinpoet = "2.0.0"
junit5 = "5.9.3"
jvmTarget = "11"
detekt = "1.23.6"
Expand Down

0 comments on commit 7f7dcd9

Please sign in to comment.