From 796b40b74f504429db415e0a5561718f12963255 Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Wed, 25 Mar 2020 19:19:39 +0300 Subject: [PATCH] Kotlin to 1.3.71. Remove inline classes flag --- build.gradle.kts | 4 ++-- src/main/kotlin/scientifik/common.kt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f15c20d..6e6f79a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "scientifik" -version = "0.4.0" +version = "0.4.1" repositories { gradlePluginPortal() @@ -16,7 +16,7 @@ repositories { maven("https://dl.bintray.com/kotlin/kotlin-eap") } -val kotlinVersion = "1.3.70" +val kotlinVersion = "1.3.71" java { targetCompatibility = JavaVersion.VERSION_1_8 diff --git a/src/main/kotlin/scientifik/common.kt b/src/main/kotlin/scientifik/common.kt index 0f7738e..d73c793 100644 --- a/src/main/kotlin/scientifik/common.kt +++ b/src/main/kotlin/scientifik/common.kt @@ -8,7 +8,7 @@ import java.io.File internal fun LanguageSettingsBuilder.applySettings(): Unit { progressiveMode = true - enableLanguageFeature("InlineClasses") + //enableLanguageFeature("InlineClasses") useExperimentalAnnotation("kotlin.Experimental") useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes") useExperimentalAnnotation("kotlin.ExperimentalStdlibApi")