diff --git a/CHANGELOG.md b/CHANGELOG.md index cf878c86f..a8dd3ade4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,17 @@ # Parse-Swift Changelog ### main -[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.1...main), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift) +[Full Changelog](https://github.com/netreconlab/Parse-Swift/compare/5.11.2...main), [Documentation](https://swiftpackageindex.com/netreconlab/Parse-Swift/main/documentation/parseswift) * _Contributing to this repo? Add info about your change here to be included in the next release_ +### 5.11.2 +[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) + +__Fixes__ +* 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). ### 5.11.1 -[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) +[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) __Fixes__ * Make className property of ParseHookTriggerObject public ([#180](https://github.com/netreconlab/Parse-Swift/pull/180)), thanks to [Corey Baker](https://github.com/cbaker6). diff --git a/ParseSwiftOG.podspec b/ParseSwiftOG.podspec index dc9a2f128..0d5c65acd 100644 --- a/ParseSwiftOG.podspec +++ b/ParseSwiftOG.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "ParseSwiftOG" - s.version = "5.3.0" + s.version = "5.11.2" s.summary = "The original Parse Swift SDK" s.homepage = "https://github.com/netreconlab/Parse-Swift" s.authors = { @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.osx.deployment_target = "10.15" s.tvos.deployment_target = "13.0" s.watchos.deployment_target = "6.0" - s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9', '5.10'] + s.swift_versions = ['5.7', '5.8', '5.9', '5.10'] s.source_files = "Sources/ParseSwift/**/*.swift" s.license = { :type => "Apache 2.0", diff --git a/ParseSwiftOG.podtemplate b/ParseSwiftOG.podtemplate index 084a14806..b10dac72e 100644 --- a/ParseSwiftOG.podtemplate +++ b/ParseSwiftOG.podtemplate @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.osx.deployment_target = "10.15" s.tvos.deployment_target = "13.0" s.watchos.deployment_target = "6.0" - s.swift_versions = ['5.5', '5.6', '5.7', '5.8', '5.9', '5.10'] + s.swift_versions = ['5.7', '5.8', '5.9', '5.10'] s.source_files = "Sources/ParseSwift/**/*.swift" s.license = { :type => "Apache 2.0", diff --git a/Sources/ParseSwift/ParseConstants.swift b/Sources/ParseSwift/ParseConstants.swift index 567f66297..1e49476c5 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 = "5.11.1" + static let version = "5.11.2" static let fileManagementDirectory = "parse/" static let fileManagementPrivateDocumentsDirectory = "Private Documents/" static let fileManagementLibraryDirectory = "Library/"