Skip to content

Releases: starsite/SwiftFM

2.3.2

11 May 17:42
Compare
Choose a tag to compare

This fixes a DocC format bug

2.3.0

16 Jan 01:30
Compare
Choose a tag to compare

Refactored Codable return types, updating functions to match. Non-breaking change. Just a bit of cleaning up. 🧹

Updated readme code examples.

2.2.4

07 Mar 05:07
4b9c429
Compare
Choose a tag to compare

Apache License 2.0

2.2.3

28 Feb 05:08
Compare
Choose a tag to compare

This release is all about DocC support, which is now available throughout SwiftFM. 🥰

No additions or changes to existing code or behavior.

2.2.0

26 Feb 03:07
Compare
Choose a tag to compare

Query(), GetRecord(), and GetRecords() previously returned (Data?, Data?). Returning a tuple of optionals meant an extra step before unwrapping either result. Not ideal. All record fetching methods now throw and return (Data, DataInfo). This means:

  • You no longer need an extra let (data, info) = call prior to unwrapping data or info.
  • You can now 'dot' directly into info, like this: print("fetched \(info.foundCount) records").