Skip to content

Commit

Permalink
version upgrade: 3.1.3 and Target update: iOS 12+
Browse files Browse the repository at this point in the history
  • Loading branch information
rushisangani committed Oct 14, 2020
1 parent d9a0c31 commit 08ea300
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions BiometricAuthentication.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "BiometricAuthentication"
s.version = "3.1.2"
s.version = "3.1.3"

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

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

s.ios.deployment_target = '8.0'
s.ios.deployment_target = '12.0'
s.source_files = "BiometricAuthentication/**/*.swift"

s.requires_arc = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 13.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 3.1.2;
MARKETING_VERSION = 3.1.3;
PRODUCT_BUNDLE_IDENTIFIER = com.rushi.BiometricAuthentication;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -326,7 +326,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
"IPHONEOS_DEPLOYMENT_TARGET[sdk=macosx*]" = 13.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 3.1.2;
MARKETING_VERSION = 3.1.3;
PRODUCT_BUNDLE_IDENTIFIER = com.rushi.BiometricAuthentication;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
let package = Package(
name: "BiometricAuthentication",
platforms: [
.iOS(.v8),
.iOS(.v12),
],
products: [
.library(name: "BiometricAuthentication", targets: ["BiometricAuthentication"])
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It's very simple and easy to use that handles Touch ID and Face ID authenticatio
<string>This app requires Face ID permission to authenticate using Face recognition.</string>
```

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

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

// set this before calling authenticateWithBioMetrics method (optional)
BioMetricAuthenticator.shared.allowableReuseDuration = 60 //(iOS 9.0 or later)
BioMetricAuthenticator.shared.allowableReuseDuration = 60
```

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

## Requirements

- iOS 8.0+
- Xcode 8+
- iOS 12.0+
- Xcode 10+
- Swift 3.0+

## Installation
Expand Down

0 comments on commit 08ea300

Please sign in to comment.