From fb7983eb608307ae291173c0c250c14ffef92b13 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Sat, 12 Nov 2016 12:26:24 -0500 Subject: [PATCH] Prepare version 2.0.1. --- CHANGES.md | 8 ++++++++ README.md | 4 ++-- rxandroid/build.gradle | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6f0c030e..653dec70 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,14 @@ Version 1.x can be found at https://github.com/ReactiveX/RxAndroid/blob/1.x/CHANGES.md + +### Version 2.0.1 - November 12, 2016 ### + +**Bugfixes** + + * [Pull 347](https://github.com/ReactiveX/RxAndroid/pull/347) - Schedule tasks with negative delays immediately + + ### Version 2.0.0 - October 29, 2016 ### General availability of RxAndroid 2.0 for use with RxJava 2.0! diff --git a/README.md b/README.md index 39d86e81..3e436437 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ Since RxAndroid is part of the RxJava family the communication channels are simi # Binaries ```groovy -compile 'io.reactivex.rxjava2:rxandroid:2.0.0' +compile 'io.reactivex.rxjava2:rxandroid:2.0.1' // Because RxAndroid releases are few and far between, it is recommended you also // explicitly depend on RxJava's latest version for bug fixes and new features. -compile 'io.reactivex.rxjava2:rxjava:2.0.0' +compile 'io.reactivex.rxjava2:rxjava:2.0.1' ``` * RxAndroid: diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle index 56bd01f0..39dbcefa 100644 --- a/rxandroid/build.gradle +++ b/rxandroid/build.gradle @@ -40,7 +40,7 @@ android { } dependencies { - compile 'io.reactivex.rxjava2:rxjava:2.0.0' + compile 'io.reactivex.rxjava2:rxjava:2.0.1' testCompile 'junit:junit:4.12' testCompile 'org.robolectric:robolectric:3.1.2'