Skip to content

Commit ee23a96

Browse files
committed
version 3.1.5
1 parent 1d324ea commit ee23a96

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
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: 3.1.4
3+
Supported version: 3.1.5
44

5-
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-3.1.4'
5+
This repository provides a universal script for building static OpenSSL libraries for use in iOS and macOS applications.
6+
The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.1.5'
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 3.1.4 https://github.com/apotocki/openssl-iosx
17+
git clone -b 3.1.5 https://github.com/apotocki/openssl-iosx
1818
1919
# build libraries
2020
cd openssl-iosx
@@ -25,21 +25,21 @@ 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', '~> 3.1.4'
28+
pod 'openssl-iosx', '~> 3.1.5'
2929
# or optionally more precisely
30-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.4.0'
30+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.5.0'
3131
```
3232
install new dependency:
3333
```
3434
pod install --verbose
3535
```
3636

3737
## As an advertisement…
38-
Look at my iOS application on App Store, please:
38+
Please check out my iOS application on the App Store:
3939

4040
[<table align="center" border=0 cellspacing=0 cellpadding=0><tr><td><img src="https://is4-ssl.mzstatic.com/image/thumb/Purple112/v4/78/d6/f8/78d6f802-78f6-267a-8018-751111f52c10/AppIcon-0-1x_U007emarketing-0-10-0-85-220.png/460x0w.webp" width="70"/></td><td><a href="https://apps.apple.com/us/app/potohex/id1620963302">PotoHEX</a><br>HEX File Viewer & Editor</td><tr></table>]()
4141

42-
This app is designed for viewing and editing files at byte or character level.
42+
This application is designed to view and edit files at the byte or character level; calculate different hashes, encode/decode, and compress/decompress desired byte regions.
4343

4444
You can support my open-source development by trying the [App](https://apps.apple.com/us/app/potohex/id1620963302).
4545

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.1.4.0"
3+
s.version = "3.1.5.0"
44
s.summary = "OpenSSL"
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.1.4
8+
OPENSSL_VER=openssl-3.1.5
99
################## SETUP END
1010
#DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
1111
#SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer

0 commit comments

Comments
 (0)