Skip to content

Commit

Permalink
bump version, update podspec, update Xcode demo app
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-dt committed Mar 15, 2023
1 parent 5c7e991 commit 2b21abe
Show file tree
Hide file tree
Showing 10 changed files with 743 additions and 717 deletions.
10 changes: 5 additions & 5 deletions TrustKit.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = "TrustKit"
s.version = "2.0.1"
s.version = "3.0.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/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Alban Diquet', 'Angela Chow', 'Eric Castro'
s.source = { :git => "https://github.com/datatheorem/TrustKit.git", :tag => "#{s.version}" }

s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.tvos.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.source_files = ['TrustKit', 'TrustKit/**/*.{h,m,c}']
Expand Down
2 changes: 1 addition & 1 deletion TrustKit/Pinning/pinning_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
This function invokes SecTrustEvaluateWithError().
@param trust The trust management object to evaluate
@param serverTrust The trust management object to evaluate
@param error An error pointer the method uses to return an error when trust evaluation fails with the certificate chain. Set to nil to ignore the error.
@return A boolean value indicating whether the certificate is trusted according to the certificate chain of the trust object
*/
Expand Down
2 changes: 1 addition & 1 deletion TrustKit/TSKTrustKitConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#import "TSKTrustKitConfig.h"

NSString * const TrustKitVersion = @"2.0.1";
NSString * const TrustKitVersion = @"3.0.0";

// General keys
const TSKGlobalConfigurationKey kTSKSwizzleNetworkDelegates = @"TSKSwizzleNetworkDelegates";
Expand Down
2 changes: 1 addition & 1 deletion TrustKitDemo/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
platform :ios, '14.0'

target 'TrustKitDemo-ObjC' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
Expand Down
6 changes: 3 additions & 3 deletions TrustKitDemo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- TrustKit (2.0.1)
- TrustKit (3.0.0)

DEPENDENCIES:
- TrustKit (from `../`)
Expand All @@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
TrustKit: dad4c3a08248c21fcb9a3b5be3c2e2b9d4f9b973
TrustKit: fc7f4720360f26550b77e9c6528ee8e966cf30bf

PODFILE CHECKSUM: 93bb7b02a785f8fcf3891e17022eecb2a9df0207
PODFILE CHECKSUM: 89182e75d6c55fb4fa9b097fad3dc89b9092ffd4

COCOAPODS: 1.11.3
1 change: 1 addition & 0 deletions TrustKitDemo/Pods/Headers/Private/TrustKit/pinning_utils.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions TrustKitDemo/Pods/Local Podspecs/TrustKit.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions TrustKitDemo/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,417 changes: 721 additions & 696 deletions TrustKitDemo/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2b21abe

Please sign in to comment.