mirror of
https://github.com/datatheorem/TrustKit.git
synced 2026-05-17 12:50:35 +00:00
Bump version number
This commit is contained in:
+4
-4
@@ -4,10 +4,10 @@ import PackageDescription
|
||||
let package = Package(
|
||||
name: "TrustKit",
|
||||
platforms: [
|
||||
.iOS(.v10),
|
||||
.macOS(.v10_12),
|
||||
.tvOS(.v10),
|
||||
.watchOS(.v3)
|
||||
.iOS(.v11),
|
||||
.macOS(.v10_13),
|
||||
.tvOS(.v11),
|
||||
.watchOS(.v4)
|
||||
],
|
||||
products: [
|
||||
.library(
|
||||
|
||||
@@ -4,7 +4,7 @@ TrustKit
|
||||
[](https://app.bitrise.io/app/fe29405fb90f94ea) [](https://github.com/Carthage/Carthage) [](https://cocoapods.org/pods/TrustKit) [](https://cocoapods.org/pods/TrustKit) [](https://en.wikipedia.org/wiki/MIT_License)
|
||||
[](https://gitter.im/TrustKit/Lobby)
|
||||
|
||||
**TrustKit** is an open source framework that makes it easy to deploy SSL public key pinning and reporting in any iOS 10+, macOS 10.10+, tvOS 10+ or watchOS 3+ App; it supports both Swift and Objective-C Apps.
|
||||
**TrustKit** is an open source framework that makes it easy to deploy SSL public key pinning and reporting in any iOS 11+, macOS 10.13+, tvOS 11+ or watchOS 4+ App; it supports both Swift and Objective-C Apps.
|
||||
|
||||
If you need SSL pinning/reporting in your Android App. we have also released **TrustKit for Android** at [https://github.com/datatheorem/TrustKit-Android](https://github.com/datatheorem/TrustKit-Android).
|
||||
|
||||
|
||||
+5
-5
@@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "TrustKit"
|
||||
s.version = "1.6.5"
|
||||
s.version = "1.7.0"
|
||||
s.summary = 'TrustKit is an open source framework that makes it easy to deploy SSL pinning in any iOS, macOS, tvOS or watchOS App.'
|
||||
s.homepage = "https://datatheorem.github.io/TrustKit"
|
||||
s.documentation_url = 'https://datatheorem.github.io/TrustKit/documentation/'
|
||||
@@ -8,10 +8,10 @@ Pod::Spec.new do |s|
|
||||
s.authors = 'Alban Diquet', 'Angela Chow', 'Eric Castro'
|
||||
s.source = { :git => "https://github.com/datatheorem/TrustKit.git", :tag => "#{s.version}" }
|
||||
|
||||
s.ios.deployment_target = '10.0'
|
||||
s.osx.deployment_target = '10.12'
|
||||
s.tvos.deployment_target = '10.0'
|
||||
s.watchos.deployment_target = '3.0'
|
||||
s.ios.deployment_target = '11.0'
|
||||
s.osx.deployment_target = '10.13'
|
||||
s.tvos.deployment_target = '11.0'
|
||||
s.watchos.deployment_target = '4.0'
|
||||
|
||||
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
|
||||
s.source_files = ['TrustKit', 'TrustKit/**/*.{h,m,c}']
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#import "TSKTrustKitConfig.h"
|
||||
|
||||
NSString * const TrustKitVersion = @"1.6.5";
|
||||
NSString * const TrustKitVersion = @"1.7.0";
|
||||
|
||||
// General keys
|
||||
const TSKGlobalConfigurationKey kTSKSwizzleNetworkDelegates = @"TSKSwizzleNetworkDelegates";
|
||||
|
||||
Reference in New Issue
Block a user