Switch Kotlin version to 2.0

#KT-59171 In Progress
This commit is contained in:
Mikhail Glukhikh
2023-06-21 17:08:26 +02:00
committed by Space Team
parent 68ca571528
commit 5fb38008b7
27 changed files with 37 additions and 37 deletions
@@ -79,5 +79,5 @@ public class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Com
// this class is ignored during classpath normalization when considering whether to recompile dependencies in Kotlin build
private object KotlinVersionCurrentValue {
@kotlin.jvm.JvmStatic
fun get(): KotlinVersion = KotlinVersion(1, 9, 255) // value is written here automatically during build
fun get(): KotlinVersion = KotlinVersion(2, 0, 255) // value is written here automatically during build
}