Kotlin 1.4.20 #4

Merged
altavir merged 10 commits from kotlin-1.4.20 into dev 2020-11-25 22:20:48 +03:00
2 changed files with 5 additions and 4 deletions
Showing only changes of commit 6dfd71c1fe - Show all commits

View File

@ -6,7 +6,7 @@ plugins {
}
group = "ru.mipt.npm"
version = "0.6.1"
version = "0.6.1-dev-1.4.20-M1"
repositories {
gradlePluginPortal()
@ -16,7 +16,7 @@ repositories {
maven("https://dl.bintray.com/kotlin/kotlin-dev")
}
val kotlinVersion = "1.4.10"
val kotlinVersion = "1.4.20-M1"
java {
targetCompatibility = JavaVersion.VERSION_1_8

View File

@ -6,14 +6,15 @@ import org.gradle.api.JavaVersion
* Build constants
*/
object KScienceVersions {
const val kotlinVersion = "1.4.20-M1"
const val coroutinesVersion = "1.3.9"
const val serializationVersion = "1.0.0-RC"
const val serializationVersion = "1.0.0-RC2"
const val atomicVersion = "0.14.4"
val JVM_TARGET = JavaVersion.VERSION_11
object Serialization{
const val xmlVersion = "0.80.0-RC"//to be fixed
const val xmlVersion = "0.80.0-RC"
const val yamlVersion = "0.21.0"
const val bsonVersion = "0.4.1-rc"
}