Skip to content

Commit 8d3bb4b

Browse files
authored
fix: Default cocoapods to use Swift 5.10 (#159)
* Update ParseSwiftOG.podspec * Update ParseSwiftOG.podtemplate * Update ci.yml * Update release.yml
1 parent 87742c9 commit 8d3bb4b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ jobs:
176176
- name: CocoaPods
177177
run: pod lib lint --allow-warnings
178178
env:
179-
DEVELOPER_DIR: ${{ env.CI_XCODE_14 }}
179+
DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: set -o pipefail && env NSUnbufferedIO=YES pod trunk push ParseSwiftOG.podspec --allow-warnings --verbose
2424
env:
2525
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
26-
DEVELOPER_DIR: ${{ env.CI_XCODE_14 }}
26+
DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }}
2727

2828
docs:
2929
runs-on: macos-14

ParseSwiftOG.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.osx.deployment_target = "10.15"
1515
s.tvos.deployment_target = "13.0"
1616
s.watchos.deployment_target = "6.0"
17-
s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9']
17+
s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
1818
s.source_files = "Sources/ParseSwift/**/*.swift"
1919
s.license = {
2020
:type => "Apache 2.0",

ParseSwiftOG.podtemplate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.osx.deployment_target = "10.15"
1515
s.tvos.deployment_target = "13.0"
1616
s.watchos.deployment_target = "6.0"
17-
s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9']
17+
s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
1818
s.source_files = "Sources/ParseSwift/**/*.swift"
1919
s.license = {
2020
:type => "Apache 2.0",

0 commit comments

Comments
 (0)