Skip to content

Commit 6e349e4

Browse files
authored
chore: kotlin 1.7.10 (#682)
1 parent d0c3657 commit 6e349e4

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "9fb5a970-26b7-4da1-8abc-76d4dd59172f",
3+
"type": "misc",
4+
"description": "Upgrade Kotlin version to 1.7.10"
5+
}

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ kotlin.mpp.hierarchicalStructureSupport=false
1212
sdkVersion=0.12.3-SNAPSHOT
1313

1414
# kotlin
15-
kotlinVersion=1.7.0
16-
dokkaVersion=1.7.0
15+
kotlinVersion=1.7.10
16+
dokkaVersion=1.7.10
1717

1818
# kotlin libraries
1919
coroutinesVersion=1.6.3
2020
ktorVersion=2.0.2
21-
atomicFuVersion=0.17.3
21+
atomicFuVersion=0.18.3
2222
kotlinxSerializationVersion=1.3.3
2323
jsoupVersion=1.14.3
2424
okHttpVersion=5.0.0-alpha.9
@@ -30,7 +30,7 @@ smithyGradleVersion=0.5.3
3030
# testing/utility
3131
junitVersion=5.8.2
3232
ktlintVersion=0.45.2
33-
kotestVersion=5.3.0
33+
kotestVersion=5.4.1
3434
kotlinCompileTestingVersion=1.4.8
3535
jacocoVersion=0.8.8
3636
kotlinxBenchmarkVersion=0.4.2
@@ -46,4 +46,4 @@ kotlinLoggingVersion=2.1.21
4646
slf4jVersion=1.7.36
4747

4848
# crt
49-
crtKotlinVersion=0.6.2
49+
crtKotlinVersion=0.6.3-SNAPSHOT

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

3939
enum class SourceSet {
4040
CommonMain,

0 commit comments

Comments
 (0)