Skip to content

Commit af0f1f5

Browse files
committed
moved to 1.83.0
1 parent a400ddc commit af0f1f5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- name: Build
1616
run: |
17-
export ICU4C_RELEASE_LINK=https://github.com/apotocki/icu4c-iosx/releases/download/73.1.0
17+
export ICU4C_RELEASE_LINK=https://github.com/apotocki/icu4c-iosx/releases/download/73.2.1
1818
scripts/build.sh
1919
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
2020
cd frameworks

README.md

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

3-
Supported version: 1.82.0 (use the appropriate tag to select the version)
3+
Supported version: 1.83.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 and Mac OS X & Catalyst applications.
6-
The latest supported Boost version is taken from: https://boostorg.jfrog.io/artifactory/main/release/1.82.0/source/boost_1_82_0.tar.bz2
6+
The latest supported Boost version is taken from: https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.bz2
77

88
## Building libraries
99
atomic, chrono, container, context, contract, coroutine, date_time, exception, fiber, filesystem, graph, iostreams, json, locale, log, math, nowide, program_options, random, regex, serialization, stacktrace, system, test, thread, timer, type_erasure, url, wave
@@ -25,7 +25,7 @@ graph_parallel, mpi, python
2525
- Manually
2626
```
2727
# clone the repo
28-
git clone -b 1.82.0 https://github.com/apotocki/boost-iosx
28+
git clone -b 1.83.0 https://github.com/apotocki/boost-iosx
2929
3030
# build libraries
3131
cd boost-iosx
@@ -37,14 +37,14 @@ graph_parallel, mpi, python
3737
- Use cocoapods. Add the following lines into your project's Podfile:
3838
```
3939
use_frameworks!
40-
pod 'boost-iosx', '~> 1.82.0'
40+
pod 'boost-iosx', '~> 1.83.0'
4141
# or optionally more precisely e.g.:
42-
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.82.0.0'
42+
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.83.0.0'
4343
```
4444
If you want to use particular boost libraries, specify them as in the following example for log and program_options libraries:
4545
```
46-
pod 'boost-iosx/log', '~> 1.82.0'
47-
pod 'boost-iosx/program_options', '~> 1.82.0'
46+
pod 'boost-iosx/log', '~> 1.83.0'
47+
pod 'boost-iosx/program_options', '~> 1.83.0'
4848
# note: Some libraries have dependencies on other Boost libraries. In that case, you should explicitly add all their dependencies to your Podfile.
4949
```
5050
Then install new dependencies:

boost-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 = "boost-iosx"
3-
s.version = "1.82.0.0"
3+
s.version = "1.83.0.0"
44
s.summary = "Boost C++ libraries"
55
s.homepage = "https://github.com/apotocki/boost-iosx"
66
s.license = "Boost Software License"

scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33
################## SETUP BEGIN
44
THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}')
55
XCODE_ROOT=$( xcode-select -print-path )
6-
BOOST_VER=1.82.0
6+
BOOST_VER=1.83.0
77
################## SETUP END
88
DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
99
SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer

0 commit comments

Comments
 (0)