Bump versions

This commit is contained in:
Alexander Nozik 2020-09-27 19:40:05 +03:00
parent f4e13a9979
commit 6dfd71c1fe
2 changed files with 5 additions and 4 deletions

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"
}