Skip to content

Latest commit

 

History

History
88 lines (48 loc) · 1.8 KB

CHANGELOG.md

File metadata and controls

88 lines (48 loc) · 1.8 KB

0.10.0

Other:

  • Add Privacy Manifest files.

0.9.1

Other:

  • Fix project settings.

0.9.0

Other:

  • Fix local testing.

0.8.2

Bugfixes:

  • Strip byte order mark from all input strings, not just when loading files (#128) -- @Diggory

0.8.1

Bugfixes:

  • Strip byte order mark from Strings when importing so they don't become part of imported content's cells. See #97 for discussion. (#103) -- @lardieri
  • Respect alternate delimiters when serializing the CSV. See #102 for discussion. (#107) -- @lardieri
  • Escape any double-quotes embedded inside the field values when serializing the CSV. See #111 for discussion. -- @lardieri

0.8.0

API Changes:

  • Replace namedRows/namedColumns and enumeratedRows/enumeratedColumns with CSV and CSV types that both expose a rows/columns property with different types. This way you cannot screw up by trying to access an unpopulated array because the CSV was loaded wrongly. The type knows it all. (#76) -- @DivineDominion
    • CSV.namedRows/CSV.namedColumns and CSV.enumeratedRows/CSV.enumeratedColumns are removed.
    • NamedCSV/EnumeratedCSV type aliases are introduced to simplify access.

0.7.1

Bugfixes:

  • Backport of fix from 0.8.1 to 0.7.x: Strip byte order mark from Strings when importing so they don't become part of imported content's cells. See #97 for discussion. (#104) -- @lardieri

0.7.0

API Changes:

  • Introduce delimiter guessing (#100) - @DivineDominion

0.6.1

Bugfixes:

  • Fix enumeration limit being ignored in Parser (#98) - @jasonmedeiros

0.6.0

API Changes:

  • Rename View to CSVView to avoid SwiftUI namespace conflicts (#93) - @campionfellin

Other:

  • Bump iOS Deployment target to 9.0, Xcode 12 recommended changes. (#91) - @DenTelezhkin