Update packages/kilo-jetbrains/build.gradle.kts

Co-authored-by: kilo-code-bot[bot] <240665456+kilo-code-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kirill Kalishev
2026-06-04 09:58:46 -04:00
committed by GitHub
co-authored by kilo-code-bot[bot]
parent 49ccf6e45b
commit 6cace2a29a
+1 -1
View File
@@ -40,7 +40,7 @@ data class Release(val major: Int, val minor: Int, val patch: Int, val rc: Int?)
val text = listOfNotNull("$major.$minor.$patch", rc?.let { "rc.$it" }).joinToString("-")
override fun compareTo(other: Release): Int {
val base = compareValuesBy(this, other, Release::major, Release::minor, Release::patch)
val cmp = compareValuesBy(this, other, Release::major, Release::minor, Release::patch)
if (base != 0) return base
return compareValues(rc ?: Int.MAX_VALUE, other.rc ?: Int.MAX_VALUE)
}