8000 Releases · dehesa/CodableCSV · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: dehesa/CodableCSV

Xcode 13 support and `standard` row delimiter

27 Aug 22:22
Compare
Choose a tag to compare
  • Xcode 13 has been supported by raising the iOS requirements to iOS 11.
    The library still supports iOS 7+, but the SPM now defines iOS 11+. If you want to support older OSes, modify the SPM manifest.
  • Support for more than one row delimiter (e.g. for the standard \r\n and \n) at the same time.
    CSVReader will end a row when one of the row delimiters is encountered. Use just one row delimiter for better performance.

Stricter parsing

14 Mar 19:08
Compare
Choose a tag to compare
  • CSVReader and CSVDecoder are now "stricter" while parsing CSV data.
    Now errors are thrown when encountering ill-formed rows, instead of just finishing the parsing process (#34).
  • CSVReader and CSVDecoder ignore empty lines.
    Usually encountered at the end of a file.
  • Minor enhancements on documentation.

Second batch of performance enhancements

22 Nov 15:02
Compare
Choose a tag to compare