The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for Perl extension Tie::CSV_File.

0.06  Thu Aug 01
       - implemented STORE possibility
         $data[$line][$column] = $something

0.05  Wed Jul 31
       - implemented option
         sep_re     => ...

0.04  Wed Jul 31
       - changed code to avoid bug in 5.6.1,
         instead of returning an anonymous [] from a tied array
         in the first dimension,
         I return something like my @fields; return \@fields;

0.03  Tue Jul 30
       - fixed bug: removed 'use Test::Warn' from a test script as I didn't need it
                    but forced an error

0.02  Tue Jul 30
       - implemented CSV options
         quote_char   => ...
         eol          => ...
         escape_char  => ...
         always_quote => ...
       - removed dependancy of Perl 5.8.0 of the Makefile.PL

0.01  Mon Jul 29 
       - implemented read-only tied Tie::CSV_File without any options