From ce1f6b70270ec9d7626b72568239579c6f6bab31 Mon Sep 17 00:00:00 2001 From: Niklas Baudy Date: Fri, 19 Aug 2022 20:07:48 +0200 Subject: [PATCH] Prepare version 0.10.0 --- CHANGELOG.md | 6 ++++-- README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1edb352..c306f7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Change Log -Version 0.10.0 *(In development)* ---------------------------------- +Version 0.10.0 *(2022-08-19)* +----------------------------- + +- RxPermission: Fix return type of request & requestEach. Always non-null. [\#106](https://github.com/vanniktech/RxPermission/pull/106) ([vanniktech](https://github.com/vanniktech)) Version 0.9.0 *(2022-08-18)* ---------------------------- diff --git a/README.md b/README.md index 2946032..ada6386 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 -implementation 'com.vanniktech:rxpermission:0.9.0' +implementation 'com.vanniktech:rxpermission:0.10.0' implementation 'com.vanniktech:rxpermission:0.10.0-SNAPSHOT' ``` @@ -83,7 +83,7 @@ RealRxPermission.getInstance(application) In addition the library offers you a `MockRxPermission` that can be used for testing. ```gradle -implementation 'com.vanniktech:rxpermission-testing:0.9.0' +implementation 'com.vanniktech:rxpermission-testing:0.10.0' ``` The constructor takes a vararg of Permissions. diff --git a/gradle.properties b/gradle.properties index cf0c4b3..8d053ef 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.vanniktech -VERSION_NAME=0.10.0-SNAPSHOT +VERSION_NAME=0.10.0 POM_DESCRIPTION=Reactive permissions for Android