In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/cac3df65afe2fed9ad80147a24b5ae6ea601a609?hp=d981ef2485de59a9de4d1fe1ddfbd76889abe0b9>
- Log ----------------------------------------------------------------- commit cac3df65afe2fed9ad80147a24b5ae6ea601a609 Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk> Date: Tue Jan 18 23:14:55 2011 +0000 Update Unicode-Collate to CPAN version 0.71 [DELTA] 0.71 Tue Jan 18 22:29:44 2011 - t/loc_test.t should not fail without Unicode::Normalize. ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Unicode-Collate/Changes | 6 +++++- cpan/Unicode-Collate/Collate.pm | 2 +- cpan/Unicode-Collate/Collate/Locale.pm | 2 +- cpan/Unicode-Collate/README | 2 +- cpan/Unicode-Collate/t/loc_test.t | 3 ++- pod/perldelta.pod | 2 +- 7 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index d5a0eeb..8f0a3d1 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1577,7 +1577,7 @@ use File::Glob qw(:case); 'Unicode::Collate' => { 'MAINTAINER' => 'sadahiro', - 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.70-withoutworldwriteables.tar.gz', + 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.71-withoutworldwriteables.tar.gz', 'FILES' => q[cpan/Unicode-Collate], 'EXCLUDED' => [ qr{N$}, qr{^data/}, diff --git a/cpan/Unicode-Collate/Changes b/cpan/Unicode-Collate/Changes index c7bba12..d5fd8b4 100644 --- a/cpan/Unicode-Collate/Changes +++ b/cpan/Unicode-Collate/Changes @@ -1,7 +1,11 @@ Revision history for Perl module Unicode::Collate. +0.71 Tue Jan 18 22:29:44 2011 + - t/loc_test.t should not fail without Unicode::Normalize. + 0.70 Sun Jan 16 20:31:07 2011 - - Now U::C::Locale->new will use the compiled DUCET via XS. + - Now U::C::Locale->new will use the compiled DUCET via XS if available. + added some tests in t/loc_test.t. 0.69 Sat Jan 15 19:41:11 2011 - clarified about XSUB. revised INSTALL in README. diff --git a/cpan/Unicode-Collate/Collate.pm b/cpan/Unicode-Collate/Collate.pm index 05822b2..4268b45 100644 --- a/cpan/Unicode-Collate/Collate.pm +++ b/cpan/Unicode-Collate/Collate.pm @@ -14,7 +14,7 @@ use File::Spec; no warnings 'utf8'; -our $VERSION = '0.70'; +our $VERSION = '0.71'; our $PACKAGE = __PACKAGE__; require DynaLoader; diff --git a/cpan/Unicode-Collate/Collate/Locale.pm b/cpan/Unicode-Collate/Collate/Locale.pm index 39f04fc..c589144 100644 --- a/cpan/Unicode-Collate/Collate/Locale.pm +++ b/cpan/Unicode-Collate/Collate/Locale.pm @@ -4,7 +4,7 @@ use strict; use Carp; use base qw(Unicode::Collate); -our $VERSION = '0.70'; +our $VERSION = '0.71'; use File::Spec; diff --git a/cpan/Unicode-Collate/README b/cpan/Unicode-Collate/README index 7142c5f..002058f 100644 --- a/cpan/Unicode-Collate/README +++ b/cpan/Unicode-Collate/README @@ -1,4 +1,4 @@ -Unicode/Collate version 0.70 +Unicode/Collate version 0.71 =============================== NAME diff --git a/cpan/Unicode-Collate/t/loc_test.t b/cpan/Unicode-Collate/t/loc_test.t index 60c9773..8d7d74a 100644 --- a/cpan/Unicode-Collate/t/loc_test.t +++ b/cpan/Unicode-Collate/t/loc_test.t @@ -130,7 +130,8 @@ ok("@sortFr" eq "@listFr"); { my $keyXS = '__useXS'; # see Unicode::Collate internal - my $UseXS = ref Unicode::Collate->new->{$keyXS}; + my $noLoc = Unicode::Collate->new(normalization => undef); + my $UseXS = ref($noLoc->{$keyXS}); ok(ref($Collator->{$keyXS}), $UseXS); ok(ref($objFr ->{$keyXS}), $UseXS); ok(ref($objEs ->{$keyXS}), $UseXS); diff --git a/pod/perldelta.pod b/pod/perldelta.pod index bc87356..535ded9 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -253,7 +253,7 @@ C<Time::Local> has been upgraded from version 1.1901_01 to 1.2000. =item * -C<Unicode::Collate> has been upgraded from version 0.68 to 0.70 +C<Unicode::Collate> has been upgraded from version 0.68 to 0.71 This also sees the switch from using the pure-perl version of this module to the XS version. -- Perl5 Master Repository