3.1.2
Fixes
- Allowing building of the Swift SDK for Swift 5.5.0 and 5.5.1 re-enabling builds for Xcode 13.0 and 13.1. Note that async/await functionality is only available for Swift 5.5.2+ and Xcode 13.2+. Developers using Swift <=5.5.1 or Xcode <=13.1 should use completion blocks or publishers (#320), thanks to @cbaker6.
- Move the
var score: Double?
to a protocol namedParseQueryScorable
. When developers want to sort by score using amatchesText
QueryConstraint
, they just conform their ParseObject's to ParseQueryScorable (#319), thanks to @cbaker6.- If you've added the
score
property to yourParseObject
due to upgrading to3.0.0
, you can remove it if you don't need it. If you do needed it, you should conform toParseQueryScorable
;struct GameScore: ParseObject, ParseQueryScorable {
- If you've added the