Skip to content

Commit 6d59179

Browse files
committed
version 3.5.0
1 parent 9d91118 commit 6d59179

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## OpenSSL for iOS, visionOS, macOS (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
44

5-
Supported version: 3.4.1
5+
Supported version: 3.5.0
66

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

1010
## Prerequisites
1111
1) Xcode must be installed because xcodebuild is used to create xcframeworks
@@ -17,7 +17,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
1717
- Manually
1818
```
1919
# clone the repo
20-
git clone -b 3.4.1 https://github.com/apotocki/openssl-iosx
20+
git clone -b 3.5.0 https://github.com/apotocki/openssl-iosx
2121
2222
# build libraries
2323
cd openssl-iosx
@@ -28,9 +28,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
2828
- Use cocoapods. Add the following lines into your project's Podfile:
2929
```
3030
use_frameworks!
31-
pod 'openssl-iosx', '~> 3.4.1'
31+
pod 'openssl-iosx', '~> 3.5.0'
3232
# or optionally more precisely
33-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.4.1.0'
33+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.5.0.0'
3434
```
3535
install new dependency:
3636
```

openssl-iosx.podspec

Lines changed: 1 addition & 1 deletion
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.4.1.0"
3+
s.version = "3.5.0.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

Lines changed: 1 addition & 1 deletion
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.4.1
8+
OPENSSL_VER=openssl-3.5.0
99
#MACOSX_VERSION_ARM=12.3
1010
#MACOSX_VERSION_X86_64=10.13
1111
################## SETUP END

0 commit comments

Comments
 (0)