CHANGELOG in fastercsv-0.1.4 vs CHANGELOG in fastercsv-0.1.6
- old
+ new
@@ -1,8 +1,24 @@
= Change Log
Below is a complete listing of changes for each revision of FasterCSV.
+== 0.1.6
+
+* Began using a forked development/stable versioning system.
+* Reorganized initialization code for easier additions and maintenance.
+* Added a check for unknown options. Exceptions will now be thrown for them.
+* Added built-in and custom data converters. Built-in handle numbers and dates.
+* Added Array#to_csv and String#parse_csv. Both accept normal options.
+* Project moved to RubyForge Subversion.
+* Added auto-discovery for <tt>:row_sep</tt> (now the default).
+* Added FasterCSV::filter() for easy Unix-like CSV filters.
+* Added support for accessing fields by headers.
+ * Headers can have their own converters.
+ * Headers can be skipped or returned as needed.
+ * FasterCSV::Row allows index or header access while retaining order and
+ allowing for duplicate headers.
+
== 0.1.4
* Fixed <tt>:col_sep</tt> escaping bug (reported by Kev Jackson).
* Switched to the use of named parsers internally.