v0.6.1 preparations. (#1373)
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
## v0.6.1 (Mar 2018)
|
||||
* Various bugfixes
|
||||
* Support total ordering in FP comparisons
|
||||
* Interop generate string constants from string macrodefinitions
|
||||
* STM32 blinky demo in pure Kotlin/Native
|
||||
* Top level variables initialization redesign (proper dependency order)
|
||||
* Support kotlin.math on WebAssembly targets
|
||||
* Support embedded targets on Windows hosts
|
||||
|
||||
## v0.6 (Feb 2018)
|
||||
* Support multiplatform projects (expect/actual) in compiler and Gradle plugin
|
||||
* Support first embedded target (STM32 board)
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ enum class MetaVersion {
|
||||
|
||||
class KonanVersion(val meta: MetaVersion?, val major: Int, val minor: Int, val maintenance: Int, val build:Int) {
|
||||
companion object {
|
||||
val CURRENT = KonanVersion(MetaVersion.EAP, 0, 6, 0, 0)
|
||||
val CURRENT = KonanVersion(MetaVersion.EAP, 0, 6, 1, 0)
|
||||
}
|
||||
override fun toString() = if (meta != null) "$meta $major.$minor.$maintenance.$build" else "$major.$minor.$maintenance.$build"
|
||||
}
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ kotlinCompilerVersion=1.2.40-dev-610
|
||||
kotlinScriptRuntimeVersion=1.2.40-dev-610
|
||||
kotlinStdLibVersion=1.2.40-dev-610
|
||||
kotlinReflectVersion=1.2.40-dev-610
|
||||
konanVersion=0.6
|
||||
konanVersion=0.6.1
|
||||
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
|
||||
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user