From: Rafael Garcia-Suarez Date: Thu, 26 Aug 2004 13:02:14 +0000 (+0000) Subject: Upgrade to MIME::Base64 3.03 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2a909b05d77c62ee63fdd08f4eac0dae28944eda;p=p5sagit%2Fp5-mst-13.2.git Upgrade to MIME::Base64 3.03 p4raw-id: //depot/perl@23238 --- diff --git a/ext/MIME/Base64/Base64.pm b/ext/MIME/Base64/Base64.pm index 5164a9b..67d808e 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.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); diff --git a/ext/MIME/Base64/Changes b/ext/MIME/Base64/Changes index 678c6e4..32e992b 100644 --- a/ext/MIME/Base64/Changes +++ b/ext/MIME/Base64/Changes @@ -1,3 +1,14 @@ +2004-08-25 Gisle Aas + + 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 Release 3.02 diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index d14e48d..c58ae8f 100644 --- a/ext/MIME/Base64/QuotedPrint.pm +++ b/ext/MIME/Base64/QuotedPrint.pm @@ -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()