Skip to content

Commit 760e47b

Browse files
committed
version 3.3.3
1 parent 05db0b5 commit 760e47b

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
[<img src="https://api.gitsponsors.com/api/badge/img?id=325850458" height="50">](https://api.gitsponsors.com/api/badge/link?p=Qf7dHIzVXuwETf3oKR9yejULvHntzJV39eKpgyDXlxMDeRKfRgTXBnp24UT0aohucuOue6QQIj1o3sIHMiXZDcohgcSfIL13KS2X8SzEAljxhOoPOa+hY65B0F/xEvRclBtUeCvEKLRSLHtnWv+HbA==)
2+
13
## OpenSSL for iOS, visionOS, macOS (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
24

3-
Supported version: 3.3.2
5+
Supported version: 3.3.3
46

57
This repository provides a universal script for building static OpenSSL libraries for use in iOS, visionOS, and macOS & Catalyst applications.
6-
The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.3.2'
8+
The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.3.3'
79

810
## Prerequisites
911
1) Xcode must be installed because xcodebuild is used to create xcframeworks
@@ -15,7 +17,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
1517
- Manually
1618
```
1719
# clone the repo
18-
git clone -b 3.3.2 https://github.com/apotocki/openssl-iosx
20+
git clone -b 3.3.3 https://github.com/apotocki/openssl-iosx
1921
2022
# build libraries
2123
cd openssl-iosx
@@ -26,9 +28,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
2628
- Use cocoapods. Add the following lines into your project's Podfile:
2729
```
2830
use_frameworks!
29-
pod 'openssl-iosx', '~> 3.3.2'
31+
pod 'openssl-iosx', '~> 3.3.3'
3032
# or optionally more precisely
31-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.3.2.0'
33+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.3.3.0'
3234
```
3335
install new dependency:
3436
```

openssl-iosx.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "openssl-iosx"
3-
s.version = "3.3.2.0"
3+
s.version = "3.3.3.0"
44
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."
55
s.homepage = "https://github.com/apotocki/openssl-iosx"
66
s.license = "Apache"

scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}')
66
HOST_ARC=$( uname -m )
77
XCODE_ROOT=$( xcode-select -print-path )
8-
OPENSSL_VER=openssl-3.3.2
8+
OPENSSL_VER=openssl-3.3.3
99
#MACOSX_VERSION_ARM=12.3
1010
#MACOSX_VERSION_X86_64=10.13
1111
################## SETUP END

0 commit comments

Comments
 (0)