From 308443bf4be3ff5b8ee32e4cd953a3c06e86c5b6 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Mon, 18 Apr 2016 21:39:07 -0700 Subject: [PATCH] Updated library version to 0.2.0. --- README.md | 4 ++-- permiso/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b7e3da1..9f9c303 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Gradle ------ ```java dependencies { - compile 'com.greysonparrelli.permiso:permiso:0.1.3' + compile 'com.greysonparrelli.permiso:permiso:0.2.0' } ``` @@ -109,7 +109,7 @@ public void onRationaleRequested(Permiso.IOnRationaleProvided callback, String.. **I want to do some complicated logic with the results of my permission request, but the ResultSet doesn't let me.** -Fear not! The ```ResultSet``` object has a method called ```toMap()```, which will give you back a mapping of permissions -> booleans that you can iterate over to your heart's content. +Fear not! The ```ResultSet``` object has a method called ```toMap()```, which will give you back a mapping of permissions -> ```Permiso.Result``` that you can iterate over to your heart's content. **What do you mean when you say that Permiso merges simultaneous requests for the same permission into a single request?** diff --git a/permiso/build.gradle b/permiso/build.gradle index fef98c3..88b799f 100644 --- a/permiso/build.gradle +++ b/permiso/build.gradle @@ -13,7 +13,7 @@ ext { siteUrl = 'https://github.com/greysonp/permiso' gitUrl = 'https://github.com/greysonp/permiso.git' - libraryVersion = '0.1.3' + libraryVersion = '0.2.0' developerId = 'greysonp' developerName = 'Greyson Parrelli'