Skip to content

Commit

Permalink
Prepare version 1.1.0.
Browse files Browse the repository at this point in the history
* Bump RxJava dependency to 1.1.0.
* Update CHANGELOG with new changes.
  • Loading branch information
JakeWharton committed Dec 9, 2015
1 parent bb2e8bf commit 222c92b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# RxAndroid Releases #

### Version 1.0.1 - August 9th 2015 ####
### Version 1.1.0 - December 9th 2015 ###

* New: `MainThreadSubscription` utility class runs its `onUnsubscribe` action on the Android main
thread. This aids in adding tear-down actions which must be executed on the main thread without
having to deal with posting to the main thread yourself.
* RxJava dependency now points at v1.1.0.


### Version 1.0.1 - August 9th 2015 ###

* Fix: Correctly check `isUnsubscribed()` state in `HandlerScheduler`'s worker before scheduling
more work.
* Fix: Eliminate a potential race condition in `HandlerScheduler` to ensure any posted work will
be canceled on unsubscription.


### Version 1.0.0 - August 5th 2015 ####
### Version 1.0.0 - August 5th 2015 ###

Initial stable release!

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
# Binaries

```groovy
compile 'io.reactivex:rxandroid:1.0.1'
compile 'io.reactivex:rxandroid:1.1.0'
// 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.
compile 'io.reactivex:rxjava:1.0.16'
compile 'io.reactivex:rxjava:1.1.0'
```

* RxAndroid: <a href='http://search.maven.org/#search%7Cga%7C1%7Crxandroid'><img src='http://img.shields.io/maven-central/v/io.reactivex/rxandroid.svg'></a>
Expand Down
2 changes: 1 addition & 1 deletion rxandroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repositories {
}

dependencies {
compile 'io.reactivex:rxjava:1.0.16'
compile 'io.reactivex:rxjava:1.1.0'

testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
Expand Down

0 comments on commit 222c92b

Please sign in to comment.