From b62807b345960e044792f0bfadacdb8d21c64474 Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Sun, 1 Dec 2019 19:59:29 +0300 Subject: [PATCH] Version upgrade --- build.gradle.kts | 4 ++-- src/main/kotlin/scientifik/common.kt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3555a16..20599a6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "scientifik" -version = "0.2.5" +version = "0.2.6" repositories { gradlePluginPortal() @@ -16,7 +16,7 @@ repositories { maven("https://dl.bintray.com/kotlin/kotlin-eap") } -val kotlinVersion = "1.3.60" +val kotlinVersion = "1.3.61" java { targetCompatibility = JavaVersion.VERSION_1_8 diff --git a/src/main/kotlin/scientifik/common.kt b/src/main/kotlin/scientifik/common.kt index d2e1311..5e0cb54 100644 --- a/src/main/kotlin/scientifik/common.kt +++ b/src/main/kotlin/scientifik/common.kt @@ -7,6 +7,7 @@ import org.jetbrains.kotlin.gradle.plugin.LanguageSettingsBuilder internal fun LanguageSettingsBuilder.applySettings(): Unit { progressiveMode = true enableLanguageFeature("InlineClasses") + useExperimentalAnnotation("kotlin.Experimental") useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes") useExperimentalAnnotation("kotlin.ExperimentalStdlibApi") useExperimentalAnnotation("kotlin.time.ExperimentalTime")