From 0f113210dd5f13002aa3f9b9008c8ee2802487d5 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 12 Feb 2018 16:13:56 -0500 Subject: [PATCH] Prepare version 2.0.2. --- CHANGES.md | 12 ++++++++++++ README.md | 4 ++-- rxandroid/build.gradle | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 544ff73a..ddd16aa8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,18 @@ Version 1.x can be found at https://github.com/ReactiveX/RxAndroid/blob/1.x/CHANGES.md +### Version 2.0.2 - January 12, 2018 ### + +**API Enhancements** + + * [Pull 358](https://github.com/ReactiveX/RxAndroid/pull/358) - Add handler getters to RxAndroidPlugins + +**Bugfixes** + + * [Pull 391](https://github.com/ReactiveX/RxAndroid/pull/391) - Update scheduler error handling to match RxJava + * [Pull 408](https://github.com/ReactiveX/RxAndroid/pull/408) - Remove superfluous negative checks + * [Pull 415](https://github.com/ReactiveX/RxAndroid/pull/415) - Disable useless `BuildConfig` class generation + ### Version 2.0.1 - November 12, 2016 ### diff --git a/README.md b/README.md index 2a05eca5..1f737bf2 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ Since RxAndroid is part of the RxJava family the communication channels are simi # Binaries ```groovy -compile 'io.reactivex.rxjava2:rxandroid:2.0.1' +implementation 'io.reactivex.rxjava2:rxandroid:2.0.2' // 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. // (see https://github.com/ReactiveX/RxJava/releases for latest 2.x.x version) -compile 'io.reactivex.rxjava2:rxjava:2.x.x' +implementation 'io.reactivex.rxjava2:rxjava:2.x.x' ``` * RxAndroid: diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle index defb7765..61fb19b3 100644 --- a/rxandroid/build.gradle +++ b/rxandroid/build.gradle @@ -37,7 +37,7 @@ android { } dependencies { - api 'io.reactivex.rxjava2:rxjava:2.1.8' + api 'io.reactivex.rxjava2:rxjava:2.1.9' testImplementation 'junit:junit:4.12' testImplementation 'org.robolectric:robolectric:3.3.2'