Fix current Kotlin version to avoid changing it in local builds

This commit is contained in:
Ilya Gorbunov
2018-12-21 17:21:50 +03:00
parent 6dd69ea3d6
commit 7c7c11e916
@@ -72,6 +72,6 @@ public class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Com
* Returns the current version of the Kotlin standard library.
*/
@kotlin.jvm.JvmField
public val CURRENT: KotlinVersion = KotlinVersion(1, 3, 115) // value is written here automatically during build
public val CURRENT: KotlinVersion = KotlinVersion(1, 3, 0) // value is written here automatically during build
}
}