Skip to content

Commit

Permalink
Bump klib ABI version
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kunyavskiy committed May 28, 2022
1 parent b16d44a commit 79cabc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ rootProject.apply {
IdeVersionConfigurator.setCurrentIde(project)

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

val useJvmFir by extra(project.kotlinBuildProperties.useFir)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ data class KotlinAbiVersion(val major: Int, val minor: Int, val patch: Int) {
override fun toString() = "$major.$minor.$patch"

companion object {
val CURRENT = KotlinAbiVersion(1, 6, 0)
val CURRENT = KotlinAbiVersion(1, 7, 0)
}
}

0 comments on commit 79cabc5

Please sign in to comment.