1.4.0
Changes:
- Removed
FileKitdependency (using own and optimized copy ofTextFileclass) - 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)