From fd574f72762608f21caddc4f6fc9a1b3666a3cba Mon Sep 17 00:00:00 2001 From: Dan Lew Date: Sat, 27 May 2017 10:41:05 -0500 Subject: [PATCH] Prepared release v2.1.0 --- CHANGELOG.md | 7 +++++++ README.md | 18 +++++++++--------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a9e37d..73f4376 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 2.1.0 (2017-05-27) + +- [#216](https://github.com/trello/RxLifecycle/pull/216): Added support for Android Architecture Components + These can be found in the new rxlifecycle-android-lifecycle and rxlifecycle-android-kotlin artifacts. + +- [#219](https://github.com/trello/RxLifecycle/pull/219): Fix potential build issues by making JSR305 compileOnly + ## 2.0.1 (2016-11-23) - [#183](https://github.com/trello/RxLifecycle/pull/183): Fix usage of null in navi module diff --git a/README.md b/README.md index 13eff74..74cbd86 100644 --- a/README.md +++ b/README.md @@ -135,25 +135,25 @@ myObservable ## Installation ```gradle -compile 'com.trello.rxlifecycle2:rxlifecycle:2.0.1' +compile 'com.trello.rxlifecycle2:rxlifecycle:2.1.0' // If you want to bind to Android-specific lifecycles -compile 'com.trello.rxlifecycle2:rxlifecycle-android:2.0.1' +compile 'com.trello.rxlifecycle2:rxlifecycle-android:2.1.0' // If you want pre-written Activities and Fragments you can subclass as providers -compile 'com.trello.rxlifecycle2:rxlifecycle-components:2.0.1' +compile 'com.trello.rxlifecycle2:rxlifecycle-components:2.1.0' // If you want to use Navi for providers -compile 'com.trello.rxlifecycle2:rxlifecycle-navi:2.0.1' +compile 'com.trello.rxlifecycle2:rxlifecycle-navi:2.1.0' -// If you want to use Android Lifecycle for providers (WARNING: NOT YET RELEASED) -compile 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle:2.1.0-SNAPSHOT' +// If you want to use Android Lifecycle for providers +compile 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle:2.1.0' // If you want to use Kotlin syntax -compile 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.0.1' +compile 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.1.0' -// If you want to use Kotlin syntax with Android Lifecycle (WARNING: NOT YET RELEASED) -compile 'com.trello.rxlifecycle2:rxlifecycle-android-kotlin:2.1.0-SNAPSHOT' +// If you want to use Kotlin syntax with Android Lifecycle +compile 'com.trello.rxlifecycle2:rxlifecycle-android-kotlin:2.1.0' ``` ## License