diff --git a/CHANGELOG.md b/CHANGELOG.md index 98a1b76..a6025c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ # Change Log -Version 0.7.0 *(In development)* --------------------------------- +Version 0.7.0 *(2019-01-06)* +---------------------------- + +- Fix Integration tests. [\#63](https://github.com/vanniktech/RxPermission/pull/63) ([vanniktech](https://github.com/vanniktech)) +- Update some dependencies. [\#62](https://github.com/vanniktech/RxPermission/pull/62) ([vanniktech](https://github.com/vanniktech)) +- Update dependencies. [\#59](https://github.com/vanniktech/RxPermission/pull/59) ([vanniktech](https://github.com/vanniktech)) +- Remove sudo: false from travis config. [\#58](https://github.com/vanniktech/RxPermission/pull/58) ([vanniktech](https://github.com/vanniktech)) +- Explicitly disable Jetifier. [\#57](https://github.com/vanniktech/RxPermission/pull/57) ([vanniktech](https://github.com/vanniktech)) +- Migrate to AndroidX [\#56](https://github.com/vanniktech/RxPermission/pull/56) ([ParthPadg](https://github.com/ParthPadg)) + +Thanks to [ParthPadg](https://github.com/ParthPadg) for the AndroidX migration! Version 0.6.0 *(2018-11-02)* ---------------------------- diff --git a/README.md b/README.md index 3aa37e9..857b7f7 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.6.0' +compile 'com.vanniktech:rxpermission:0.7.0' compile 'com.vanniktech:rxpermission:0.7.0-SNAPSHOT' ``` diff --git a/gradle.properties b/gradle.properties index 64e101b..4666425 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=com.vanniktech -VERSION_NAME=0.7.0-SNAPSHOT -VERSION_CODE=6 +VERSION_NAME=0.7.0 +VERSION_CODE=7 POM_DESCRIPTION=Reactive permissions for Android