Skip to content

Commit a3d9018

Browse files
authored
feat: add macCatalyst to SPM (#363)
* feat: add macCatalyst to SPM * add changelog entry
1 parent 9a3de84 commit a3d9018

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* _Contributing to this repo? Add info about your change here to be included in the next release_
77

88
__New features__
9-
- 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).
9+
- Add macCatalyst to SPM ([#363](https://github.com/parse-community/Parse-Swift/pull/363)), thanks to [Corey Baker](https://github.com/cbaker6).
10+
- 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).
1011

1112
__Improvements__
1213
- 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).

Package.swift

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ import PackageDescription
44

55
let package = Package(
66
name: "ParseSwift",
7-
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)],
7+
platforms: [.iOS(.v13),
8+
.macCatalyst(.v13),
9+
.macOS(.v10_15),
10+
.tvOS(.v13),
11+
.watchOS(.v6)],
812
products: [
913
.library(
1014
name: "ParseSwift",

[email protected]

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ import PackageDescription
44

55
let package = Package(
66
name: "ParseSwift",
7-
platforms: [.iOS(.v13), .macOS(.v10_15), .tvOS(.v13), .watchOS(.v6)],
7+
platforms: [.iOS(.v13),
8+
.macCatalyst(.v13),
9+
.macOS(.v10_15),
10+
.tvOS(.v13),
11+
.watchOS(.v6)],
812
products: [
913
.library(
1014
name: "ParseSwift",

0 commit comments

Comments
 (0)