Skip to content

3.1.2

Compare
Choose a tag to compare
@cbaker6 cbaker6 released this 17 Jan 19:06
· 84 commits to main since this release
3c3a6e8

Full Changelog

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 named ParseQueryScorable. When developers want to sort by score using a matchesText QueryConstraint, they just conform their ParseObject's to ParseQueryScorable (#319), thanks to @cbaker6.
    • If you've added the score property to your ParseObject due to upgrading to 3.0.0, you can remove it if you don't need it. If you do needed it, you should conform to ParseQueryScorable; struct GameScore: ParseObject, ParseQueryScorable {