Skip to content

Commit 23ddbc4

Browse files
committed
version 1.1.1t
1 parent c152105 commit 23ddbc4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Build
1616
run: |
1717
scripts/build.sh
18-
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
18+
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
1919
cd frameworks
2020
mv Headers include
2121
zip -9 -r include.zip include

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
22

3-
Supported version: 1.1.1s
3+
Supported version: 1.1.1t
44

55
This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications.
6-
The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1s'
6+
The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1t'
77

88
## Prerequisites
99
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
1414
- Manually
1515
```
1616
# clone the repo
17-
git clone -b 1.1.1s https://github.com/apotocki/openssl-iosx
17+
git clone -b 1.1.1t https://github.com/apotocki/openssl-iosx
1818
1919
# build libraries
2020
cd openssl-iosx
@@ -25,9 +25,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
2525
- Use cocoapods. Add the following lines into your project's Podfile:
2626
```
2727
use_frameworks!
28-
pod 'openssl-iosx', '~> 1.1.1s'
28+
pod 'openssl-iosx', '~> 1.1.1t'
2929
# or optionally more precisely
30-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1s.1'
30+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1t.0'
3131
```
3232
install new dependency:
3333
```

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 = "1.1.1s.1"
3+
s.version = "1.1.1t.0"
44
s.summary = "OpenSSL"
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_1_1_1s
8+
OPENSSL_VER=OpenSSL_1_1_1t
99
################## SETUP END
1010
#DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
1111
#SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer

0 commit comments

Comments
 (0)