Skip to content

Commit

Permalink
fix: Bump cocoapods minimum Swift version to 5.7 (#181)
Browse files Browse the repository at this point in the history
* fix: Bump cocoapods minimum Swift version to 5.7

* nit
  • Loading branch information
cbaker6 committed Jul 21, 2024
1 parent 48b38b1 commit b56de0a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
4 changes: 2 additions & 2 deletions ParseSwiftOG.podspec
Original file line number Diff line number Diff line change
@@ -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 = {
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion ParseSwiftOG.podtemplate
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion Sources/ParseSwift/ParseConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down

0 comments on commit b56de0a

Please sign in to comment.