Upgrade OpenSSL-Apple to raise iOS target to 11

This commit is contained in:
Davide De Rosa 2018-09-26 10:41:59 +02:00
parent ee017c0c6c
commit b348e456a5
5 changed files with 14 additions and 12 deletions

View File

@ -21,9 +21,11 @@ and this project _will soonly adhere_ to [Semantic Versioning](https://semver.or
### Changed ### Changed
- Raised iOS target to 11 (drops 32-bit support).
- Upgraded OpenSSL from 1.1.0h to 1.1.0i.
- Minor adjustments for Xcode 10 / Swift 4.2.
- Deep refactoring of control channel for future extensibility. - Deep refactoring of control channel for future extensibility.
- App group moved out of tunnel configuration, to make it more platform-agnostic and coherent to serialize. - App group moved out of tunnel configuration, to make it more platform-agnostic and coherent to serialize.
- Minor adjustments for Xcode 10 / Swift 4.2.
- Several internal renamings. - Several internal renamings.
### Fixed ### Fixed

View File

@ -3,13 +3,13 @@ use_frameworks!
abstract_target 'TunnelKit' do abstract_target 'TunnelKit' do
pod 'SwiftyBeaver' pod 'SwiftyBeaver'
pod 'OpenSSL-Apple', '~> 1.1.0h' pod 'OpenSSL-Apple', '~> 1.1.0i'
target 'TunnelKit-iOS' do target 'TunnelKit-iOS' do
platform :ios, '9.0' platform :ios, '11.0'
end end
target 'TunnelKitHost' do target 'TunnelKitHost' do
platform :ios, '9.0' platform :ios, '11.0'
end end
target 'TunnelKit-macOS' do target 'TunnelKit-macOS' do

View File

@ -1,9 +1,9 @@
PODS: PODS:
- OpenSSL-Apple (1.1.0h) - OpenSSL-Apple (1.1.0i-v2)
- SwiftyBeaver (1.6.1) - SwiftyBeaver (1.6.1)
DEPENDENCIES: DEPENDENCIES:
- OpenSSL-Apple (~> 1.1.0h) - OpenSSL-Apple (~> 1.1.0i)
- SwiftyBeaver - SwiftyBeaver
SPEC REPOS: SPEC REPOS:
@ -12,9 +12,9 @@ SPEC REPOS:
- SwiftyBeaver - SwiftyBeaver
SPEC CHECKSUMS: SPEC CHECKSUMS:
OpenSSL-Apple: cd153d705ef350eb834ae7ff5f21f792b51ed208 OpenSSL-Apple: a93b8f2eec8783ff40d9a9304de180ab68bb647c
SwiftyBeaver: ccfcdf85a04d429f1633f668650b0ce8020bda3a SwiftyBeaver: ccfcdf85a04d429f1633f668650b0ce8020bda3a
PODFILE CHECKSUM: db783bdfb06f72df39d3c99df20aafdb51e0f7c6 PODFILE CHECKSUM: 7cd71c5bc177daedf9933b9428b39c0c9ffae5a6
COCOAPODS: 1.5.3 COCOAPODS: 1.6.0.beta.1

View File

@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s.author = { "Davide De Rosa" => "keeshux@gmail.com" } s.author = { "Davide De Rosa" => "keeshux@gmail.com" }
s.source = { :git => "https://github.com/keeshux/tunnelkit.git", :tag => "v#{s.version}" } s.source = { :git => "https://github.com/keeshux/tunnelkit.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "9.0" s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.11" s.osx.deployment_target = "10.11"
s.subspec "Core" do |p| s.subspec "Core" do |p|

View File

@ -809,7 +809,7 @@
files = ( files = (
); );
inputPaths = ( inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-TunnelKit-TunnelKitHost/Pods-TunnelKit-TunnelKitHost-frameworks.sh", "${PODS_ROOT}/Target Support Files/Pods-TunnelKit-TunnelKitHost/Pods-TunnelKit-TunnelKitHost-frameworks.sh",
"${PODS_ROOT}/OpenSSL-Apple/frameworks/iPhone/openssl.framework", "${PODS_ROOT}/OpenSSL-Apple/frameworks/iPhone/openssl.framework",
"${BUILT_PRODUCTS_DIR}/SwiftyBeaver-iOS/SwiftyBeaver.framework", "${BUILT_PRODUCTS_DIR}/SwiftyBeaver-iOS/SwiftyBeaver.framework",
); );
@ -820,7 +820,7 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-TunnelKit-TunnelKitHost/Pods-TunnelKit-TunnelKitHost-frameworks.sh\"\n"; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TunnelKit-TunnelKitHost/Pods-TunnelKit-TunnelKitHost-frameworks.sh\"\n";
showEnvVarsInLog = 0; showEnvVarsInLog = 0;
}; };
/* End PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */