From 078040e926d56a8e24dd259187b7438125bd4ff3 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Thu, 18 Feb 2016 22:48:14 -0500 Subject: [PATCH] Prepare version 0.4.0. --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ README.md | 12 ++++++------ gradle.properties | 2 +- 3 files changed, 37 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5518779..8b310cd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,36 @@ Change Log ========== +Version 0.4.0 *(2016-02-18)* +---------------------------- + + * New bindings! + * `rxbinding`: + * `RxAbsListView`: + * `scrollEvents` - List scroll events. + * `RxAutoCompleteTextView`: + * `completionHint` - Sets the hint text at the bottom of the suggestion list. + * `threshold` - Sets the minimum number of characters before suggestions are shown. + * `RxPopupMenu`: + * `itemClicks` - Menu item clicks. + * `dismisses` - Menu item dismissal. + * `rxbinding-appcompat-v7`: + * `RxActionMenuView`: + * `itemClicks` - Menu item clicks. + * `RxPopupMenu`: + * `itemClicks` - Menu item clicks. + * `dismisses` - Menu item dismissal. + * `rxbinding-design`: + * `RxTextInputLayout`: + * `error` - Sets the error text for the text input. + * `errorRes` - Sets the error text resource for the text input. + * `rxbinding-support-v4`: + * `RxMenuItemCompat`: + * `actionViewEvents`- Menu item action view events. + * Update Kotlin modules dependency to v1.0.0. + * Fix: Remove 76 needless synthetic accessor methods. + + Version 0.3.0 *(2015-10-22)* ---------------------------- diff --git a/README.md b/README.md index 66cf24ad..688381cd 100644 --- a/README.md +++ b/README.md @@ -10,32 +10,32 @@ Download Platform bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding:0.4.0' ``` 'support-v4' library bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.4.0' ``` 'appcompat-v7' library bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.4.0' ``` 'design' library bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding-design:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding-design:0.4.0' ``` 'recyclerview-v7' library bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.4.0' ``` 'leanback-v17' library bindings: ```groovy -compile 'com.jakewharton.rxbinding:rxbinding-leanback-v17:0.3.0' +compile 'com.jakewharton.rxbinding:rxbinding-leanback-v17:0.4.0' ``` Kotlin extension methods for all of the above libraries are available by appending `-kotlin` to the diff --git a/gradle.properties b/gradle.properties index 20870851..d5e8c6f7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.rxbinding -VERSION_NAME=0.3.1-SNAPSHOT +VERSION_NAME=0.4.0 POM_DESCRIPTION=RxJava binding APIs for Android's UI widgets.