diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-07-04 00:07:26 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2011-07-04 07:44:45 +0100 |
commit | 0cb4637e2e588d1cd19e0660a7566b3cd756091b (patch) | |
tree | 6fac133d2b2dd4a4bef424718cd6714003890da4 | |
parent | 7e03b518f310049554c2f316e4dd3051a0af0acf (diff) | |
download | perl-0cb4637e2e588d1cd19e0660a7566b3cd756091b.tar.gz |
Update Unicode-Collate to CPAN version 0.77
[DELTA]
0.77 Sun Jul 3 21:15:08 2011
- xs: [perl #93470] [PATCH] consting in Collate.xs by Robin Barker.
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/Unicode-Collate/Changes | 9 | ||||
-rw-r--r-- | cpan/Unicode-Collate/Collate.pm | 2 | ||||
-rw-r--r-- | cpan/Unicode-Collate/Collate.xs | 4 | ||||
-rw-r--r-- | cpan/Unicode-Collate/README | 2 | ||||
-rw-r--r-- | pod/perldelta.pod | 6 |
6 files changed, 17 insertions, 8 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 82659108a0..b04249e7f8 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1950,7 +1950,7 @@ use File::Glob qw(:case); 'Unicode::Collate' => { 'MAINTAINER' => 'sadahiro', - 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.76-withoutworldwriteables.tar.gz', + 'DISTRIBUTION' => 'SADAHIRO/Unicode-Collate-0.77-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 db179ea772..7fc92e7488 100644 --- a/cpan/Unicode-Collate/Changes +++ b/cpan/Unicode-Collate/Changes @@ -1,12 +1,15 @@ Revision history for Perl module Unicode::Collate. +0.77 Sun Jul 3 21:15:08 2011 + - xs: [perl #93470] [PATCH] consting in Collate.xs by Robin Barker. + 0.76 Sun May 15 10:06:59 2011 - - updated CJK/Pinyin.pm and CJK/Stroke.pm according to CLDR 1.9.1 using - type='pinyin' alt='short' and type='stroke' alt='short' respectively. + - updated CJK/Pinyin.pm and CJK/Stroke.pm according to CLDR 1.9.1. + (type='pinyin' alt='short' and type='stroke' alt='short' respectively) 0.75 Sat May 7 21:07:38 2011 - supported ignore_level2 and rewrite. - - Added iglevel2.t and rewrite.t in t. + - added iglevel2.t and rewrite.t in t. 0.74 Mon Mar 21 19:07:38 2011 - removed sw (Swahili) collation according to CLDR 1.9. diff --git a/cpan/Unicode-Collate/Collate.pm b/cpan/Unicode-Collate/Collate.pm index 906b63c92a..d72dadf11d 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.76'; +our $VERSION = '0.77'; our $PACKAGE = __PACKAGE__; ### begin XS only ### diff --git a/cpan/Unicode-Collate/Collate.xs b/cpan/Unicode-Collate/Collate.xs index 7f00642820..d9c14a6e3f 100644 --- a/cpan/Unicode-Collate/Collate.xs +++ b/cpan/Unicode-Collate/Collate.xs @@ -249,7 +249,7 @@ getHST (code, uca_vers = 0) UV code; IV uca_vers; PREINIT: - char * hangtype; + const char * hangtype; STRLEN typelen; CODE: if (codeRange(Hangul_SIni, Hangul_SFin)) { @@ -632,7 +632,7 @@ visualizeSortKey (self, key) STRLEN klen, dlen; UV uv; IV uca_vers; - static char *upperhex = "0123456789ABCDEF"; + static const char *upperhex = "0123456789ABCDEF"; CODE: if (SvROK(self) && SvTYPE(SvRV(self)) == SVt_PVHV) selfHV = (HV*)SvRV(self); diff --git a/cpan/Unicode-Collate/README b/cpan/Unicode-Collate/README index fcda1f332e..3e3b9ad3be 100644 --- a/cpan/Unicode-Collate/README +++ b/cpan/Unicode-Collate/README @@ -1,4 +1,4 @@ -Unicode/Collate version 0.76 +Unicode/Collate version 0.77 =============================== NAME diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 15e67079ff..eb4c9cd6e6 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -184,6 +184,12 @@ L<Math::BigInt::FastCalc> has been upgraded from version 0.28 to version 0.29. The XS code is now compiled with C<PERL_NO_GET_CONTEXT>, which will aid performance under ithreads. +=item * + +L<Unicode::Collate> has been upgraded from version 0.76 to version 0.77 + +Applied [perl #93470] silencing compiler warnings with -Wwrite-strings + =back =head2 Removed Modules and Pragmata |