Skip to content

Commit 931ae8f

Browse files
authored
ci: bump to Xcode 13.2.1 (#303)
1 parent 847bdf8 commit 931ae8f

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ coverage:
66
status:
77
patch:
88
default:
9-
target: 56
9+
target: auto
1010
changes: false
1111
project:
1212
default:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: '*'
77
env:
88
CI_XCODE_VER: '/Applications/Xcode_11.7.app/Contents/Developer'
9-
CI_XCODE_13: '/Applications/Xcode_13.2.app/Contents/Developer'
9+
CI_XCODE_13: '/Applications/Xcode_13.2.1.app/Contents/Developer'
1010

1111
jobs:
1212
xcode-test-ios:

.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_VER: '/Applications/Xcode_11.7.app/Contents/Developer'
7-
CI_XCODE_13: '/Applications/Xcode_13.2.app/Contents/Developer'
7+
CI_XCODE_13: '/Applications/Xcode_13.2.1.app/Contents/Developer'
88

99
jobs:
1010
cocoapods:

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,19 @@
22

33
### main
44

5-
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.0...main)
5+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.1...main)
66
* _Contributing to this repo? Add info about your change here to be included in the next release_
77

8+
### 2.5.1
9+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.0...2.5.1)
10+
11+
__Improvements__
12+
- Reduce call sites by having all methods with variadic arguments call their array counterparts ([#301](https://github.com/parse-community/Parse-Swift/pull/301)), thanks to [Corey Baker](https://github.com/cbaker6).
13+
14+
__Fixes__
15+
- Let additional headers accept [AnyHashable: Any] ([#302](https://github.com/parse-community/Parse-Swift/pull/302)), thanks to [Corey Baker](https://github.com/cbaker6).
16+
- Throw .missingObjectId when missing the client detects a missing objectId instead of throwing an .unknown error ([#300](https://github.com/parse-community/Parse-Swift/pull/300)), thanks to [Corey Baker](https://github.com/cbaker6).
17+
818
### 2.5.0
919
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.4.0...2.5.0)
1020

Sources/ParseSwift/ParseConstants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
enum ParseConstants {
1212
static let sdk = "swift"
13-
static let version = "2.5.0"
13+
static let version = "2.5.1"
1414
static let fileManagementDirectory = "parse/"
1515
static let fileManagementPrivateDocumentsDirectory = "Private Documents/"
1616
static let fileManagementLibraryDirectory = "Library/"

0 commit comments

Comments
 (0)