In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/1c2dcb3e90c4c27648790d3b93097c27b5af3cd4?hp=92c404cdb33b2c3bee04da4b4fe626140f9ca4f9>

- Log -----------------------------------------------------------------
commit 1c2dcb3e90c4c27648790d3b93097c27b5af3cd4
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Tue Sep 21 00:26:53 2010 +0100

    Update perldelta.pod with recent module updates

M       pod/perldelta.pod

commit dd8fe4901bbe694156696151189a25b7452fd2fe
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Tue Sep 21 00:24:48 2010 +0100

    Update Unicode-Normalize to CPAN version 1.07
    
      [DELTA]
    
      1.07  Mon Sep 20 20:20:02 2010
        - doc: about perl 5.12.x and Unicode 5.2.0
        - test: prototype of normalize_partial() and cousins in proto.t.

M       Porting/Maintainers.pl
D       cpan/Unicode-Normalize/.gitignore
M       cpan/Unicode-Normalize/Changes
M       cpan/Unicode-Normalize/Normalize.pm
M       cpan/Unicode-Normalize/README
M       cpan/Unicode-Normalize/t/proto.t
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl              |    2 +-
 cpan/Unicode-Normalize/.gitignore   |    1 -
 cpan/Unicode-Normalize/Changes      |    8 ++++++--
 cpan/Unicode-Normalize/Normalize.pm |    5 +++--
 cpan/Unicode-Normalize/README       |    2 +-
 cpan/Unicode-Normalize/t/proto.t    |    9 ++++++++-
 pod/perldelta.pod                   |    6 +++++-
 7 files changed, 24 insertions(+), 9 deletions(-)
 delete mode 100644 cpan/Unicode-Normalize/.gitignore

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 8144b4b..4b153bb 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -1518,7 +1518,7 @@ use File::Glob qw(:case);
     'Unicode::Normalize' =>
        {
        'MAINTAINER'    => 'sadahiro',
-       'DISTRIBUTION'  => 
'SADAHIRO/Unicode-Normalize-1.06-withoutworldwriteables.tar.gz',
+       'DISTRIBUTION'  => 
'SADAHIRO/Unicode-Normalize-1.07-withoutworldwriteables.tar.gz',
        'FILES'         => q[cpan/Unicode-Normalize],
        'EXCLUDED'      => [ qw{MANIFEST.N Normalize.pmN disableXS enableXS }],
        'UPSTREAM'      => 'first-come',
diff --git a/cpan/Unicode-Normalize/.gitignore 
b/cpan/Unicode-Normalize/.gitignore
deleted file mode 100644
index 424c745..0000000
--- a/cpan/Unicode-Normalize/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.h
diff --git a/cpan/Unicode-Normalize/Changes b/cpan/Unicode-Normalize/Changes
index 433edb4..893a604 100644
--- a/cpan/Unicode-Normalize/Changes
+++ b/cpan/Unicode-Normalize/Changes
@@ -1,7 +1,11 @@
 Revision history for Perl extension Unicode::Normalize.
 
+1.07  Mon Sep 20 20:20:02 2010
+    - doc: about perl 5.12.x and Unicode 5.2.0
+    - test: prototype of normalize_partial() and cousins in proto.t.
+
 1.06  Thu Feb 11 16:19:54 2010
-    - Pure Perl/mkheader: fixed the internal _getHexArray() for perl 5.11.3
+    - mkheader/Pure Perl: fixed the internal _getHexArray() for perl 5.11.3
       changes (Bug #53197).
 
 1.05  Mon Sep 28 21:43:17 2009
@@ -19,7 +23,7 @@ Revision history for Perl extension Unicode::Normalize.
 
 1.02  Tue Jun  5 22:46:45 2007
     - XSUB: mkheader, _U_stringify() - avoid unpack('C*') on unicode.
-    - test: short.t removed - pure perl is not inapprotiate for test of
+    - test: short.t removed - pure perl is not appropriate for test of
             unicode edge cases.
 
 1.01  Tue Jun 13 22:01:53 2006
diff --git a/cpan/Unicode-Normalize/Normalize.pm 
b/cpan/Unicode-Normalize/Normalize.pm
index 00be139..5bdeedf 100644
--- a/cpan/Unicode-Normalize/Normalize.pm
+++ b/cpan/Unicode-Normalize/Normalize.pm
@@ -13,7 +13,7 @@ use Carp;
 
 no warnings 'utf8';
 
-our $VERSION = '1.06';
+our $VERSION = '1.07';
 our $PACKAGE = __PACKAGE__;
 
 our @EXPORT = qw( NFC NFD NFKC NFKD );
@@ -547,7 +547,8 @@ normalization implemented by this module depends on your 
perl's version.
      5.8.4-5.8.6          4.0.1 (normalization is same as 4.0.0)
      5.8.7-5.8.8          4.1.0
        5.10.0             5.0.0
-     5.8.9, 5.10.1        5.1.0
+    5.8.9, 5.10.1         5.1.0
+    5.12.0-5.12.2         5.2.0
 
 =item Correction of decomposition mapping
 
diff --git a/cpan/Unicode-Normalize/README b/cpan/Unicode-Normalize/README
index 06c9d0c..a18f7cd 100644
--- a/cpan/Unicode-Normalize/README
+++ b/cpan/Unicode-Normalize/README
@@ -1,4 +1,4 @@
-Unicode/Normalize version 1.06
+Unicode/Normalize version 1.07
 ===================================
 
 Unicode::Normalize - Unicode Normalization Forms
diff --git a/cpan/Unicode-Normalize/t/proto.t b/cpan/Unicode-Normalize/t/proto.t
index 3c4298d..531f975 100644
--- a/cpan/Unicode-Normalize/t/proto.t
+++ b/cpan/Unicode-Normalize/t/proto.t
@@ -19,7 +19,7 @@ BEGIN {
 use Test;
 use strict;
 use warnings;
-BEGIN { plan tests => 42 };
+BEGIN { plan tests => 48 };
 use Unicode::Normalize qw(:all);
 ok(1); # If we made it this far, we're ok.
 
@@ -73,3 +73,10 @@ ok(prototype \&isNFKD_NO,     '$');
 ok(prototype \&isNFKC_NO,     '$');
 ok(prototype \&isNFKC_MAYBE,  '$');
 
+ok(prototype \&splitOnLastStarter, undef);
+ok(prototype \&normalize_partial, '$$');
+ok(prototype \&NFD_partial,  '$');
+ok(prototype \&NFC_partial,  '$');
+ok(prototype \&NFKD_partial, '$');
+ok(prototype \&NFKC_partial, '$');
+
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 7e2e2ee..4b0bf1b 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -123,7 +123,11 @@ C<NEXT> has been upgraded from version 0.64 to 0.65.
 
 =item *
 
-C<PathTools> has been upgraded from version 3.31_01 to 3.32.
+C<PathTools> has been upgraded from version 3.31_01 to 3.33.
+
+=item *
+
+C<Unicode::Normalize> has been upgraded from version 1.06 to 1.07
 
 =back
 

--
Perl5 Master Repository

Reply via email to