Skip to content

Commit

Permalink
Merge pull request #165 from trello/dlew/prep-1.x
Browse files Browse the repository at this point in the history
Prepare 1.0 release
  • Loading branch information
dlew authored Nov 3, 2016
2 parents 1c0784c + 11d71e5 commit 1a78ef1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 1.0 (2016-11-03)

First and (hopefully) final release of 1.x branch!

This release marks the start of maintenance mode for RxJava 1 support. Future work will be devoted to supporting
RxJava 2. Important bugs may be squashed but new features will have to be extraordinarily compelling in order
to be added.

- [#162](https://github.com/trello/RxLifecycle/pull/162): Made all components abstract
- [#157](https://github.com/trello/RxLifecycle/pull/157): Added RxPreferenceFragment

## 0.8.0 (2016-09-19)

- [#152](https://github.com/trello/RxLifecycle/pull/152): Support RxJava 1.2.0.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,19 @@ the `Subscription` yourself and call `unsubscribe()` when appropriate.
## Installation

```gradle
compile 'com.trello:rxlifecycle:0.8.0'
compile 'com.trello:rxlifecycle:1.0'
// If you want to bind to Android-specific lifecycles
compile 'com.trello:rxlifecycle-android:0.8.0'
compile 'com.trello:rxlifecycle-android:1.0'
// If you want pre-written Activities and Fragments you can subclass as providers
compile 'com.trello:rxlifecycle-components:0.8.0'
compile 'com.trello:rxlifecycle-components:1.0'
// If you want to use Navi for providers
compile 'com.trello:rxlifecycle-navi:0.8.0'
compile 'com.trello:rxlifecycle-navi:1.0'
// If you want to use Kotlin syntax
compile 'com.trello:rxlifecycle-kotlin:0.8.0'
compile 'com.trello:rxlifecycle-kotlin:1.0'
```

## Related Libraries
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.8.0-SNAPSHOT
VERSION_CODE=10
VERSION_NAME=1.0-SNAPSHOT
VERSION_CODE=11

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

0 comments on commit 1a78ef1

Please sign in to comment.