From 526e6546f9aacc6e1d2064e515403f3d83121dac Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Sun, 2 Aug 2015 02:48:03 -0400 Subject: [PATCH] Prepare version 0.1.0. --- CHANGELOG.md | 4 ++-- README.md | 4 ++-- RELEASING.md | 4 ++-- gradle.properties | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae6846b0..5f57be09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Change Log ========== -Version 0.1.0 *(In Development)* --------------------------------- +Version 0.1.0 *(2015-08-02)* +---------------------------- Initial release. diff --git a/README.md b/README.md index 3566a46a..d672c1e6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ RxBinding ========= -RxJava binding APIs for Android's UI widgets. +RxJava binding APIs for Android UI widgets from the platform and support libraries. @@ -9,7 +9,7 @@ Download -------- ```groovy -compile 'com.jakewharton.rxbinding:rxbinding:0.1.0-SNAPSHOT' +compile 'com.jakewharton.rxbinding:rxbinding:0.1.0' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/RELEASING.md b/RELEASING.md index c86a0893..2495b35c 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,11 +1,11 @@ Releasing ======== - 1. Change the version in `gradle.properties` to a non-SNAPSHOT verson. + 1. Change the version in `gradle.properties` to a non-SNAPSHOT version. 2. Update the `CHANGELOG.md` for the impending release. 3. Update the `README.md` with the new version. 4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version) - 5. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version) + 5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) 6. `./gradlew clean uploadArchives` 7. Update the `gradle.properties` to the next SNAPSHOT version. 8. `git commit -am "Prepare next development version."` diff --git a/gradle.properties b/gradle.properties index 230b36ea..79cdd2b4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.rxbinding -VERSION_NAME=0.1.0-SNAPSHOT +VERSION_NAME=0.1.0 POM_DESCRIPTION=RxJava binding APIs for Android's UI widgets.