diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf5d96..595a9a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 2.0 (*unreleased*) +## 2.0 (2016-11-21) This major revision was made to support RxJava 2. RxLifecycle 2.0 lives in a new namespace and package names so that it can work side-by-side with RxLifecycle 1.0 (while transitioning). diff --git a/README.md b/README.md index ab890c1..af4402f 100644 --- a/README.md +++ b/README.md @@ -106,22 +106,20 @@ myObservable ## Installation -RxLifecycle2 is currently only on OSS snapshot repository (https://oss.sonatype.org/content/repositories/snapshots/). - ```gradle -compile 'com.trello.rxlifecycle2:rxlifecycle:2.0-SNAPSHOT' +compile 'com.trello.rxlifecycle2:rxlifecycle:2.0' // If you want to bind to Android-specific lifecycles -compile 'com.trello.rxlifecycle2:rxlifecycle-android:2.0-SNAPSHOT' +compile 'com.trello.rxlifecycle2:rxlifecycle-android:2.0' // If you want pre-written Activities and Fragments you can subclass as providers -compile 'com.trello.rxlifecycle2:rxlifecycle-components:2.0-SNAPSHOT' +compile 'com.trello.rxlifecycle2:rxlifecycle-components:2.0' // If you want to use Navi for providers -compile 'com.trello.rxlifecycle2:rxlifecycle-navi:2.0-SNAPSHOT' +compile 'com.trello.rxlifecycle2:rxlifecycle-navi:2.0' // If you want to use Kotlin syntax -compile 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.0-SNAPSHOT' +compile 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.0' ``` ## License diff --git a/build.gradle b/build.gradle index 76f6b5b..f182f01 100644 --- a/build.gradle +++ b/build.gradle @@ -33,9 +33,9 @@ ext { targetCompatibilityVersion = JavaVersion.VERSION_1_7 // Define all dependencies in the base project, to unify & make it easy to update - rxJava = 'io.reactivex.rxjava2:rxjava:2.0.0' - rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.0' - navi = 'com.trello.navi2:navi:2.0-SNAPSHOT' + rxJava = 'io.reactivex.rxjava2:rxjava:2.0.1' + rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.1' + navi = 'com.trello.navi2:navi:2.0' kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:$verKotlin" appCompat = 'com.android.support:appcompat-v7:25.0.0' supportAnnotations = 'com.android.support:support-annotations:25.0.0' diff --git a/rxlifecycle-navi/build.gradle b/rxlifecycle-navi/build.gradle index c318f44..b965a9a 100644 --- a/rxlifecycle-navi/build.gradle +++ b/rxlifecycle-navi/build.gradle @@ -12,8 +12,6 @@ android { repositories { mavenCentral() - - maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } } dependencies {