Skip to content

Commit 8c57873

Browse files
authored
chore: upgrade Kotlin to 1.8.0 (#780)
1 parent a046760 commit 8c57873

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "98d6e111-a6a4-4de3-896d-214e466b4026",
3+
"type": "misc",
4+
"description": "Upgrade Kotlin version to 1.8.0"
5+
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin.mpp.enableCompatibilityMetadataVariant=true
99
sdkVersion=0.15.0-SNAPSHOT
1010

1111
# kotlin
12-
kotlinVersion=1.7.10
12+
kotlinVersion=1.8.0
1313
dokkaVersion=1.7.10
1414

1515
# kotlin libraries
@@ -31,7 +31,7 @@ ktlintVersion=0.48.1
3131
kotestVersion=5.5.4
3232
kotlinCompileTestingVersion=1.4.9
3333
jacocoVersion=0.8.8
34-
kotlinxBenchmarkVersion=0.4.6
34+
kotlinxBenchmarkVersion=0.4.7
3535
testContainersVersion=1.17.6
3636

3737
# serialization

runtime/runtime-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
plugins {
7-
kotlin("plugin.serialization") version "1.7.10"
7+
kotlin("plugin.serialization") version "1.8.0"
88
}
99

1010
description = "Client runtime for Smithy services generated by smithy-kotlin"

smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/core/KotlinDependency.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private fun getDefaultRuntimeVersion(): String {
3434
// publishing info
3535
const val RUNTIME_GROUP: String = "aws.smithy.kotlin"
3636
val RUNTIME_VERSION: String = System.getProperty("smithy.kotlin.codegen.clientRuntimeVersion", getDefaultRuntimeVersion())
37-
val KOTLIN_COMPILER_VERSION: String = System.getProperty("smithy.kotlin.codegen.kotlinCompilerVersion", "1.7.10")
37+
val KOTLIN_COMPILER_VERSION: String = System.getProperty("smithy.kotlin.codegen.kotlinCompilerVersion", "1.8.0")
3838

3939
enum class SourceSet {
4040
CommonMain,

0 commit comments

Comments
 (0)