Skip to content

1.4.0

Compare
Choose a tag to compare
@Jeehut Jeehut released this 17 Dec 12:24
· 71 commits to main since this release

Changes:

  • Removed FileKit dependency (using own and optimized copy of TextFile class)
  • Internal Swift 3 optimizations (including making CSVImporter non-subclassable with public)
  • Added support for specifying the encoding for the CSV file to import (was always UTF8 before):

Example usage:

let importer = CSVImporter<[String: String]>(url: url, encoding: .utf16LittleEndian)

Thanks to @dkalinai for helping to fix #12.