Releases: FlineDev/CSVImporter
Releases · FlineDev/CSVImporter
1.9.1
1.8.0
1.7.0
1.6.0
1.5.0
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)
1.3.0
1.2.0
New
- Add initializer using a
NSURL
(see #5) - Automatically detect/manually specify correct line ending type (see #7)
Improved
- Faster import by refactoring regular expressions & more (see #9)
- Less memory usage by using autorelease pool (see #9)
Big thanks to @phoney for all those improvements and features!