v0.6.2 preparations
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
## v0.6.2 (Mar 2018)
|
||||||
|
* Support several `expectedBy`-dependencies in Gradle plugin.
|
||||||
|
* Improved interaction between Gradle plugin and IDE.
|
||||||
|
* Various bugfixes
|
||||||
|
|
||||||
## v0.6.1 (Mar 2018)
|
## v0.6.1 (Mar 2018)
|
||||||
* Various bugfixes
|
* Various bugfixes
|
||||||
* Support total ordering in FP comparisons
|
* Support total ordering in FP comparisons
|
||||||
|
|||||||
+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) {
|
class KonanVersion(val meta: MetaVersion?, val major: Int, val minor: Int, val maintenance: Int, val build:Int) {
|
||||||
companion object {
|
companion object {
|
||||||
val CURRENT = KonanVersion(MetaVersion.EAP, 0, 6, 1, 0)
|
val CURRENT = KonanVersion(MetaVersion.EAP, 0, 6, 2, 0)
|
||||||
}
|
}
|
||||||
override fun toString() = if (meta != null) "$meta $major.$minor.$maintenance.$build" else "$major.$minor.$maintenance.$build"
|
override fun toString() = if (meta != null) "$meta $major.$minor.$maintenance.$build" else "$major.$minor.$maintenance.$build"
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -22,6 +22,6 @@ remoteRoot=konan_tests
|
|||||||
testDataVersion=1226829:id
|
testDataVersion=1226829:id
|
||||||
kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_dev_CompilerAllPlugins),number:1.2.40-dev-1038/artifacts/content/maven
|
kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_dev_CompilerAllPlugins),number:1.2.40-dev-1038/artifacts/content/maven
|
||||||
kotlinVersion=1.2.40-dev-1038
|
kotlinVersion=1.2.40-dev-1038
|
||||||
konanVersion=0.6.1
|
konanVersion=0.6.2
|
||||||
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
|
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user