Upgrade to MIME::Base64 3.03
Rafael Garcia-Suarez [Thu, 26 Aug 2004 13:02:14 +0000 (13:02 +0000)]
p4raw-id: //depot/perl@23238

ext/MIME/Base64/Base64.pm
ext/MIME/Base64/Changes
ext/MIME/Base64/QuotedPrint.pm

index 5164a9b..67d808e 100644 (file)
@@ -1,6 +1,6 @@
 package MIME::Base64;
 
-# $Id: Base64.pm,v 3.2 2004/08/24 16:30:16 gisle Exp $
+# $Id: Base64.pm,v 3.3 2004/08/25 09:33:45 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.02';
+$VERSION = '3.03';
 
 MIME::Base64->bootstrap($VERSION);
 
index 678c6e4..32e992b 100644 (file)
@@ -1,3 +1,14 @@
+2004-08-25   Gisle Aas <gisle@ActiveState.com>
+
+   Release 3.03
+
+   Forgot to increment version number in MIME::QuotedPrint even
+   if its interface changed in 3.02.  As a result you will now
+   need to require MIME::QuotedPrint 3.03 if you want to ensure
+   it provides the binmode interface.
+
+
+
 2004-08-24   Gisle Aas <gisle@ActiveState.com>
 
    Release 3.02
index d14e48d..c58ae8f 100644 (file)
@@ -1,6 +1,6 @@
 package MIME::QuotedPrint;
 
-# $Id: QuotedPrint.pm,v 3.3 2004/08/24 16:22:27 gisle Exp $
+# $Id: QuotedPrint.pm,v 3.4 2004/08/25 09:33:45 gisle Exp $
 
 use strict;
 use vars qw(@ISA @EXPORT $VERSION);
@@ -9,7 +9,7 @@ require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(encode_qp decode_qp);
 
-$VERSION = "3.01";
+$VERSION = "3.03";
 
 use MIME::Base64;  # will load XS version of {en,de}code_qp()