Skip to content

Commit 08ea300

Browse files
committed
version upgrade: 3.1.3 and Target update: iOS 12+
1 parent d9a0c31 commit 08ea300

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

BiometricAuthentication.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "BiometricAuthentication"
4-
s.version = "3.1.2"
4+
s.version = "3.1.3"
55

66
s.summary = "Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication."
77

@@ -17,7 +17,7 @@ s.license = { :type => "MIT", :file => "LICENSE" }
1717
s.author = { "Rushi Sangani" => "rushisangani@gmail.com" }
1818
s.source = { :git => "https://github.com/rushisangani/BiometricAuthentication.git", :tag => "v#{s.version}" }
1919

20-
s.ios.deployment_target = '8.0'
20+
s.ios.deployment_target = '12.0'
2121
s.source_files = "BiometricAuthentication/**/*.swift"
2222

2323
s.requires_arc = true

BiometricAuthentication/BiometricAuthentication.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
302302
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 13.1;
303303
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
304-
MARKETING_VERSION = 3.1.2;
304+
MARKETING_VERSION = 3.1.3;
305305
PRODUCT_BUNDLE_IDENTIFIER = com.rushi.BiometricAuthentication;
306306
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
307307
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -326,7 +326,7 @@
326326
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
327327
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 13.1;
328328
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
329-
MARKETING_VERSION = 3.1.2;
329+
MARKETING_VERSION = 3.1.3;
330330
PRODUCT_BUNDLE_IDENTIFIER = com.rushi.BiometricAuthentication;
331331
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
332332
PROVISIONING_PROFILE_SPECIFIER = "";

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
let package = Package(
55
name: "BiometricAuthentication",
66
platforms: [
7-
.iOS(.v8),
7+
.iOS(.v12),
88
],
99
products: [
1010
.library(name: "BiometricAuthentication", targets: ["BiometricAuthentication"])

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It's very simple and easy to use that handles Touch ID and Face ID authenticatio
88
<string>This app requires Face ID permission to authenticate using Face recognition.</string>
99
```
1010

11-
### What's new in version 3.0
11+
### What's new in version 3.1
1212
- Updated to Swift 5.0
1313
- Implemented **Result** type as completion callback
1414

@@ -19,7 +19,7 @@ It's very simple and easy to use that handles Touch ID and Face ID authenticatio
1919
```swift
2020

2121
// set this before calling authenticateWithBioMetrics method (optional)
22-
BioMetricAuthenticator.shared.allowableReuseDuration = 60 //(iOS 9.0 or later)
22+
BioMetricAuthenticator.shared.allowableReuseDuration = 60
2323
```
2424

2525
### Version 2.1
@@ -38,8 +38,8 @@ BioMetricAuthenticator.shared.allowableReuseDuration = 60 //(iOS 9.0 or later)
3838

3939
## Requirements
4040

41-
- iOS 8.0+
42-
- Xcode 8+
41+
- iOS 12.0+
42+
- Xcode 10+
4343
- Swift 3.0+
4444

4545
## Installation

0 commit comments

Comments
 (0)