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
}
}