File tree 4 files changed +5
-6
lines changed
benchmarks/src/jmh/kotlin/benchmarks
kotlinx-coroutines-core/jvm/test
4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ And make sure that you use the latest Kotlin version:
91
91
92
92
``` xml
93
93
<properties >
94
- <kotlin .version>1.6.0 </kotlin .version>
94
+ <kotlin .version>1.6.20 </kotlin .version>
95
95
</properties >
96
96
```
97
97
@@ -110,10 +110,10 @@ And make sure that you use the latest Kotlin version:
110
110
``` kotlin
111
111
plugins {
112
112
// For build.gradle.kts (Kotlin DSL)
113
- kotlin(" jvm" ) version " 1.6.0 "
113
+ kotlin(" jvm" ) version " 1.6.20 "
114
114
115
115
// For build.gradle (Groovy DSL)
116
- id " org.jetbrains.kotlin.jvm" version " 1.6.0 "
116
+ id " org.jetbrains.kotlin.jvm" version " 1.6.20 "
117
117
}
118
118
```
119
119
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ abstract class ParametrizedDispatcherBase : CoroutineScope {
25
25
private var closeable: Closeable ? = null
26
26
27
27
@Setup
28
- @UseExperimental(InternalCoroutinesApi ::class )
29
28
open fun setup () {
30
29
coroutineContext = when {
31
30
dispatcher == " fjp" -> ForkJoinPool .commonPool().asCoroutineDispatcher()
Original file line number Diff line number Diff line change 5
5
# Kotlin
6
6
version =1.6.1-SNAPSHOT
7
7
group =org.jetbrains.kotlinx
8
- kotlin_version =1.6.0
8
+ kotlin_version =1.6.20
9
9
10
10
# Dependencies
11
11
junit_version =4.12
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import org.junit.Test
8
8
import kotlin.coroutines.*
9
9
import kotlin.test.*
10
10
11
- @UseExperimental (ExperimentalStdlibApi ::class )
11
+ @OptIn (ExperimentalStdlibApi ::class )
12
12
class DispatcherKeyTest : TestBase () {
13
13
14
14
companion object CustomInterceptor : AbstractCoroutineContextElement(ContinuationInterceptor ),
You can’t perform that action at this time.
0 commit comments