Skip to content

Commit 1d14f27

Browse files
committed
version 1.89.0
1 parent 753e91b commit 1d14f27

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Boost C++ for iOS, watchOS, tvOS, visionOS, macOS, Catalyst, Simulators - Intel(x86_64) / Apple Silicon(arm64)
22

3-
Supported version: 1.88.0 (use the appropriate tag to select the version)
3+
Supported version: 1.89.0 (use the appropriate tag to select the version)
44

55
This repo provides a universal script for building static Boost C++ libraries for use in iOS, watchOS, tvOS, visionOS, and macOS & Catalyst applications.
66

@@ -50,7 +50,7 @@ graph_parallel, mpi, python
5050
# Build Manually
5151
```
5252
# clone the repo
53-
git clone -b 1.88.0 https://github.com/apotocki/boost-iosx
53+
git clone -b 1.89.0 https://github.com/apotocki/boost-iosx
5454
5555
# build libraries
5656
cd boost-iosx
@@ -98,14 +98,14 @@ scripts/build.sh -p=ios,iossim-x86_64 --rebuild
9898
Add the following lines into your project's Podfile:
9999
```
100100
use_frameworks!
101-
pod 'boost-iosx', '~> 1.88.0'
101+
pod 'boost-iosx', '~> 1.89.0'
102102
# or optionally more precisely e.g.:
103-
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.88.0.2'
103+
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.89.0.0'
104104
```
105105
If you want to use specific boost libraries, specify them as in the following example for log and program_options libraries:
106106
```
107-
pod 'boost-iosx/log', '~> 1.88.0'
108-
pod 'boost-iosx/program_options', '~> 1.88.0'
107+
pod 'boost-iosx/log', '~> 1.89.0'
108+
pod 'boost-iosx/program_options', '~> 1.89.0'
109109
# Note: Some libraries depend on other Boost libraries. In this case, you should explicitly add all their dependencies to your Podfile.
110110
```
111111
Then install new dependencies:

boost-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 = "boost-iosx"
3-
s.version = "1.88.0.2"
3+
s.version = "1.89.0.0"
44
s.summary = "Boost C++ libraries for macOS, iOS, watchOS, tvOS, and visionOS, including builds for Mac Catalyst, iOS Simulator, watchOS Simulator, tvOS Simulator, and visionOS Simulator."
55
s.homepage = "https://github.com/apotocki/boost-iosx"
66
s.license = "Boost Software License"

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -euo pipefail
44
THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}')
55
HOST_ARC=$( uname -m )
66
XCODE_ROOT=$( xcode-select -print-path )
7-
BOOST_VER=1.88.0
8-
EXPECTED_HASH="46d9d2c06637b219270877c9e16155cbd015b6dc84349af064c088e9b5b12f7b"
7+
BOOST_VER=1.89.0
8+
EXPECTED_HASH="85a33fa22621b4f314f8e85e1a5e2a9363d22e4f4992925d4bb3bc631b5a0c7a"
99
MACOSX_VERSION_ARM=12.3
1010
MACOSX_VERSION_X86_64=10.13
1111
IOS_VERSION=13.4

0 commit comments

Comments
 (0)