Upgrade to MIME::Base64 3.05.
Rafael Garcia-Suarez [Mon, 20 Sep 2004 17:20:38 +0000 (17:20 +0000)]
p4raw-id: //depot/perl@23330

ext/MIME/Base64/Base64.pm
ext/MIME/Base64/Changes
ext/MIME/Base64/t/warn.t

index 67d808e..f795015 100644 (file)
@@ -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);
 
index 32e992b..1a13258 100644 (file)
@@ -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"
index 3a1e651..4ea57df 100644 (file)
@@ -52,12 +52,6 @@ $a = do {
 };
 warn;
 
-if ($^O eq 'MSWin32') {
-    for (@warn) {
-       s|\\|/|g;
-    }
-}
-
 for (@warn) {
     print "# $_";
 }