Skip to content

Commit

Permalink
Prepare version 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 19, 2016
1 parent 60850da commit 078040e
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 7 deletions.
30 changes: 30 additions & 0 deletions 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)*
----------------------------

Expand Down
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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.
Expand Down

0 comments on commit 078040e

Please sign in to comment.