Hi there!
Early Access Preview 3 for Kotlin 1.3.20 is released, in addition to 1.3.20 EAP2 lot of critical bugs were fixed.
Changelog to EAP2 is here
How to get the EAP build
For IntelliJ IDEA
You can configure Early Access Preview channel in Tools → Kotlin → Configure Kotlin Plugin Updates . Change the update channel to ‘Early Access Preview 1.3.20’ and press Check for updates now .
For Maven or Gradle
Add the https://dl.bintray.com/kotlin/kotlin-eap
repository URL to the list of project repositories, and set kotlin_version
to 1.3.20-eap-100
. Here is how to do this in Gradle:
buildscript {
ext.kotlin_version = '1.3.20-eap-100'
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "kotlin"
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
}
Please provide feedback and report issues to our issue tracker . Please don’t forget to specify your IDE/build system Kotlin plugin versions.