The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl extension Tie::Handle::CSV.

0.08  Tue May 15 2007
     - added 'key_case' option in-place of 'force_lower', currently supports
       'lower', 'upper' and default
     - added t/key_case.t for new 'key_case' option
     - 'force_lower' option was removed from docs and is now an alias for
       key_case => 'lower'
     - added 'simple_reads' option to control whether line reads return tied
       data structures or not
     - the 'stringify' option now sets 'simple_reads' to the appropriate value
     - testcover: 88.8%

0.07  Thu May 10 2007
     - added 'force_lower' option for forcing header keys to lowercase in line
       read hashes
     - renamed 'openmode' option to 'open_mode' in docs and code, but retained
       'openmode' as an alias

0.06  Sun May 06 2007
     - added 'stringify' option to control whether line reads return objects
       that stringify to CSV format or just basic hash or array references
     - rewrote portions of documentation
     - fixed mismatch between file names and package names for
       Tie/Handle/CSV/Array.pm and Tie/Handle/CSV/Hash.pm

0.05  Sat Apr 03 2004
     - documented auto-croak behavior properly
     - when 'READLINE' is called and 'wantarray' is true, call 'READLINE'
       repeatedly in scalar context. this will allow proper behavior in
       inherited classes.  previously we just looped over the filehandle
       internally.

0.04  Thu Mar 25 2004
     - croak if open fails during instantiation
     - allow a 'sep_char' option as a short-cut to creating a Text::CSV_XS
       object with a given separator

0.03  Thu Mar 15 2004
     - changed default behavior to assume file has a header row
     - clarified docs regarding headers and arrays vs hashes

0.02  Thu Mar 11 2004
     - test fix for t/tell.t on win32

0.01  Thu Mar 04 2004
     - original version; created by h2xs 1.23 with options
        -AX -b 5.6.0 -n Tie::Handle::CSV