r18166 - in /branches/upstream/libmime-charset-perl/current: Changes Charset.pm META.yml

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Mon Mar 31 14:55:28 UTC 2008


Author: gregoa-guest
Date: Mon Mar 31 14:55:27 2008
New Revision: 18166

URL: http://svn.debian.org/wsvn/?sc=1&rev=18166
Log:
[svn-upgrade] Integrating new upstream version, libmime-charset-perl (1.004)

Modified:
    branches/upstream/libmime-charset-perl/current/Changes
    branches/upstream/libmime-charset-perl/current/Charset.pm
    branches/upstream/libmime-charset-perl/current/META.yml

Modified: branches/upstream/libmime-charset-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-charset-perl/current/Changes?rev=18166&op=diff
==============================================================================
--- branches/upstream/libmime-charset-perl/current/Changes (original)
+++ branches/upstream/libmime-charset-perl/current/Changes Mon Mar 31 14:55:27 2008
@@ -1,11 +1,12 @@
-2008-03-29	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
-	* Release 1.003.
+2008-03-30	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
+	* Release 1.004.
 	* Added ESTI GSM 03.38 which won't be used for MIME
 	  messages (experimental).
 	* _Compat.pm: resolve_alias(): real aliasing taken from
 	  Encode module.
 	* Numeric values are allowed for ``Replacement'' options.
 	* Added tests for aliases (some MIME preferred names only).
+	* Bug Fix: Perl <=5.005: our is ``withdrawn''.
 
 2008-03-20	Hatuka*nezumi - IKEDA Soji	<hatuka at nezumi.nu>
 	* Release 1.002.

Modified: branches/upstream/libmime-charset-perl/current/Charset.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-charset-perl/current/Charset.pm?rev=18166&op=diff
==============================================================================
--- branches/upstream/libmime-charset-perl/current/Charset.pm (original)
+++ branches/upstream/libmime-charset-perl/current/Charset.pm Mon Mar 31 14:55:27 2008
@@ -93,7 +93,7 @@
 =cut
 
 use strict;
-use vars qw(@ISA $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS);
+use vars qw(@ISA $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS $Config);
 use Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(body_encoding canonical_charset header_encoding output_charset
@@ -121,7 +121,7 @@
     }
 }
 
-$VERSION = '1.003';
+$VERSION = '1.004';
 
 ######## Private Attributes ########
 
@@ -266,7 +266,7 @@
 
 ######## Public Configuration Attributes ########
 
-our $Config = {
+$Config = {
     Detect7bit =>      'YES',
     Mapping =>         'EXTENDED',
     Replacement =>     'DEFAULT',

Modified: branches/upstream/libmime-charset-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libmime-charset-perl/current/META.yml?rev=18166&op=diff
==============================================================================
--- branches/upstream/libmime-charset-perl/current/META.yml (original)
+++ branches/upstream/libmime-charset-perl/current/META.yml Mon Mar 31 14:55:27 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         MIME-Charset
-version:      1.003
+version:      1.004
 version_from: Charset.pm
 installdirs:  site
 requires:




More information about the Pkg-perl-cvs-commits mailing list