Skip to content

Commit 9af0c8c

Browse files
committed
->version 1.1.1w
1 parent 69ba999 commit 9af0c8c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

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

3-
Supported version: 1.1.1v
3+
Supported version: 1.1.1w
44

55
This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications.
66
The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1u'
@@ -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.1v https://github.com/apotocki/openssl-iosx
17+
git clone -b 1.1.1w 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.1v'
28+
pod 'openssl-iosx', '~> 1.1.1w'
2929
# or optionally more precisely
30-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1v.0'
30+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1w.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.1v.0"
3+
s.version = "1.1.1w.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_1v
8+
OPENSSL_VER=OpenSSL_1_1_1w
99
################## SETUP END
1010
#DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
1111
#SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer

0 commit comments

Comments
 (0)