Skip to content

Commit d49d568

Browse files
authored
Merge pull request #554 from rfresh2/kotlin-1.9.0
chore: update to kotlin 1.9.0
2 parents 518cdfe + 576ebcf commit d49d568

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ forgeVersion=14.23.5.2860
1010
mappingsChannel=stable
1111
mappingsVersion=39-1.12
1212

13-
kotlinVersion=1.8.21
14-
kotlinxCoroutinesVersion=1.7.1
13+
kotlinVersion=1.9.0
14+
kotlinxCoroutinesVersion=1.7.2

src/main/kotlin/com/lambda/client/util/threads/CoroutineUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import kotlinx.coroutines.*
55
/**
66
* Single thread scope to use in Lambda
77
*/
8-
@OptIn(DelicateCoroutinesApi::class)
8+
@OptIn(DelicateCoroutinesApi::class, ExperimentalCoroutinesApi::class)
99
val mainScope = CoroutineScope(newSingleThreadContext("Lambda Main"))
1010

1111
/**

0 commit comments

Comments
 (0)