Skip to content

Commit a0fe21c

Browse files
committed
Upgrade to RxJava 1.2.10 & 2.1.0
1 parent 29f1ec4 commit a0fe21c

4 files changed

Lines changed: 5 additions & 5 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.9.6"
20+
compile "com.github.akarnokd:rxjava2-interop:0.10.0"
2121
}
2222
```
2323

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ dependencies {
4949
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
5050

5151
compile "org.reactivestreams:reactive-streams:1.0.0"
52-
compile "io.reactivex:rxjava:1.2.9"
53-
compile "io.reactivex.rxjava2:rxjava:2.0.9"
52+
compile "io.reactivex:rxjava:1.2.10"
53+
compile "io.reactivex.rxjava2:rxjava:2.1.0"
5454

5555
testCompile group: 'junit', name: 'junit', version: '4.12'
5656
}

gradle.properties

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public org.reactivestreams.Subscriber<? super T> apply(org.reactivestreams.Subsc
278278
s.onSubscribe(parentSubscription);
279279

280280
rx.Subscriber<? super T> t;
281-
281+
282282
try {
283283
t = io.reactivex.internal.functions.ObjectHelper.requireNonNull(operator.call(parent), "The operator returned a null rx.Subscriber");
284284
} catch (Throwable ex) {

0 commit comments

Comments
 (0)