Skip to content

Commit 79cabc5

Browse files
committed
Bump klib ABI version
KLIB forward compatibility was broken during work related to definitely not-null types, but version was not changed. This led to exceptions in compiler instead of meaningful error. ^KT-52518
1 parent b16d44a commit 79cabc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ rootProject.apply {
133133
IdeVersionConfigurator.setCurrentIde(project)
134134

135135
if (!project.hasProperty("versions.kotlin-native")) {
136-
extra["versions.kotlin-native"] = "1.7.0-dev-1827"
136+
extra["versions.kotlin-native"] = "1.7.0-RC2-253"
137137
}
138138

139139
val useJvmFir by extra(project.kotlinBuildProperties.useFir)

compiler/util-klib/src/org/jetbrains/kotlin/library/KotlinAbiVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ data class KotlinAbiVersion(val major: Int, val minor: Int, val patch: Int) {
6060
override fun toString() = "$major.$minor.$patch"
6161

6262
companion object {
63-
val CURRENT = KotlinAbiVersion(1, 6, 0)
63+
val CURRENT = KotlinAbiVersion(1, 7, 0)
6464
}
6565
}

0 commit comments

Comments
 (0)