Skip to content

Commit 20d2827

Browse files
authored
chore: upgrade kotlin to 1.7 (#668)
1 parent 476729a commit 20d2827

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "7e077ea6-1125-4b51-a67a-57160ebaf93a",
3+
"type": "misc",
4+
"description": "Upgrade Kotlin to 1.7"
5+
}

gradle.properties

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@ kotlin.incremental.multiplatform=true
44
kotlin.mpp.stability.nowarn=true
55
kotlin.native.ignoreDisabledTargets=true
66

7+
78
# FIXME - see https://youtrack.jetbrains.com/issue/KTIJ-21583/HMPP-1-6-20-breaks-autocomplete-in-multiplatform-composite-build
89
kotlin.mpp.hierarchicalStructureSupport=false
910

1011
# SDK
1112
sdkVersion=0.11.1-SNAPSHOT
1213

1314
# kotlin
14-
kotlinVersion=1.6.21
15-
dokkaVersion=1.6.21
15+
kotlinVersion=1.7.0
16+
dokkaVersion=1.7.0
1617

1718
# kotlin libraries
18-
coroutinesVersion=1.6.1
19+
coroutinesVersion=1.6.3
1920
ktorVersion=2.0.2
2021
atomicFuVersion=0.17.3
2122
kotlinxSerializationVersion=1.3.3
@@ -45,4 +46,4 @@ kotlinLoggingVersion=2.1.21
4546
slf4jVersion=1.7.36
4647

4748
# crt
48-
crtKotlinVersion=0.6.0
49+
crtKotlinVersion=0.6.0

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.6.21"
7+
kotlin("plugin.serialization") version "1.7.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.6.21")
37+
val KOTLIN_COMPILER_VERSION: String = System.getProperty("smithy.kotlin.codegen.kotlinCompilerVersion", "1.7.0")
3838

3939
enum class SourceSet {
4040
CommonMain,

0 commit comments

Comments
 (0)