File tree 4 files changed +7
-11
lines changed
kotlinx-coroutines-reactive/test
kotlinx-coroutines-reactor/test
4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 3
3
[ ![ official JetBrains project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
5
5
[ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2/pom )
6
- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.5.30 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
6
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.0 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
7
7
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
8
8
9
9
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
10
- This is a companion version for the Kotlin ` 1.5.30 ` release.
10
+ This is a companion version for the Kotlin ` 1.6.0 ` release.
11
11
12
12
``` kotlin
13
13
suspend fun main () = coroutineScope {
@@ -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.5.30 </kotlin .version>
94
+ <kotlin .version>1.6.0 </kotlin .version>
95
95
</properties >
96
96
```
97
97
@@ -109,7 +109,7 @@ And make sure that you use the latest Kotlin version:
109
109
110
110
``` groovy
111
111
buildscript {
112
- ext.kotlin_version = '1.5.30 '
112
+ ext.kotlin_version = '1.6.0 '
113
113
}
114
114
```
115
115
Original file line number Diff line number Diff line change 5
5
# Kotlin
6
6
version =1.5.2-SNAPSHOT
7
7
group =org.jetbrains.kotlinx
8
- kotlin_version =1.6.0-RC2
8
+ kotlin_version =1.6.0
9
9
10
10
# Dependencies
11
11
junit_version =4.12
12
12
junit5_version =5.7.0
13
- atomicfu_version =0.16.3
13
+ atomicfu_version =0.17.0
14
14
knit_version =0.3.0
15
15
html_version =0.7.2
16
16
lincheck_version =2.14
Original file line number Diff line number Diff line change @@ -282,8 +282,6 @@ class PublishTest : TestBase() {
282
282
val publisher = publish {
283
283
assertFailsWith<NullPointerException > { send(null ) }
284
284
assertFailsWith<NullPointerException > { trySend(null ) }
285
- @Suppress(" DEPRECATION" )
286
- assertFailsWith<NullPointerException > { offer(null ) }
287
285
send(" OK" )
288
286
}
289
287
assertEquals(" OK" , publisher.awaitFirstOrNull())
Original file line number Diff line number Diff line change @@ -170,10 +170,8 @@ class FluxTest : TestBase() {
170
170
val flux = flux {
171
171
assertFailsWith<NullPointerException > { send(null ) }
172
172
assertFailsWith<NullPointerException > { trySend(null ) }
173
- @Suppress(" DEPRECATION" )
174
- assertFailsWith<NullPointerException > { offer(null ) }
175
173
send(" OK" )
176
174
}
177
175
assertEquals(" OK" , flux.awaitFirstOrNull())
178
176
}
179
- }
177
+ }
You can’t perform that action at this time.
0 commit comments