From f2bb9a01e8ad32a5f4056ccabb3bc5c652f79ca1 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Tue, 30 Oct 2018 17:52:47 +0100 Subject: [PATCH] Prepare version 0.5.0 --- CHANGELOG.md | 6 ++++-- README.md | 2 +- gradle.properties | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4fa740..be22e57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Change Log -Version 0.5.0 *(In development)* --------------------------------- +Version 0.5.0 *(2018-10-30)* +---------------------------- + +- Lower minSdk to 14 [\#54](https://github.com/vanniktech/RxPermission/pull/54) ([tonywis](https://github.com/tonywis)) Version 0.4.0 *(2018-08-18)* ---------------------------- diff --git a/README.md b/README.md index 0be05a2..300bc1b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This library wraps the Android Runtime Permissions with RxJava 2. It's based on # Download ```groovy -compile 'com.vanniktech:rxpermission:0.4.0' +compile 'com.vanniktech:rxpermission:0.5.0' compile 'com.vanniktech:rxpermission:0.5.0-SNAPSHOT' ``` diff --git a/gradle.properties b/gradle.properties index 4749760..5ec260c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.vanniktech -VERSION_NAME=0.5.0-SNAPSHOT -VERSION_CODE=4 +VERSION_NAME=0.5.0 +VERSION_CODE=5 POM_DESCRIPTION=Reactive permissions for Android