Skip to content

Commit

Permalink
Merge pull request #22 from trello/dlew/prep-release
Browse files Browse the repository at this point in the history
Preparing 0.2.0 release
  • Loading branch information
dlew committed Aug 19, 2015
2 parents 60824cb + c908767 commit 44f8e76
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.2.0

* [#14](https://github.com/trello/RxLifecycle/pull/14): Use takeUntil internally (instead of a faulty custom operator)

While this fixes some intractable problems that could occur with the old system, it also includes a major behavior
change: when the bind decides to stop subscribing, it calls `onCompleted` (whereas before it would just
unsubscribe).

When upgrading, you should check that your usages of `onCompleted` (either in `subscribe()`, `doOnCompleted()`,
or `doOnTerminate()`) can handle the sequence ending due to the lifecycle bind.

If you still need the old behavior in some spots, you should handle the `Subscription` yourself manually (and call
`unsubscribe()` when appropriate).

* [#16](https://github.com/trello/RxLifecycle/pull/16): Lowered minSdkVersion to 14

## 0.1.0

Initial independent release (split from RxAndroid 0.25.0)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ or `Fragment` lifecycle.
## Installation

```gradle
compile 'com.trello:rxlifecycle:0.1.0'
compile 'com.trello:rxlifecycle-components:0.1.0'
compile 'com.trello:rxlifecycle:0.2.0'
compile 'com.trello:rxlifecycle-components:0.2.0'
```

## License
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GROUP=com.trello
VERSION_NAME=0.1.0-SNAPSHOT
VERSION_CODE=1
VERSION_NAME=0.2.0-SNAPSHOT
VERSION_CODE=2

POM_URL=https://github.com/trello/RxLifecycle
POM_SCM_URL=https://github.com/trello/RxLifecycle
Expand Down

0 comments on commit 44f8e76

Please sign in to comment.