The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for XML-MinWriter

0.01    16 Oct 2010
        First version, released on an unsuspecting world.

0.02    19 Nov 2011
        Make XML::MinWriter do the same thing as XML::Writer, that is
        writing character data on a single line together with the opening
        and closing tags

0.03    20 Nov 2011
        Adapt the output of NEWLINES => 1 to match XML::Writer

0.04    02 Dec 2011
        Completeley re-think the purpose and design of XML::MinWriter -->
        XML::MinWriter inherits from XML::Writer and adds one single method
        write_pyx.

0.05    04 Dec 2011
        re-write license text

0.06    04 Aug 2012
        Change the obvious error in MinWriter.pm:
        previously: if ($intro =~ m{\A xml}xmsi and $intro !~ m{/\A xml-stylesheet \z/}xmsi) {
        now       : if ($intro =~ m{\A xml}xmsi and $intro !~ m{\A xml-stylesheet \z}xmsi) {