Skip to content

Commit 6a70991

Browse files
committed
Upgrade to RxJava 2.2.4
1 parent 3d08e04 commit 6a70991

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Library to convert between RxJava 1.x and 2.x reactive types.
1717

1818
```
1919
dependencies {
20-
compile "com.github.akarnokd:rxjava2-interop:0.13.3"
20+
compile "com.github.akarnokd:rxjava2-interop:0.13.4"
2121
}
2222
```
2323

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050

5151
compile "org.reactivestreams:reactive-streams:1.0.2"
5252
compile "io.reactivex:rxjava:1.3.8"
53-
compile "io.reactivex.rxjava2:rxjava:2.2.3"
53+
compile "io.reactivex.rxjava2:rxjava:2.2.4"
5454

5555
testCompile group: 'junit', name: 'junit', version: '4.12'
5656
testCompile 'org.mockito:mockito-core:2.12.0'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.13.3
1+
version=0.13.4

src/main/java/hu/akarnokd/rxjava/interop/FlowableV2ToObservableV1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void unsubscribe() {
6969

7070
@Override
7171
public boolean isUnsubscribed() {
72-
return io.reactivex.internal.subscriptions.SubscriptionHelper.isCancelled(get());
72+
return io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED == get();
7373
}
7474

7575
@Override

0 commit comments

Comments
 (0)