diff --git a/ChangeLog.txt b/ChangeLog.txt index be42ce2..34b8dc8 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,21 @@ +parseCSV 0.4.3 beta +----------------------------------- +Date: 1-July-2008 + +- Issue #4. Added an option for setting sorting + type behavior when sorting data. + Simply set $csv->sort_type to "regular", "numeric", + or "string". + +- Issue #6. Raw loaded file data is now cleared from + file_data property when it has been successfully + parsed to keep parseCSV's memory footprint to a + minimum. Specifically handy when using mulitple + instances of parseCSV to process large files. + +----------------------------------- + + parseCSV 0.4.2 beta ----------------------------------- Date: 31-May-2008 diff --git a/parsecsv.lib.php b/parsecsv.lib.php index 05247cd..ab52dd4 100644 --- a/parsecsv.lib.php +++ b/parsecsv.lib.php @@ -4,7 +4,7 @@ class parseCSV { /* - Class: parseCSV v0.4.2 beta + Class: parseCSV v0.4.3 beta http://code.google.com/p/parsecsv-for-php/