Skip to content

Commit

Permalink
Merge pull request #101 from iosphere/release/2.1.1
Browse files Browse the repository at this point in the history
Prepare 2.1.1 patch release
  • Loading branch information
Sebastian Hagedorn authored Sep 5, 2018
2 parents a7a14ef + 31aae4f commit 7dcc751
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# <img src="icon.png" align="center" width="40" height="40"> Changelog

## 2.1
## 2.1.1

* Deprecate social permissions
* Add debug hint when missing 'NSLocationAlwaysAndWhenInUseUsageDescription'

## 2.1.0

* Ready for Xcode 10 and iOS 12
* Bump deployment target to iOS 9
Expand Down
2 changes: 1 addition & 1 deletion ISHPermissionKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'ISHPermissionKit'
s.version = '2.1.0'
s.version = '2.1.1'
s.summary = 'A polite and unified way of asking for permission on iOS.'
s.description = 'This framework provides a unified way of asking for user permissions on iOS. It also
provides UI to explain the permission requirements before presenting the system
Expand Down
6 changes: 3 additions & 3 deletions ISHPermissionKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ISH_BUNDLE_VERSION_MAJOR = 2;
ISH_BUNDLE_VERSION_MINOR = 1;
ISH_BUNDLE_VERSION_PATCH = 0;
ISH_BUNDLE_VERSION_PATCH = 1;
ISH_BUNDLE_VERSION_SHORT = "${ISH_BUNDLE_VERSION_MAJOR}.${ISH_BUNDLE_VERSION_MINOR}.${ISH_BUNDLE_VERSION_PATCH}";
METAL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -788,7 +788,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ISH_BUNDLE_VERSION_MAJOR = 2;
ISH_BUNDLE_VERSION_MINOR = 1;
ISH_BUNDLE_VERSION_PATCH = 0;
ISH_BUNDLE_VERSION_PATCH = 1;
ISH_BUNDLE_VERSION_SHORT = "${ISH_BUNDLE_VERSION_MAJOR}.${ISH_BUNDLE_VERSION_MINOR}.${ISH_BUNDLE_VERSION_PATCH}";
METAL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -846,7 +846,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ISH_BUNDLE_VERSION_MAJOR = 2;
ISH_BUNDLE_VERSION_MINOR = 1;
ISH_BUNDLE_VERSION_PATCH = 0;
ISH_BUNDLE_VERSION_PATCH = 1;
ISH_BUNDLE_VERSION_SHORT = "${ISH_BUNDLE_VERSION_MAJOR}.${ISH_BUNDLE_VERSION_MINOR}.${ISH_BUNDLE_VERSION_PATCH}";
METAL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
Expand Down
6 changes: 3 additions & 3 deletions ISHPermissionKit/ISHPermissionCategory.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ typedef NS_ENUM(NSUInteger, ISHPermissionCategory) {
* ISHPermissionsViewController with WhenInUse before Always.
*
* The app must also provide a localized NSLocationAlwaysUsageDescription
* in the Info PLIST. Please consult the app review guidelines for special
* requirements for apps that access location data, specifically section
* 5.1 (Privacy).
* and NSLocationAlwaysAndWhenInUseUsageDescription in the Info PLIST.
* Please consult the app review guidelines for special requirements for
* apps that access location data, specifically section 5.1 (Privacy).
*
* To enable this category, you must set the preprocessor flag
* ISHPermissionRequestLocationEnabled. This will link CoreLocation.
Expand Down

0 comments on commit 7dcc751

Please sign in to comment.