Skip to content

Commit

Permalink
Merge pull request #276 from trello/dlew/prep-v2.2.2
Browse files Browse the repository at this point in the history
Prep v2.2.2
  • Loading branch information
dlew authored Jul 29, 2018
2 parents 56a0435 + 0bb6362 commit e44e253
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.2.2 (2018-07-29)

- [#275](https://github.com/trello/RxLifecycle/pull/275): Updated dependencies

Normally simply updating dependencies wouldn't justify a new release, except that there are some R8 issues with
RxLifecycle (due to it being compiled with Android lifecycle 1.0.0 instead of 1.1.0).

## 2.2.1 (2017-11-15)

- [#248](https://github.com/trello/RxLifecycle/pull/248): Remove generic type declaration for Completable bindings
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,28 +135,28 @@ myObservable
## Installation

```gradle
compile 'com.trello.rxlifecycle2:rxlifecycle:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle:2.2.2'
// If you want to bind to Android-specific lifecycles
compile 'com.trello.rxlifecycle2:rxlifecycle-android:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-android:2.2.2'
// If you want pre-written Activities and Fragments you can subclass as providers
compile 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-components:2.2.2'
// If you want pre-written support preference Fragments you can subclass as providers
compile 'com.trello.rxlifecycle2:rxlifecycle-components-preference:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-components-preference:2.2.2'
// If you want to use Navi for providers
compile 'com.trello.rxlifecycle2:rxlifecycle-navi:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-navi:2.2.2'
// If you want to use Android Lifecycle for providers
compile 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle:2.2.2'
// If you want to use Kotlin syntax
compile 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-kotlin:2.2.2'
// If you want to use Kotlin syntax with Android Lifecycle
compile 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle-kotlin:2.2.1'
implementation 'com.trello.rxlifecycle2:rxlifecycle-android-lifecycle-kotlin:2.2.2'
```

## License
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.trello.rxlifecycle2
VERSION_NAME=2.2.1-SNAPSHOT
VERSION_NAME=2.2.2-SNAPSHOT

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

0 comments on commit e44e253

Please sign in to comment.