Skip to content

Commit

Permalink
Release 17.3.1 (#2823)
Browse files Browse the repository at this point in the history
* Disable Xcode15 upload for now

* Release 17.3.1
  • Loading branch information
rlepinski authored Sep 13, 2023
1 parent f119e1a commit c9f400d
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 28 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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/[email protected]
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/[email protected]
# 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/[email protected]
# 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()
Expand Down
2 changes: 1 addition & 1 deletion Airship.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="17.3.0"
AIRSHIP_VERSION="17.3.1"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/AirshipVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion AirshipContentExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="17.3.0"
AIRSHIP_VERSION="17.3.1"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipDebug.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="17.3.0"
AIRSHIP_VERSION="17.3.1"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="17.3.0"
AIRSHIP_VERSION="17.3.1"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

Expand Down

0 comments on commit c9f400d

Please sign in to comment.