Skip to content

Commit

Permalink
version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apotocki committed Apr 9, 2024
1 parent b02e5ed commit b28beca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.3.0

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.3.0'

## Prerequisites
1) Xcode must be installed because xcodebuild is used to create xcframeworks
Expand All @@ -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.3.0 https://github.com/apotocki/openssl-iosx
# build libraries
cd openssl-iosx
Expand All @@ -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.3.0'
# 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.3.0.0'
```
install new dependency:
```
Expand Down
2 changes: 1 addition & 1 deletion openssl-iosx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "openssl-iosx"
s.version = "3.2.1.1"
s.version = "3.3.0.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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0
#MACOSX_VERSION_ARM=12.3
#MACOSX_VERSION_X86_64=10.13
################## SETUP END
Expand Down

0 comments on commit b28beca

Please sign in to comment.