Skip to content

Commit e54ac22

Browse files
authored
feat: Add support for visionOS (#143)
* feat: Add support for visionOS * add changelog * add nit to remove * nit * bump Xcode and swift versions
1 parent 0cc07eb commit e54ac22

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
env:
1111
CI_XCODE_OLDEST: '/Applications/Xcode_13.3.1.app/Contents/Developer'
1212
CI_XCODE_14: '/Applications/Xcode_14.3.1.app/Contents/Developer'
13-
CI_XCODE_LATEST: '/Applications/Xcode_15.0.app/Contents/Developer'
13+
CI_XCODE_LATEST: '/Applications/Xcode_15.1.app/Contents/Developer'
1414

1515
concurrency:
1616
group: ${{ github.workflow }}-${{ github.ref }}
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: macos-13
2323
strategy:
2424
matrix:
25-
destination: ['platform=iOS\ Simulator,name=iPhone\ 14\ Pro\ Max', 'platform\=tvOS\ Simulator,name\=Apple\ TV', 'platform=watchOS\ Simulator,name=Apple\ Watch\ Series\ 5\ \(40mm\)', 'platform=macOS']
25+
destination: ['platform=iOS\ Simulator,name=iPhone\ 14\ Pro\ Max', 'platform\=tvOS\ Simulator,name\=Apple\ TV', 'platform=watchOS\ Simulator,name=Apple\ Watch\ Series\ 5\ \(40mm\)', 'platform=visionOS\ Simulator,name=Apple\ Vision\ Pro', 'platform=macOS']
2626
action: ['test', 'build']
2727
exclude:
2828
- destination: 'platform=iOS\ Simulator,name=iPhone\ 14\ Pro\ Max'
@@ -31,6 +31,8 @@ jobs:
3131
action: 'build'
3232
- destination: 'platform=macOS'
3333
action: 'build'
34+
- destination: 'platform=visionOS\ Simulator,name=Apple\ Vision\ Pro'
35+
action: 'build'
3436
- destination: 'platform=watchOS\ Simulator,name=Apple\ Watch\ Series\ 5\ \(40mm\)'
3537
action: 'test'
3638
steps:
@@ -136,8 +138,8 @@ jobs:
136138
- uses: actions/checkout@v4
137139
- uses: compnerd/gha-setup-swift@v0.2.1
138140
with:
139-
branch: swift-5.9-release
140-
tag: 5.9-RELEASE
141+
branch: swift-5.9.2-release
142+
tag: 5.9.2-RELEASE
141143
- name: Build
142144
run: |
143145
swift build -v

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
types: [published]
55
env:
66
CI_XCODE_14: '/Applications/Xcode_14.3.1.app/Contents/Developer'
7-
CI_XCODE_LATEST: '/Applications/Xcode_15.0.app/Contents/Developer'
7+
CI_XCODE_LATEST: '/Applications/Xcode_15.1.app/Contents/Developer'
88

99
jobs:
1010
cocoapods:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.8.2...5.9.0), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/5.9.0/documentation/parseswift)
1010

1111
__New features__
12+
* Add support for visionOS ([#143](https://github.com/netreconlab/Parse-Swift/pull/143)), thanks to [Corey Baker](https://github.com/cbaker6).
1213
* Add fetchAll method to array of Parse Pointer Object's ([#141](https://github.com/netreconlab/Parse-Swift/pull/141)), thanks to [Corey Baker](https://github.com/cbaker6).
1314

1415
### 5.8.2

0 commit comments

Comments
 (0)