Skip to content

Commit a5b91c3

Browse files
committed
Prepare version 1.0.0.
1 parent d30f647 commit a5b91c3

3 files changed

Lines changed: 44 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
Change Log
22
==========
33

4+
Version 1.0.0 *(2016-12-01)*
5+
----------------------------
6+
7+
* New bindings!
8+
* `rxbinding`:
9+
* `Toolbar`:
10+
* `title` - Toolbar title.
11+
* `titleRes` - Toolbar title from resource.
12+
* `subtitle` - Toolbar subtitle.
13+
* `subtitleRes` - Toolbar subtitle from resource.
14+
* `View`:
15+
* `keys` - View key events.
16+
* `rxbinding-appcompat-v7`:
17+
* `Toolbar`:
18+
* `title` - Toolbar title.
19+
* `titleRes` - Toolbar title from resource.
20+
* `subtitle` - Toolbar subtitle.
21+
* `subtitleRes` - Toolbar subtitle from resource.
22+
* `rxbinding-design`:
23+
* `BottomNavigationView`:
24+
* `itemSelections` - Navigation item selections.
25+
* `rxbinding-support-v4`:
26+
* `NestedScrollView`:
27+
* `scrollChangeEvents` - Nested scrolling change events.
28+
* `SlidingPaneLayout`:
29+
* `open` - Opens the panel.
30+
* `panelOpens` - Sliding panel opens.
31+
* `panelSlides` - Sliding panel open offsets.
32+
* `ViewPager`:
33+
* `pageScrollStateChanges` - Page scrolling change events.
34+
* `currentItem` - Sets the current page item.
35+
* New: `rxbinding-support-v4` now only depends on `support-core-ui`.
36+
* Fix: Kotlin `Action` generic types now properly allow nulls when applicable.
37+
* Fix: Correct nullability of `TextViewAfterTextChangeEvent`'s `editable` property.
38+
* Fix: Correct nullability of `TextViewEditorActionEvent`'s `keyEvent` property.
39+
40+
441
Version 0.4.0 *(2016-02-18)*
542
----------------------------
643

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@ Download
1010

1111
Platform bindings:
1212
```groovy
13-
compile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
13+
compile 'com.jakewharton.rxbinding:rxbinding:1.0.0'
1414
```
1515

1616
'support-v4' library bindings:
1717
```groovy
18-
compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.4.0'
18+
compile 'com.jakewharton.rxbinding:rxbinding-support-v4:1.0.0'
1919
```
2020

2121
'appcompat-v7' library bindings:
2222
```groovy
23-
compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.4.0'
23+
compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:1.0.0'
2424
```
2525

2626
'design' library bindings:
2727
```groovy
28-
compile 'com.jakewharton.rxbinding:rxbinding-design:0.4.0'
28+
compile 'com.jakewharton.rxbinding:rxbinding-design:1.0.0'
2929
```
3030

3131
'recyclerview-v7' library bindings:
3232
```groovy
33-
compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.4.0'
33+
compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:1.0.0'
3434
```
3535

3636
'leanback-v17' library bindings:
3737
```groovy
38-
compile 'com.jakewharton.rxbinding:rxbinding-leanback-v17:0.4.0'
38+
compile 'com.jakewharton.rxbinding:rxbinding-leanback-v17:1.0.0'
3939
```
4040

4141
Kotlin extension methods for all of the above libraries are available by appending `-kotlin` to the

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.jakewharton.rxbinding
2-
VERSION_NAME=0.4.1-SNAPSHOT
2+
VERSION_NAME=1.0.0
33

44
POM_DESCRIPTION=RxJava binding APIs for Android's UI widgets.
55

0 commit comments

Comments
 (0)