Skip to content

Commit 3f7790e

Browse files
committed
Upgrade to RxJava 3.1.1
1 parent ab9b995 commit 3f7790e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repositories {
4343
}
4444

4545
dependencies {
46-
implementation "io.reactivex.rxjava3:rxjava:3.1.0"
46+
implementation "io.reactivex.rxjava3:rxjava:3.1.1"
4747
testImplementation 'junit:junit:4.13.2'
4848
testImplementation "org.reactivestreams:reactive-streams-tck:1.0.3"
4949
testImplementation "org.testng:testng:7.4.0"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
org.gradle.jvmargs=-XX:+IgnoreUnrecognizedVMOptions --permit-illegal-access --show-version
22

33
GROUP=com.github.akarnokd
4-
VERSION_NAME=0.0.13
5-
version=0.0.13
4+
VERSION_NAME=0.0.14
5+
version=0.0.14
66

77
POM_ARTIFACT_ID=rxjava3-fiber-interop
88
POM_NAME=RxJava 3 Fiber Interop

src/main/java/hu/akarnokd/rxjava3/fibers/FlowableTransformFiberScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
import io.reactivex.rxjava3.core.*;
2626
import io.reactivex.rxjava3.core.Scheduler.Worker;
27-
import io.reactivex.rxjava3.internal.queue.SpscArrayQueue;
27+
import io.reactivex.rxjava3.operators.SpscArrayQueue;
2828
import io.reactivex.rxjava3.internal.util.BackpressureHelper;
2929

3030
final class FlowableTransformFiberScheduler<T, R> extends Flowable<R>

0 commit comments

Comments
 (0)