Switch kotlin version to 1.9

with appropriate fixes in testdata, tests and other
places.
This commit is contained in:
Dmitriy Novozhilov
2022-11-21 18:01:37 +02:00
committed by Space Team
parent e2403c801f
commit 66544a4e00
29 changed files with 44 additions and 44 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, 8, 255) // value is written here automatically during build
}
fun get(): KotlinVersion = KotlinVersion(1, 9, 255) // value is written here automatically during build
}