diff --git a/.codecov.yml b/.codecov.yml index 6389690f8..7009a7cb2 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -6,7 +6,7 @@ coverage: status: patch: default: - target: 56 + target: auto changes: false project: default: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5650b884..966ecf35f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: branches: '*' env: CI_XCODE_VER: '/Applications/Xcode_11.7.app/Contents/Developer' - CI_XCODE_13: '/Applications/Xcode_13.2.app/Contents/Developer' + CI_XCODE_13: '/Applications/Xcode_13.2.1.app/Contents/Developer' jobs: xcode-test-ios: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 373ae54a9..b82cdf263 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: types: [published] env: CI_XCODE_VER: '/Applications/Xcode_11.7.app/Contents/Developer' - CI_XCODE_13: '/Applications/Xcode_13.2.app/Contents/Developer' + CI_XCODE_13: '/Applications/Xcode_13.2.1.app/Contents/Developer' jobs: cocoapods: diff --git a/CHANGELOG.md b/CHANGELOG.md index 89775628c..78344d5fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,19 @@ ### main -[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.0...main) +[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.1...main) * _Contributing to this repo? Add info about your change here to be included in the next release_ +### 2.5.1 +[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.5.0...2.5.1) + +__Improvements__ +- 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). + +__Fixes__ +- Let additional headers accept [AnyHashable: Any] ([#302](https://github.com/parse-community/Parse-Swift/pull/302)), thanks to [Corey Baker](https://github.com/cbaker6). +- 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). + ### 2.5.0 [Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.4.0...2.5.0) diff --git a/Sources/ParseSwift/ParseConstants.swift b/Sources/ParseSwift/ParseConstants.swift index 611d41784..ae54eb95a 100644 --- a/Sources/ParseSwift/ParseConstants.swift +++ b/Sources/ParseSwift/ParseConstants.swift @@ -10,7 +10,7 @@ import Foundation enum ParseConstants { static let sdk = "swift" - static let version = "2.5.0" + static let version = "2.5.1" static let fileManagementDirectory = "parse/" static let fileManagementPrivateDocumentsDirectory = "Private Documents/" static let fileManagementLibraryDirectory = "Library/"