File tree 3 files changed +32
-4
lines changed
3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
- Version 0.2.0 * (In Development )*
5
- --------------------------------
4
+ Version 0.2.0 * (2015-08-23 )*
5
+ ----------------------------
6
6
7
7
* New modules!
8
8
* ` rxbinding-appcompat-v7 ` (and ` rxbinding-appcompat-v7-kotlin ` ) for the 'AppCompat Support Library':
@@ -43,6 +43,9 @@ Version 0.2.0 *(In Development)*
43
43
* ` attaches ` - Attach indication.
44
44
* ` attachEvents ` - Attach and detach events.
45
45
* ` detaches ` - Detach indication.
46
+ * Added ` @CheckResult ` to methods which will generate lint warnings if the return value is ignored.
47
+ * Added ` @NonNull ` to methods to indicate to lint that they will never return null and added to parameters
48
+ to indicate to lint for which arguments is null not allowed. Explicit null checks have been removed.
46
49
* Update Kotlin modules to Kotlin v0.12.1230.
47
50
* Update support library dependencies to v23.0.0.
48
51
* Minimum SDK version is now 14 because reasons.
Original file line number Diff line number Diff line change @@ -8,10 +8,35 @@ RxJava binding APIs for Android UI widgets from the platform and support librari
8
8
Download
9
9
--------
10
10
11
+ Platform bindings:
11
12
``` groovy
12
- compile 'com.jakewharton.rxbinding:rxbinding:0.1 .0'
13
+ compile 'com.jakewharton.rxbinding:rxbinding:0.2 .0'
13
14
```
14
15
16
+ 'support-v4' library bindings:
17
+ ``` groovy
18
+ compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.2.0'
19
+ ```
20
+
21
+ 'appcompat-v7' library bindings:
22
+ ``` groovy
23
+ compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.2.0'
24
+ ```
25
+
26
+ 'design' library bindings:
27
+ ``` groovy
28
+ compile 'com.jakewharton.rxbinding:rxbinding-design:0.2.0'
29
+ ```
30
+
31
+ 'recyclerview-v7' library bindings:
32
+ ``` groovy
33
+ compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.2.0'
34
+ ```
35
+
36
+ Kotlin extension methods for all of the above libraries are available by appending ` -kotlin ` to the
37
+ 'artifactId' of the dependency. For example, ` rxbinding-support-v4 ` becomes
38
+ ` rxbinding-support-v4-kotlin ` .
39
+
15
40
Snapshots of the development version are available in [ Sonatype's ` snapshots ` repository] [ snap ] .
16
41
17
42
Original file line number Diff line number Diff line change 1
1
GROUP =com.jakewharton.rxbinding
2
- VERSION_NAME =0.1.1-SNAPSHOT
2
+ VERSION_NAME =0.2.0
3
3
4
4
POM_DESCRIPTION =RxJava binding APIs for Android' s UI widgets.
5
5
You can’t perform that action at this time.
0 commit comments