Skip to content

Commit 7c55701

Browse files
committed
version 76.1.0
1 parent 50ecfe7 commit 7c55701

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [published]
55
push:
66
tags:
7-
- 75.**
7+
- 76.**
88
workflow_dispatch:
99
jobs:
1010
Build:

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "icu"]
22
path = icu
33
url = https://github.com/unicode-org/icu
4-
branch = maint/maint-75
4+
branch = maint/maint-76

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## ICU for iOS, visionOS, macOS (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
22

3-
Supported versions: 75.1
3+
Supported versions: 76.1
44

5-
This repo provides a universal script for building static ICU libraries for use in iOS, visionOS, and macOS applications. The actual ICU library version is taken from https://github.com/unicode-org/icu . The repo branches correspond to the suitable branches of ICU repo. E.g. "75" branch corresponds to "maint/maint-75" branch.
5+
This repo provides a universal script for building static ICU libraries for use in iOS, visionOS, and macOS applications. The actual ICU library version is taken from https://github.com/unicode-org/icu . The repo branches correspond to the suitable branches of ICU repo. E.g. "76" branch corresponds to "maint/maint-76" branch.
66

77
## Prerequisites
88
1) Xcode must be installed because xcodebuild is used to create xcframeworks
@@ -13,7 +13,7 @@ This repo provides a universal script for building static ICU libraries for use
1313
- Manually
1414
```
1515
# clone the repo
16-
git clone -b 75 https://github.com/apotocki/icu4c-iosx
16+
git clone -b 76 https://github.com/apotocki/icu4c-iosx
1717
1818
# build libraries
1919
cd icu4c-iosx
@@ -24,9 +24,9 @@ This repo provides a universal script for building static ICU libraries for use
2424
- Use cocoapods. Add the following lines into your project's Podfile:
2525
```
2626
use_frameworks!
27-
pod 'icu4c-iosx', '~> 75.1'
27+
pod 'icu4c-iosx', '~> 76.1'
2828
# or optionally more precisely
29-
# pod 'icu4c-iosx', :git => 'https://github.com/apotocki/icu4c-iosx', :tag => '75.1.3'
29+
# pod 'icu4c-iosx', :git => 'https://github.com/apotocki/icu4c-iosx', :tag => '76.1.0'
3030
```
3131
install new dependency:
3232
```

icu4c-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 = "icu4c-iosx"
3-
s.version = "75.1.3"
3+
s.version = "76.1.0"
44
s.summary = "ICU XCFramework for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator."
55
s.homepage = "https://github.com/apotocki/icu4c-iosx"
66
s.license = "BSD"

scripts/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}')
55
HOST_ARC=$( uname -m )
66
XCODE_ROOT=$( xcode-select -print-path )
7-
ICU_VER=maint/maint-75
7+
ICU_VER=maint/maint-76
88
#MACOSX_VERSION_ARM=12.3
99
#MACOSX_VERSION_X86_64=10.13
1010
IOS_VERSION=13.4
@@ -46,10 +46,10 @@ if [ ! -d icu ]; then
4646
git clone --depth 1 -b $ICU_VER https://github.com/unicode-org/icu icu
4747
fi
4848

49-
#explicit 75.1
49+
#explicit 76.1
5050
pushd icu
51-
git fetch --depth=1 origin 7750081bda4b3bc1768ae03849ec70f67ea10625
52-
git reset --hard 7750081bda4b3bc1768ae03849ec70f67ea10625
51+
git fetch --depth=1 origin 8eca245c7484ac6cc179e3e5f7c1ea7680810f39
52+
git reset --hard 8eca245c7484ac6cc179e3e5f7c1ea7680810f39
5353
popd
5454

5555
COMMON_CONFIGURE_ARGS="--enable-static --disable-shared prefix=$INSTALL_DIR --with-data-packaging=$WITH_DATA_PACKAGING"

0 commit comments

Comments
 (0)