From c7a4446ae56e4b67366221a919b113b447d52f46 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Fri, 15 Feb 2019 14:15:42 -0500 Subject: [PATCH] Prepare version 2.1.1 --- CHANGES.md | 7 +++++++ README.md | 2 +- rxandroid/build.gradle | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4a1bf738..e91102a8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # RxAndroid Releases # +### Version 2.1.1 - February, 15 2019 ### + +**Bugfixes** + + * [Pull 442](https://github.com/ReactiveX/RxAndroid/pull/442) - Use async messages for Scheduler.scheduleDirect + + ### Version 2.1.0 - August 16, 2018 ### **API Enhancements** diff --git a/README.md b/README.md index f7c31a9e..6ef56a76 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Since RxAndroid is part of the RxJava family the communication channels are simi # Binaries ```groovy -implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' +implementation 'io.reactivex.rxjava2:rxandroid:2.1.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. // (see https://github.com/ReactiveX/RxJava/releases for latest 2.x.x version) diff --git a/rxandroid/build.gradle b/rxandroid/build.gradle index 0021f8ea..a844f265 100644 --- a/rxandroid/build.gradle +++ b/rxandroid/build.gradle @@ -36,7 +36,7 @@ android { } dependencies { - api 'io.reactivex.rxjava2:rxjava:2.2.0' + api 'io.reactivex.rxjava2:rxjava:2.2.6' testImplementation 'junit:junit:4.12' testImplementation 'org.robolectric:robolectric:3.8'