Upgrade OpenSSL to 1.1.0j
This commit is contained in:
parent
6fb409b112
commit
212ef481dc
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Changed
|
||||
|
||||
- Do not redirect all traffic to VPN unless `--redirect-gateway` specified. [#90](https://github.com/keeshux/tunnelkit/issues/90)
|
||||
- Upgraded OpenSSL to 1.1.0j.
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
2
Podfile
2
Podfile
|
@ -3,7 +3,7 @@ use_frameworks!
|
|||
|
||||
abstract_target 'TunnelKit' do
|
||||
pod 'SwiftyBeaver'
|
||||
pod 'OpenSSL-Apple', '~> 1.1.0i.2'
|
||||
pod 'OpenSSL-Apple', '~> 1.1.0j.2'
|
||||
|
||||
target 'TunnelKit-iOS' do
|
||||
platform :ios, '11.0'
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
PODS:
|
||||
- OpenSSL-Apple (1.1.0i.2)
|
||||
- OpenSSL-Apple (1.1.0j.2)
|
||||
- SwiftyBeaver (1.7.0)
|
||||
|
||||
DEPENDENCIES:
|
||||
- OpenSSL-Apple (~> 1.1.0i.2)
|
||||
- OpenSSL-Apple (~> 1.1.0j.2)
|
||||
- SwiftyBeaver
|
||||
|
||||
SPEC REPOS:
|
||||
|
@ -12,9 +12,9 @@ SPEC REPOS:
|
|||
- SwiftyBeaver
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
OpenSSL-Apple: 37a8c0b04df4bb8971deef4671cc29222861319c
|
||||
OpenSSL-Apple: e88e1eb314acb4a05e2348069790c4aa49f6d319
|
||||
SwiftyBeaver: 4cc0080d2e23f980652e28978db11a5c9da39165
|
||||
|
||||
PODFILE CHECKSUM: b66d2624e26ea150d992a8457747267128054176
|
||||
PODFILE CHECKSUM: 11741e44e10fa9f2ce5b562a9390911330444ff9
|
||||
|
||||
COCOAPODS: 1.6.1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# TunnelKit
|
||||
|
||||
![iOS 11+](https://img.shields.io/badge/ios-11+-green.svg)
|
||||
[![OpenSSL 1.1.0i](https://img.shields.io/badge/openssl-1.1.0i-d69c68.svg)](https://www.openssl.org/news/openssl-1.1.0-notes.html)
|
||||
[![OpenSSL 1.1.0j](https://img.shields.io/badge/openssl-1.1.0j-d69c68.svg)](https://www.openssl.org/news/openssl-1.1.0-notes.html)
|
||||
[![License GPLv3](https://img.shields.io/badge/license-GPLv3-lightgray.svg)](LICENSE)
|
||||
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?url=https%3A%2F%2Fgithub.com%2Fkeeshux%2Ftunnelkit&via=keeshux&text=TunnelKit%2C%20a%20non-official%20%23OpenVPN%20client%20for%20%23Apple%20platforms&hashtags=iOS%2CmacOS)
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ Pod::Spec.new do |s|
|
|||
"SWIFT_INCLUDE_PATHS" => "${PODS_TARGET_SRCROOT}/TunnelKit/Sources/Core",
|
||||
"APPLICATION_EXTENSION_API_ONLY" => "YES" }
|
||||
p.dependency "SwiftyBeaver"
|
||||
p.dependency "OpenSSL-Apple", "~> 1.1.0i.2"
|
||||
p.dependency "OpenSSL-Apple", "~> 1.1.0j.2"
|
||||
p.libraries = "resolv"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue