diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-08-26 13:02:14 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-08-26 13:02:14 +0000 |
commit | 2a909b05d77c62ee63fdd08f4eac0dae28944eda (patch) | |
tree | 4a9901397d2002278d5d4ae6abd0c4f0a04a46c7 /ext/MIME | |
parent | 9e87bee3edce0d4df559a94caacbb7a83edc7a92 (diff) | |
download | perl-2a909b05d77c62ee63fdd08f4eac0dae28944eda.tar.gz |
Upgrade to MIME::Base64 3.03
p4raw-id: //depot/perl@23238
Diffstat (limited to 'ext/MIME')
-rw-r--r-- | ext/MIME/Base64/Base64.pm | 4 | ||||
-rw-r--r-- | ext/MIME/Base64/Changes | 11 | ||||
-rw-r--r-- | ext/MIME/Base64/QuotedPrint.pm | 4 |
3 files changed, 15 insertions, 4 deletions
diff --git a/ext/MIME/Base64/Base64.pm b/ext/MIME/Base64/Base64.pm index 5164a9b264..67d808eb7c 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 678c6e42a7..32e992ba10 100644 --- a/ext/MIME/Base64/Changes +++ b/ext/MIME/Base64/Changes @@ -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 diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index d14e48deb7..c58ae8f909 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() |