Skip to content

Commit 4f86837

Browse files
committed
Version -> 0.4.4, bump Kotlin version to 1.6.20
1 parent 1204f8a commit 4f86837

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin {
1414

1515
sourceSets {
1616
all {
17-
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalMultiplatform")
17+
languageSettings.optIn("kotlin.ExperimentalMultiplatform")
1818
}
1919

2020
commonTest {

gradle.properties

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ group=com.github.h0tk3y.betterParse
22

33
kotlin.code.style=official
44

5-
kotlin.mpp.enableGranularSourceSetsMetadata=true
65
kotlin.mpp.enableCompatibilityMetadataVariant=true
76
kotlin.mpp.stability.nowarn=true
87

versions.settings.gradle.kts

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ package com.github.h0tk3y.betterParse.build
33
import org.gradle.api.plugins.ExtraPropertiesExtension
44
import kotlin.reflect.full.memberProperties
55

6-
val kotlinVersion = KotlinPlugin.V1531
6+
val kotlinVersion = KotlinPlugin.V1620
77

88
enum class KotlinPlugin {
9-
V1531
9+
V1620
1010
}
1111

1212
val versions = when (kotlinVersion) {
13-
KotlinPlugin.V1531 -> Versions(
14-
version = "0.4.3",
15-
kotlinVersion = "1.5.31",
16-
serializationVersion = "1.3.0",
17-
benchmarkVersion = "0.3.1"
13+
KotlinPlugin.V1620 -> Versions(
14+
version = "0.4.4",
15+
kotlinVersion = "1.6.20",
16+
serializationVersion = "1.3.2",
17+
benchmarkVersion = "0.4.2"
1818
)
1919
}
2020

0 commit comments

Comments
 (0)