Upgrade pods to Swift 5
This commit is contained in:
parent
2cd9857033
commit
4ab70ea747
|
@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Siri Shortcuts in-app manager. [#46](https://github.com/passepartoutvpn/passepartout-ios/pull/46)
|
- Siri Shortcuts in-app manager. [#46](https://github.com/passepartoutvpn/passepartout-ios/pull/46)
|
||||||
- Background data count updates in diagnostics. [#51](https://github.com/passepartoutvpn/passepartout-ios/pull/51)
|
- Background data count updates in diagnostics. [#51](https://github.com/passepartoutvpn/passepartout-ios/pull/51)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Upgraded to Swift 5.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- EKU not verified with providers (regression).
|
- EKU not verified with providers (regression).
|
||||||
|
|
4
Podfile
4
Podfile
|
@ -5,8 +5,8 @@ use_frameworks!
|
||||||
def shared_pods
|
def shared_pods
|
||||||
#pod 'TunnelKit', '~> 1.5.0'
|
#pod 'TunnelKit', '~> 1.5.0'
|
||||||
#pod 'TunnelKit/LZO', '~> 1.5.0'
|
#pod 'TunnelKit/LZO', '~> 1.5.0'
|
||||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '7629147'
|
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '93a7729'
|
||||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '7629147'
|
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '93a7729'
|
||||||
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
||||||
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
|
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
|
||||||
end
|
end
|
||||||
|
|
14
Podfile.lock
14
Podfile.lock
|
@ -1,7 +1,7 @@
|
||||||
PODS:
|
PODS:
|
||||||
- MBProgressHUD (1.1.0)
|
- MBProgressHUD (1.1.0)
|
||||||
- OpenSSL-Apple (1.1.0i.2)
|
- OpenSSL-Apple (1.1.0i.2)
|
||||||
- SwiftyBeaver (1.6.2)
|
- SwiftyBeaver (1.7.0)
|
||||||
- TunnelKit (1.5.2):
|
- TunnelKit (1.5.2):
|
||||||
- TunnelKit/AppExtension (= 1.5.2)
|
- TunnelKit/AppExtension (= 1.5.2)
|
||||||
- TunnelKit/Core (= 1.5.2)
|
- TunnelKit/Core (= 1.5.2)
|
||||||
|
@ -15,8 +15,8 @@ PODS:
|
||||||
|
|
||||||
DEPENDENCIES:
|
DEPENDENCIES:
|
||||||
- MBProgressHUD
|
- MBProgressHUD
|
||||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `7629147`)
|
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `93a7729`)
|
||||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `7629147`)
|
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `93a7729`)
|
||||||
|
|
||||||
SPEC REPOS:
|
SPEC REPOS:
|
||||||
https://github.com/cocoapods/specs.git:
|
https://github.com/cocoapods/specs.git:
|
||||||
|
@ -26,20 +26,20 @@ SPEC REPOS:
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
EXTERNAL SOURCES:
|
||||||
TunnelKit:
|
TunnelKit:
|
||||||
:commit: '7629147'
|
:commit: 93a7729
|
||||||
:git: https://github.com/keeshux/tunnelkit
|
:git: https://github.com/keeshux/tunnelkit
|
||||||
|
|
||||||
CHECKOUT OPTIONS:
|
CHECKOUT OPTIONS:
|
||||||
TunnelKit:
|
TunnelKit:
|
||||||
:commit: '7629147'
|
:commit: 93a7729
|
||||||
:git: https://github.com/keeshux/tunnelkit
|
:git: https://github.com/keeshux/tunnelkit
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
SPEC CHECKSUMS:
|
||||||
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9
|
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9
|
||||||
OpenSSL-Apple: 37a8c0b04df4bb8971deef4671cc29222861319c
|
OpenSSL-Apple: 37a8c0b04df4bb8971deef4671cc29222861319c
|
||||||
SwiftyBeaver: 8e67ab3cd94389cbbb7a9c7cc02748d98bfee68e
|
SwiftyBeaver: 4cc0080d2e23f980652e28978db11a5c9da39165
|
||||||
TunnelKit: 9d8089c4600ea9b3a54841391b4969f2faa9c17f
|
TunnelKit: 9d8089c4600ea9b3a54841391b4969f2faa9c17f
|
||||||
|
|
||||||
PODFILE CHECKSUM: 9eecc4d4e6e2db030ea55454fab1fb4bdf99d377
|
PODFILE CHECKSUM: 6010aa429513f9c70c23f9087ac02d60b1a183b6
|
||||||
|
|
||||||
COCOAPODS: 1.6.1
|
COCOAPODS: 1.6.1
|
||||||
|
|
|
@ -73,7 +73,7 @@ You can find details on what may or may not work in the related section of the [
|
||||||
### Requirements
|
### Requirements
|
||||||
|
|
||||||
- iOS 11.0+
|
- iOS 11.0+
|
||||||
- Xcode 10+ (Swift 4.2)
|
- Xcode 10+ (Swift 5)
|
||||||
- Git (preinstalled with Xcode Command Line Tools)
|
- Git (preinstalled with Xcode Command Line Tools)
|
||||||
- Ruby (preinstalled with macOS)
|
- Ruby (preinstalled with macOS)
|
||||||
- [CocoaPods 1.6.0][dep-cocoapods]
|
- [CocoaPods 1.6.0][dep-cocoapods]
|
||||||
|
|
Loading…
Reference in New Issue