Skip to content

Commit 07a35d7

Browse files
Update Kotlin [1.7.20 -> 1.8.20], coroutines [1.7.3] and dokka [1.8.20]
1 parent 506c783 commit 07a35d7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

build.gradle.kts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ buildscript {
3838
val essentialsVersion by extra("3.1.0")
3939
val junitVersion by extra("4.13.2")
4040
val mockitoVersion by extra("3.8.0")
41-
val kotlinVersion by extra("1.7.20")
42-
val coroutinesVersion by extra("1.6.4")
43-
val dokkaVersion by extra("1.7.20")
41+
// The versions of Kotlin, Kotlin Coroutines and Dokka must work together.
42+
// Check https://github.com/Kotlin/kotlinx.coroutines#readme
43+
// and https://github.com/Kotlin/dokka/releases
44+
val kotlinVersion by extra("1.8.20")
45+
val coroutinesVersion by extra("1.7.3")
46+
val dokkaVersion by extra("1.8.20")
4447

4548
println("version=$obxJavaVersion")
4649
println("objectboxNativeDependency=$obxJniLibVersion")

objectbox-rxjava3/src/main/java/io/objectbox/rx3/Query.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import io.reactivex.rxjava3.core.Single
99
/**
1010
* Shortcut for [`RxQuery.flowableOneByOne(query, strategy)`][RxQuery.flowableOneByOne].
1111
*/
12-
fun <T> Query<T>.flowableOneByOne(strategy: BackpressureStrategy = BackpressureStrategy.BUFFER): Flowable<T> {
12+
fun <T : Any> Query<T>.flowableOneByOne(strategy: BackpressureStrategy = BackpressureStrategy.BUFFER): Flowable<T> {
1313
return RxQuery.flowableOneByOne(this, strategy)
1414
}
1515

0 commit comments

Comments
 (0)