From: Rafael Garcia-Suarez Date: Mon, 20 Sep 2004 17:20:38 +0000 (+0000) Subject: Upgrade to MIME::Base64 3.05. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2a99bba51541367c1fa77cddaf4838ae3213738a;p=p5sagit%2Fp5-mst-13.2.git Upgrade to MIME::Base64 3.05. p4raw-id: //depot/perl@23330 --- diff --git a/ext/MIME/Base64/Base64.pm b/ext/MIME/Base64/Base64.pm index 67d808e..f795015 100644 --- a/ext/MIME/Base64/Base64.pm +++ b/ext/MIME/Base64/Base64.pm @@ -1,6 +1,6 @@ package MIME::Base64; -# $Id: Base64.pm,v 3.3 2004/08/25 09:33:45 gisle Exp $ +# $Id: Base64.pm,v 3.5 2004/09/20 09:23:23 gisle Exp $ use strict; use vars qw(@ISA @EXPORT $VERSION); @@ -10,7 +10,7 @@ require DynaLoader; @ISA = qw(Exporter DynaLoader); @EXPORT = qw(encode_base64 decode_base64); -$VERSION = '3.03'; +$VERSION = '3.05'; MIME::Base64->bootstrap($VERSION); diff --git a/ext/MIME/Base64/Changes b/ext/MIME/Base64/Changes index 32e992b..1a13258 100644 --- a/ext/MIME/Base64/Changes +++ b/ext/MIME/Base64/Changes @@ -1,3 +1,21 @@ +2004-09-20 Gisle Aas + + Release 3.05 + + Steve Hay found the warn test broken + on Windows and provided a fix. + + + +2004-09-18 Gisle Aas + + Release 3.04 + + Fixed the bad-sv.t test script to actually contain the + correct expected result as of v3.02. + + + 2004-08-25 Gisle Aas Release 3.03 @@ -15,6 +33,7 @@ The encode_qp() function now takes an optional third argument to select binary encoding mode. + The result of encode_qp($non_empty, $eol) will now always be $eol terminated. If the string to encode does not end with "\n" diff --git a/ext/MIME/Base64/t/warn.t b/ext/MIME/Base64/t/warn.t index 3a1e651..4ea57df 100644 --- a/ext/MIME/Base64/t/warn.t +++ b/ext/MIME/Base64/t/warn.t @@ -52,12 +52,6 @@ $a = do { }; warn; -if ($^O eq 'MSWin32') { - for (@warn) { - s|\\|/|g; - } -} - for (@warn) { print "# $_"; }