From bb49eeffc8db4e732c9a1387e62b6ae09adbd0b4 Mon Sep 17 00:00:00 2001 From: apotocki Date: Fri, 21 Jun 2024 15:58:09 +0200 Subject: [PATCH] version 3.2.2 --- README.md | 10 +++++----- openssl-iosx.podspec | 2 +- scripts/build.sh | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f07e57b..19a655a 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ ## OpenSSL for iOS, visionOS, macOS (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64 -Supported version: 3.2.1 +Supported version: 3.2.2 This repository provides a universal script for building static OpenSSL libraries for use in iOS, visionOS, and macOS & Catalyst applications. -The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.2.1' +The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.2.2' ## Prerequisites 1) Xcode must be installed because xcodebuild is used to create xcframeworks @@ -15,7 +15,7 @@ The actual library version is taken from https://github.com/openssl/openssl with - Manually ``` # clone the repo - git clone -b 3.2.1 https://github.com/apotocki/openssl-iosx + git clone -b 3.2.2 https://github.com/apotocki/openssl-iosx # build libraries cd openssl-iosx @@ -26,9 +26,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.2.1' + pod 'openssl-iosx', '~> 3.2.2' # or optionally more precisely - # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.2.1.1' + # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.2.2.0' ``` install new dependency: ``` diff --git a/openssl-iosx.podspec b/openssl-iosx.podspec index d8917e0..a4c4473 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.2.1.1" + s.version = "3.2.2.0" s.summary = "OpenSSL libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator." s.homepage = "https://github.com/apotocki/openssl-iosx" s.license = "Apache" diff --git a/scripts/build.sh b/scripts/build.sh index 114393b..6f2d6bc 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.2.1 +OPENSSL_VER=openssl-3.2.2 #MACOSX_VERSION_ARM=12.3 #MACOSX_VERSION_X86_64=10.13 ################## SETUP END