From 7734557345b554fd2062f14ad31df76becd0acb6 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Sun, 4 Feb 2018 12:24:40 +0100 Subject: [PATCH] Prepare version 0.3.0 --- CHANGELOG.md | 8 ++++++-- README.md | 2 +- gradle.properties | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2678b45..88200e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Change Log -Version 0.3.0 *(In development)* --------------------------------- +Version 0.3.0 *(2018-02-4)* +--------------------------- + +- Update Android Studio Gradle Plugin to 3.0.1 & better travis.yml [\#26](https://github.com/vanniktech/RxPermission/pull/26) ([vanniktech](https://github.com/vanniktech)) +- Update Gradle to 4.5 [\#25](https://github.com/vanniktech/RxPermission/pull/25) ([vanniktech](https://github.com/vanniktech)) +- Ignore AutoValue annotation when proguarding. [\#17](https://github.com/vanniktech/RxPermission/pull/17) ([vanniktech](https://github.com/vanniktech)) Version 0.2.0 *(2017-12-08)* ---------------------------- diff --git a/README.md b/README.md index dfaa67e..b2aeace 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This library wraps the Android Runtime Permissions with RxJava 2. It's based on # Download ```groovy -compile 'com.vanniktech:rxpermission:0.2.0' +compile 'com.vanniktech:rxpermission:0.3.0' compile 'com.vanniktech:rxpermission:0.3.0-SNAPSHOT' ``` diff --git a/gradle.properties b/gradle.properties index a6f4119..56152ad 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.vanniktech -VERSION_NAME=0.3.0-SNAPSHOT -VERSION_CODE=2 +VERSION_NAME=0.3.0 +VERSION_CODE=3 POM_DESCRIPTION=Reactive permissions for Android