diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ae666d4a..d12de3f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,8 @@ * _Contributing to this repo? Add info about your change here to be included in the next release_ __New features__ - - Add includeAll computed property to Query and deprecate includeAll() ([#361](https://github.com/parse-community/Parse-Swift/pull/361)), thanks to [Corey Baker](https://github.com/cbaker6). +- Add macCatalyst to SPM ([#363](https://github.com/parse-community/Parse-Swift/pull/363)), thanks to [Corey Baker](https://github.com/cbaker6). +- Add includeAll computed property to Query and deprecate includeAll() ([#362](https://github.com/parse-community/Parse-Swift/pull/362)), thanks to [Corey Baker](https://github.com/cbaker6). __Improvements__ - Allow LiveQuery client to be set using ParseLiveQuery.defaultClient and deprecate ParseLiveQuery.setDefault(). Show usage of deprecated code as warnings during compile time and suggest changes ([#360](https://github.com/parse-community/Parse-Swift/pull/360)), thanks to [Corey Baker](https://github.com/cbaker6). diff --git a/Package.swift b/Package.swift index 318d4464a..7001392a0 100644 --- a/Package.swift +++ b/Package.swift @@ -4,7 +4,11 @@ import PackageDescription let package = Package( name: "ParseSwift", - platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)], + platforms: [.iOS(.v13), + .macCatalyst(.v13), + .macOS(.v10_15), + .tvOS(.v13), + .watchOS(.v6)], products: [ .library( name: "ParseSwift", diff --git a/Package@5.1.swift b/Package@5.1.swift index 33f6b63cb..74a160405 100644 --- a/Package@5.1.swift +++ b/Package@5.1.swift @@ -4,7 +4,11 @@ import PackageDescription let package = Package( name: "ParseSwift", - platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)], + platforms: [.iOS(.v13), + .macCatalyst(.v13), + .macOS(.v10_15), + .tvOS(.v13), + .watchOS(.v6)], products: [ .library( name: "ParseSwift",