Skip to content

Commit

Permalink
Version -> 0.4.4, bump Kotlin version to 1.6.20
Browse files Browse the repository at this point in the history
  • Loading branch information
h0tk3y committed Apr 21, 2022
1 parent 1204f8a commit 4f86837
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {

sourceSets {
all {
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalMultiplatform")
languageSettings.optIn("kotlin.ExperimentalMultiplatform")
}

commonTest {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ group=com.github.h0tk3y.betterParse

kotlin.code.style=official

kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.mpp.enableCompatibilityMetadataVariant=true
kotlin.mpp.stability.nowarn=true

Expand Down
14 changes: 7 additions & 7 deletions versions.settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ package com.github.h0tk3y.betterParse.build
import org.gradle.api.plugins.ExtraPropertiesExtension
import kotlin.reflect.full.memberProperties

val kotlinVersion = KotlinPlugin.V1531
val kotlinVersion = KotlinPlugin.V1620

enum class KotlinPlugin {
V1531
V1620
}

val versions = when (kotlinVersion) {
KotlinPlugin.V1531 -> Versions(
version = "0.4.3",
kotlinVersion = "1.5.31",
serializationVersion = "1.3.0",
benchmarkVersion = "0.3.1"
KotlinPlugin.V1620 -> Versions(
version = "0.4.4",
kotlinVersion = "1.6.20",
serializationVersion = "1.3.2",
benchmarkVersion = "0.4.2"
)
}

Expand Down

0 comments on commit 4f86837

Please sign in to comment.