Set LATEST_STABLE language version and current version of stdlib to 1.2

This commit is contained in:
Ilya Gorbunov
2017-05-05 22:15:38 +03:00
parent 17eac133a2
commit 968c9c2034
2 changed files with 2 additions and 2 deletions
@@ -123,7 +123,7 @@ enum class LanguageVersion(val major: Int, val minor: Int) : DescriptionAware {
fun fromFullVersionString(str: String) = str.split(".", "-").let { if (it.size >= 2) fromVersionString("${it[0]}.${it[1]}") else null }
@JvmField
val LATEST_STABLE = KOTLIN_1_1
val LATEST_STABLE = KOTLIN_1_2
}
}
@@ -70,6 +70,6 @@ public class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Com
*/
// TODO: get from metadata or hardcode automatically during build
@kotlin.jvm.JvmField
public val CURRENT: KotlinVersion = KotlinVersion(1, 1, 60)
public val CURRENT: KotlinVersion = KotlinVersion(1, 2, 0)
}
}