diff --git a/README.md b/README.md index d49ed63..af66d13 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ ## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64 -Supported version: 3.1.3 +Supported version: 3.1.4 This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications. -The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.1.3' +The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.1.4' ## Prerequisites 1) Xcode must be installed because xcodebuild is used to create xcframeworks @@ -14,7 +14,7 @@ The actual library version is taken from https://github.com/openssl/openssl with - Manually ``` # clone the repo - git clone -b 3.1.3 https://github.com/apotocki/openssl-iosx + git clone -b 3.1.4 https://github.com/apotocki/openssl-iosx # build libraries cd openssl-iosx @@ -25,9 +25,9 @@ The actual library version is taken from https://github.com/openssl/openssl with - Use cocoapods. Add the following lines into your project's Podfile: ``` use_frameworks! - pod 'openssl-iosx', '~> 3.1.3' + pod 'openssl-iosx', '~> 3.1.4' # or optionally more precisely - # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.3.0' + # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.4.0' ``` install new dependency: ``` diff --git a/openssl-iosx.podspec b/openssl-iosx.podspec index a8b8de1..d59ba62 100644 --- a/openssl-iosx.podspec +++ b/openssl-iosx.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "openssl-iosx" - s.version = "3.1.3.0" + s.version = "3.1.4.0" s.summary = "OpenSSL" s.homepage = "https://github.com/apotocki/openssl-iosx" s.license = "Apache" diff --git a/scripts/build.sh b/scripts/build.sh index 091d69d..8c05b90 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -5,7 +5,7 @@ set -e THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}') HOST_ARC=$( uname -m ) XCODE_ROOT=$( xcode-select -print-path ) -OPENSSL_VER=openssl-3.1.3 +OPENSSL_VER=openssl-3.1.4 ################## SETUP END #DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer #SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer