-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #641 from andyfinnell/support-xcode-15
Support Building from Xcode 15
- Loading branch information
Showing
805 changed files
with
5,299 additions
and
180,288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
git "https://chromium.googlesource.com/webm/libwebp" "v1.1.0" | ||
github "pinterest/PINCache" ~> 3.0.3 | ||
github "pinterest/PINCache" ~> 3.0.4 | ||
github "pinterest/PINOperation" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
git "https://chromium.googlesource.com/webm/libwebp" "v1.1.0" | ||
github "pinterest/PINCache" "3.0.3" | ||
github "pinterest/PINOperation" "1.2.1" | ||
github "pinterest/PINCache" "3.0.4" | ||
github "pinterest/PINOperation" "1.2.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
issues=false | ||
since-tag=3.0.2 | ||
future-release=3.0.3 | ||
since-tag=3.0.4 | ||
future-release=3.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "pinterest/PINOperation" ~> 1.2.1 | ||
github "pinterest/PINOperation" ~> 1.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "pinterest/PINOperation" "1.2" | ||
github "pinterest/PINOperation" "1.2.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
.../Checkouts/PINCache/Carthage/Checkouts/PINOperation/.github/workflows/publish_release.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Create Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release-type: | ||
description: 'The type of release. Must be major, minor or patch' | ||
required: true | ||
|
||
env: | ||
# Use Xcode 15.2 or newer to support VisionOS | ||
DEVELOPER_DIR: /Applications/Xcode_15.2.app | ||
|
||
jobs: | ||
create_release: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# Make sure we can lint before creating the release. | ||
- name: Cocoapods lint | ||
run: make cocoapods | ||
- name: Create Release Commit | ||
env: | ||
GITHUB_CHANGELOG_API_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
OSS_PROJECT: PINOperation | ||
run: | | ||
gem install github_changelog_generator | ||
Scripts/release.sh --${{ github.event.inputs.release-type }} | ||
git push origin HEAD | ||
- name: Tag Release | ||
run: Scripts/tag-release-branch.sh | ||
- name: Publish Release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_CHANGELOG_API_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.RELEASE_TAG }} | ||
release_name: ${{ env.RELEASE_TAG }} | ||
body_path: RELEASE_NOTES.md | ||
draft: false | ||
- name: Push to Cocoapods | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | ||
run: pod trunk push |
4 changes: 2 additions & 2 deletions
4
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/.github_changelog_generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
issues=false | ||
since-tag=1.1.1 | ||
future-release=1.2 | ||
since-tag=1.2.1 | ||
future-release=1.2.2 |
32 changes: 32 additions & 0 deletions
32
Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.