diff options
Diffstat (limited to 'ext/MIME/Base64')
-rw-r--r-- | ext/MIME/Base64/Base64.pm | 4 | ||||
-rw-r--r-- | ext/MIME/Base64/Changes | 19 | ||||
-rw-r--r-- | ext/MIME/Base64/t/warn.t | 6 |
3 files changed, 21 insertions, 8 deletions
diff --git a/ext/MIME/Base64/Base64.pm b/ext/MIME/Base64/Base64.pm index 67d808eb7c..f79501526c 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 32e992ba10..1a132586ce 100644 --- a/ext/MIME/Base64/Changes +++ b/ext/MIME/Base64/Changes @@ -1,3 +1,21 @@ +2004-09-20 Gisle Aas <gisle@ActiveState.com> + + Release 3.05 + + Steve Hay <steve.hay@uk.radan.com> found the warn test broken + on Windows and provided a fix. + + + +2004-09-18 Gisle Aas <gisle@ActiveState.com> + + 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 <gisle@ActiveState.com> Release 3.03 @@ -15,6 +33,7 @@ The encode_qp() function now takes an optional third argument to select binary encoding mode. + <https://rt.cpan.org/Ticket/Display.html?id=7456> 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 3a1e651d82..4ea57df988 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 "# $_"; } |