fix KotlinVersion and set it to be 1_3_0

This commit is contained in:
Vadim Brilyantov
2018-12-17 15:07:10 +03:00
parent 1a0c3dfaa6
commit 7fb43144d4
@@ -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
}
}