Update TunnelKit for TLS errors
This commit is contained in:
parent
006f1f0a25
commit
cedd46d5d3
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 1.6.0 Beta 1798 (2019-04-26)
|
||||
## 1.6.0 Beta 1803 (2019-04-27)
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- SoftEther connects without VPN icon. [#69](https://github.com/passepartoutvpn/passepartout-ios/issues/69)
|
||||
- Misleading Mullvad password suggestion. [#75](https://github.com/passepartoutvpn/passepartout-ios/issues/75)
|
||||
- Leave digest editable despite cipher. [#74](https://github.com/passepartoutvpn/passepartout-ios/issues/74)
|
||||
- TLS errors with passphrase-protected .ovpn profiles. [tunnelkit#91](https://github.com/keeshux/tunnelkit/issues/91)
|
||||
|
||||
## 1.5.0 (2019-04-17)
|
||||
|
||||
|
|
4
Podfile
4
Podfile
|
@ -5,8 +5,8 @@ use_frameworks!
|
|||
def shared_pods
|
||||
#pod 'TunnelKit', '~> 1.6.2'
|
||||
#pod 'TunnelKit/LZO', '~> 1.6.2'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '6fb409b'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '6fb409b'
|
||||
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => 'a48bcc7'
|
||||
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => 'a48bcc7'
|
||||
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
|
||||
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
|
||||
pod 'SSZipArchive'
|
||||
|
|
18
Podfile.lock
18
Podfile.lock
|
@ -1,6 +1,6 @@
|
|||
PODS:
|
||||
- MBProgressHUD (1.1.0)
|
||||
- OpenSSL-Apple (1.1.0i.2)
|
||||
- OpenSSL-Apple (1.1.0j.2)
|
||||
- SSZipArchive (2.1.4)
|
||||
- SwiftyBeaver (1.7.0)
|
||||
- TunnelKit (1.6.3):
|
||||
|
@ -10,15 +10,15 @@ PODS:
|
|||
- SwiftyBeaver
|
||||
- TunnelKit/Core
|
||||
- TunnelKit/Core (1.6.3):
|
||||
- OpenSSL-Apple (~> 1.1.0i.2)
|
||||
- OpenSSL-Apple (~> 1.1.0j.2)
|
||||
- SwiftyBeaver
|
||||
- TunnelKit/LZO (1.6.3)
|
||||
|
||||
DEPENDENCIES:
|
||||
- MBProgressHUD
|
||||
- SSZipArchive
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `6fb409b`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `6fb409b`)
|
||||
- TunnelKit (from `https://github.com/keeshux/tunnelkit`, commit `a48bcc7`)
|
||||
- TunnelKit/LZO (from `https://github.com/keeshux/tunnelkit`, commit `a48bcc7`)
|
||||
|
||||
SPEC REPOS:
|
||||
https://github.com/cocoapods/specs.git:
|
||||
|
@ -29,21 +29,21 @@ SPEC REPOS:
|
|||
|
||||
EXTERNAL SOURCES:
|
||||
TunnelKit:
|
||||
:commit: 6fb409b
|
||||
:commit: a48bcc7
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
CHECKOUT OPTIONS:
|
||||
TunnelKit:
|
||||
:commit: 6fb409b
|
||||
:commit: a48bcc7
|
||||
:git: https://github.com/keeshux/tunnelkit
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9
|
||||
OpenSSL-Apple: 37a8c0b04df4bb8971deef4671cc29222861319c
|
||||
OpenSSL-Apple: e88e1eb314acb4a05e2348069790c4aa49f6d319
|
||||
SSZipArchive: 41455d4b8d2b6ab93990820b50dc697c2554a322
|
||||
SwiftyBeaver: 4cc0080d2e23f980652e28978db11a5c9da39165
|
||||
TunnelKit: bd03e1065328e8f86ba71468103f2c19425dd805
|
||||
TunnelKit: ac8dad986e36e513303ed5d258c7e4aedb45c84b
|
||||
|
||||
PODFILE CHECKSUM: d8a07fd1d01c34669536cb70e84761036132e852
|
||||
PODFILE CHECKSUM: a8aae8f09146e0cb7232fbcaec58a54c497e275d
|
||||
|
||||
COCOAPODS: 1.6.1
|
||||
|
|
Loading…
Reference in New Issue