diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adeabef8e..100d48510 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -183,32 +183,32 @@ jobs: asset_path: ./build/Airship.xcframeworks.zip asset_name: Airship.xcframeworks.zip asset_content_type: application/zip - - name: Upload Xcode15 zip distribution - uses: actions/upload-release-asset@v1.0.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./buildXcode15/Airship.zip - asset_name: Airship-Xcode15.zip - asset_content_type: application/zip - - name: Upload Xcode 15 carthage zip distribution - uses: actions/upload-release-asset@v1.0.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./buildXcode15/Airship.xcframeworks.zip - asset_name: Airship-Xcode15.xcframeworks.zip - asset_content_type: application/zip + # - name: Upload Xcode15 zip distribution + # uses: actions/upload-release-asset@v1.0.1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # with: + # upload_url: ${{ steps.create_release.outputs.upload_url }} + # asset_path: ./buildXcode15/Airship.zip + # asset_name: Airship-Xcode15.zip + # asset_content_type: application/zip + # - name: Upload Xcode 15 carthage zip distribution + # uses: actions/upload-release-asset@v1.0.1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # with: + # upload_url: ${{ steps.create_release.outputs.upload_url }} + # asset_path: ./buildXcode15/Airship.xcframeworks.zip + # asset_name: Airship-Xcode15.xcframeworks.zip + # asset_content_type: application/zip - name: Update prebuilt Xcode 14 repo env: GITHUB_TOKEN: ${{ secrets.IOS_DEPLOY_PREBUILT_PAT }} run: gh --repo urbanairship/ios-library-prebuilt workflow run release.yml - - name: Update prebuilt Xcode 15 repo - env: - GITHUB_TOKEN: ${{ secrets.IOS_DEPLOY_PREBUILT_PAT }} - run: gh --repo urbanairship/ios-library-prebuilt --ref xcode-15 workflow run release.yml + # - name: Update prebuilt Xcode 15 repo + # env: + # GITHUB_TOKEN: ${{ secrets.IOS_DEPLOY_PREBUILT_PAT }} + # run: gh --repo urbanairship/ios-library-prebuilt --ref xcode-15 workflow run release.yml - name: Slack Notification uses: homoluctus/slatify@master if: always() diff --git a/Airship.podspec b/Airship.podspec index 0d98a69a5..a5da90fe2 100644 --- a/Airship.podspec +++ b/Airship.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="17.3.0" +AIRSHIP_VERSION="17.3.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/Airship/AirshipConfig.xcconfig b/Airship/AirshipConfig.xcconfig index e9f89c410..1ccad0785 100644 --- a/Airship/AirshipConfig.xcconfig +++ b/Airship/AirshipConfig.xcconfig @@ -1,6 +1,6 @@ //* Copyright Airship and Contributors */ -CURRENT_PROJECT_VERSION = 17.3.0 +CURRENT_PROJECT_VERSION = 17.3.1 // Uncomment to include the preview build warning // OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1 diff --git a/Airship/AirshipCore/Source/AirshipVersion.swift b/Airship/AirshipCore/Source/AirshipVersion.swift index 08c888431..93b8dda8d 100644 --- a/Airship/AirshipCore/Source/AirshipVersion.swift +++ b/Airship/AirshipCore/Source/AirshipVersion.swift @@ -4,7 +4,7 @@ import Foundation @objc(UAirshipVersion) public class AirshipVersion: NSObject { - public static let version = "17.3.0" + public static let version = "17.3.1" @objc public class func get() -> String { diff --git a/AirshipContentExtension.podspec b/AirshipContentExtension.podspec index e8a744d33..fc2f13c8d 100644 --- a/AirshipContentExtension.podspec +++ b/AirshipContentExtension.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="17.3.0" +AIRSHIP_VERSION="17.3.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/AirshipDebug.podspec b/AirshipDebug.podspec index df10cc9a7..bc3c94c66 100644 --- a/AirshipDebug.podspec +++ b/AirshipDebug.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="17.3.0" +AIRSHIP_VERSION="17.3.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/AirshipServiceExtension.podspec b/AirshipServiceExtension.podspec index ab778f214..66ad83349 100644 --- a/AirshipServiceExtension.podspec +++ b/AirshipServiceExtension.podspec @@ -1,4 +1,4 @@ -AIRSHIP_VERSION="17.3.0" +AIRSHIP_VERSION="17.3.1" Pod::Spec.new do |s| s.version = AIRSHIP_VERSION diff --git a/CHANGELOG.md b/CHANGELOG.md index 31373da69..321d6886a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ [Migration Guides](https://github.com/urbanairship/ios-library/tree/main/Documentation/Migration) +## Version 17.3.1 September 13, 2023 +Patch release that updates the prebuilt XCFrameworks for Xcode 15 to use the new Xcode 15 RC release. + +### Changes +- Update the Xcode 15 prebuilt XCFrameworks to use Xcode 15 RC release. + ## Version 17.3.0 September 7, 2023 Minor release that adds a privacy manifest that declares the default data collected by the Airship SDK. For more information, see [privacy manifest guide](https://docs.airship.com/platform/mobile/data-collection/ios-privacy-manifest/).