From dfe2907d51d032707ec825edc15ad5a997559a85 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Sat, 18 Aug 2018 00:34:00 +0200 Subject: [PATCH] Prepare version 0.4.0 --- CHANGELOG.md | 15 +++++++++++++-- README.md | 2 +- gradle.properties | 4 ++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ad148..6253ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,18 @@ # Change Log -Version 0.4.0 *(In development)* --------------------------------- +Version 0.4.0 *(2018-08-18)* +---------------------------- + +- Accept a Context rather than Application in RealRxPermission\#getInstance\(\) [\#49](https://github.com/vanniktech/RxPermission/pull/49) ([vanniktech](https://github.com/vanniktech)) +- Update various dependencies. [\#48](https://github.com/vanniktech/RxPermission/pull/48) ([vanniktech](https://github.com/vanniktech)) +- Finish before overriding pending transitions. [\#46](https://github.com/vanniktech/RxPermission/pull/46) ([hannesstruss](https://github.com/hannesstruss)) +- Improve testing setup. [\#43](https://github.com/vanniktech/RxPermission/pull/43) ([vanniktech](https://github.com/vanniktech)) +- Do not run clean build again when deploying snapshots. [\#42](https://github.com/vanniktech/RxPermission/pull/42) ([vanniktech](https://github.com/vanniktech)) +- Use Gradle Maven Publish Plugin for publishing. [\#41](https://github.com/vanniktech/RxPermission/pull/41) ([vanniktech](https://github.com/vanniktech)) +- Fix ErrorProne warning in tests. [\#38](https://github.com/vanniktech/RxPermission/pull/38) ([vanniktech](https://github.com/vanniktech)) +- Drop support annotations in favor of RxJava annotations. [\#37](https://github.com/vanniktech/RxPermission/pull/37) ([vanniktech](https://github.com/vanniktech)) +- Nuke badges in README. [\#29](https://github.com/vanniktech/RxPermission/pull/29) ([vanniktech](https://github.com/vanniktech)) +- Tweak Travis configuration. [\#27](https://github.com/vanniktech/RxPermission/pull/27) ([vanniktech](https://github.com/vanniktech)) Version 0.3.0 *(2018-02-4)* --------------------------- diff --git a/README.md b/README.md index 1517586..f20796e 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.3.0' +compile 'com.vanniktech:rxpermission:0.4.0' compile 'com.vanniktech:rxpermission:0.4.0-SNAPSHOT' ``` diff --git a/gradle.properties b/gradle.properties index 988fa5f..b9472c6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.vanniktech -VERSION_NAME=0.4.0-SNAPSHOT -VERSION_CODE=3 +VERSION_NAME=0.4.0 +VERSION_CODE=4 POM_DESCRIPTION=Reactive permissions for Android