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: <a href='http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.reactivex.rxjava2%22%20a%3A%22rxandroid%22'><img src='http://img.shields.io/maven-central/v/io.reactivex.rxjava2/rxandroid.svg'></a>
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'