Skip to content

Commit b56de0a

Browse files
authored
fix: Bump cocoapods minimum Swift version to 5.7 (#181)
* fix: Bump cocoapods minimum Swift version to 5.7 * nit
1 parent 48b38b1 commit b56de0a

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
# Parse-Swift Changelog
33

44
### main
5-
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.1...main), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift)
5+
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.2...main), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift)
66
* _Contributing to this repo? Add info about your change here to be included in the next release_
77

8+
### 5.11.2
9+
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.1...5.11.2), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/5.11.2/documentation/parseswift)
10+
11+
__Fixes__
12+
* Change minimum Swift version in Podspec to 5.7 ([#181](https://github.com/netreconlab/Parse-Swift/pull/181)), thanks to [Corey Baker](https://github.com/cbaker6).
813

914
### 5.11.1
10-
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.0...5.11.1), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/5.11.0/documentation/parseswift)
15+
[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.0...5.11.1), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/5.11.1/documentation/parseswift)
1116

1217
__Fixes__
1318
* Make className property of ParseHookTriggerObject public ([#180](https://github.com/netreconlab/Parse-Swift/pull/180)), thanks to [Corey Baker](https://github.com/cbaker6).

ParseSwiftOG.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ParseSwiftOG"
3-
s.version = "5.3.0"
3+
s.version = "5.11.2"
44
s.summary = "The original Parse Swift SDK"
55
s.homepage = "https://github.com/netreconlab/Parse-Swift"
66
s.authors = {
@@ -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', '5.10']
17+
s.swift_versions = ['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

+1-1
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', '5.10']
17+
s.swift_versions = ['5.7', '5.8', '5.9', '5.10']
1818
s.source_files = "Sources/ParseSwift/**/*.swift"
1919
s.license = {
2020
:type => "Apache 2.0",

Sources/ParseSwift/ParseConstants.swift

+1-1
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 = "5.11.1"
13+
static let version = "5.11.2"
1414
static let fileManagementDirectory = "parse/"
1515
static let fileManagementPrivateDocumentsDirectory = "Private Documents/"
1616
static let fileManagementLibraryDirectory = "Library/"

0 commit comments

Comments
 (0)