Bugfixes included in this version:
- When using
Record
s, having no headers defined causesArrayIndexOutOfBoundException
when reading column values by index (#93). - Parsers fail with
ArrayIndexOutOfBoundException
if number of columns parsed equals themaxColumns
setting (#89). - When parsing CSV, when the last value is quoted, and there's no newline character after the last record, the parser will produce
nullValue
instead ofemptyValue
(#92). - Unable to parse fixed-width without line breaks (#90).
- Unable to write fixed-width without line breaks. Added the
writeLineSeparatorAfterRecord
option inFixedWidthWriterSettings
to properly support this requirement (#91).