Skip to content

Commit

Permalink
Prepare version 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Aug 23, 2015
1 parent f70c79e commit 41bf224
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,8 @@
Change Log
==========

Version 0.2.0 *(In Development)*
--------------------------------
Version 0.2.0 *(2015-08-23)*
----------------------------

* New modules!
* `rxbinding-appcompat-v7` (and `rxbinding-appcompat-v7-kotlin`) for the 'AppCompat Support Library':
Expand Down Expand Up @@ -43,6 +43,9 @@ Version 0.2.0 *(In Development)*
* `attaches` - Attach indication.
* `attachEvents` - Attach and detach events.
* `detaches` - Detach indication.
* Added `@CheckResult` to methods which will generate lint warnings if the return value is ignored.
* Added `@NonNull` to methods to indicate to lint that they will never return null and added to parameters
to indicate to lint for which arguments is null not allowed. Explicit null checks have been removed.
* Update Kotlin modules to Kotlin v0.12.1230.
* Update support library dependencies to v23.0.0.
* Minimum SDK version is now 14 because reasons.
Expand Down
27 changes: 26 additions & 1 deletion README.md
Expand Up @@ -8,10 +8,35 @@ RxJava binding APIs for Android UI widgets from the platform and support librari
Download
--------

Platform bindings:
```groovy
compile 'com.jakewharton.rxbinding:rxbinding:0.1.0'
compile 'com.jakewharton.rxbinding:rxbinding:0.2.0'
```

'support-v4' library bindings:
```groovy
compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.2.0'
```

'appcompat-v7' library bindings:
```groovy
compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.2.0'
```

'design' library bindings:
```groovy
compile 'com.jakewharton.rxbinding:rxbinding-design:0.2.0'
```

'recyclerview-v7' library bindings:
```groovy
compile 'com.jakewharton.rxbinding:rxbinding-recyclerview-v7:0.2.0'
```

Kotlin extension methods for all of the above libraries are available by appending `-kotlin` to the
'artifactId' of the dependency. For example, `rxbinding-support-v4` becomes
`rxbinding-support-v4-kotlin`.

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.jakewharton.rxbinding
VERSION_NAME=0.1.1-SNAPSHOT
VERSION_NAME=0.2.0

POM_DESCRIPTION=RxJava binding APIs for Android's UI widgets.
Expand Down

0 comments on commit 41bf224

Please sign in to comment.