1.4.0
Changes:
- Removed
FileKit
dependency (using own and optimized copy ofTextFile
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)