diff --git a/README.md b/README.md index 88f2d74..3bb4922 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Add the following lines into your project's Podfile: pod 'icu4c-iosx', '~> 76.1' # or optionally more precisely - # pod 'icu4c-iosx', :git => 'https://github.com/apotocki/icu4c-iosx', :tag => '76.1.3' + # pod 'icu4c-iosx', :git => 'https://github.com/apotocki/icu4c-iosx', :tag => '76.1.4' ``` install new dependency: ``` diff --git a/icu4c-iosx.podspec b/icu4c-iosx.podspec index 316fd6a..a25652b 100644 --- a/icu4c-iosx.podspec +++ b/icu4c-iosx.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "icu4c-iosx" - s.version = "76.1.3" + s.version = "76.1.4" s.summary = "ICU XCFramework for macOS, iOS, watchOS, tvOS, and visionOS, including builds for Mac Catalyst, iOS Simulator, watchOS Simulator, tvOS Simulator, and visionOS Simulator." s.homepage = "https://github.com/apotocki/icu4c-iosx" s.license = "BSD" diff --git a/scripts/build.sh b/scripts/build.sh index 24320c1..e6ec3c5 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -46,13 +46,13 @@ else NATIVE_BUILD_FLAGS="" && [[ ! -z "${MACOSX_VERSION_X86_64}" ]] && NATIVE_BUILD_FLAGS="-mmacosx-version-min=$MACOSX_VERSION_X86_64" fi -BUILD_PLATFORMS="macosx,ios,iossim,catalyst,tvos,tvossim,watchos,watchossim" +BUILD_PLATFORMS="macosx,ios,iossim,catalyst" [[ -d $XROSSYSROOT/SDKs/XROS.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,xros" [[ -d $XROSSIMSYSROOT/SDKs/XRSimulator.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,xrossim" [[ -d $TVOSSYSROOT/SDKs/AppleTVOS.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,tvos" [[ -d $TVOSSIMSYSROOT/SDKs/AppleTVSimulator.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,tvossim" [[ -d $WATCHOSSYSROOT/SDKs/WatchOS.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,watchos" -[[ -d $WATCHOSSIMSYSROOT/SDKs/WatchSimulator.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,watchossim" +[[ -d $WATCHOSSIMSYSROOT/SDKs/WatchSimulator.sdk ]] && BUILD_PLATFORMS="$BUILD_PLATFORMS,watchossim-both" ICU_BUILD_FOLDER=$ICU_VER_NAME-macosx-$HOST_ARC-build