Skip to content

Commit

Permalink
v0.6.1 preparations. (JetBrains#1373)
Browse files Browse the repository at this point in the history
  • Loading branch information
olonho authored Mar 1, 2018
1 parent 51a83a4 commit 9ea6642
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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'

##
Expand Down

0 comments on commit 9ea6642

Please sign in to comment.