diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-21 04:26:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-21 04:26:03 +0000 |
commit | be32ca575491a02897628a19ea426507fca1e34e (patch) | |
tree | 20b96ec13e26c9ee4931ea4a4311eca90bc4ff87 /ext/Unicode | |
parent | 5b3759650c2f8a98ff06da187583b1bc8e6b7541 (diff) | |
download | perl-be32ca575491a02897628a19ea426507fca1e34e.tar.gz |
Upgrade to Unicode::Normalize 0.16.
p4raw-id: //depot/perl@15380
Diffstat (limited to 'ext/Unicode')
-rw-r--r-- | ext/Unicode/Normalize/Changes | 5 | ||||
-rw-r--r-- | ext/Unicode/Normalize/Normalize.pm | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ext/Unicode/Normalize/Changes b/ext/Unicode/Normalize/Changes index c905acc79a..37f7dee818 100644 --- a/ext/Unicode/Normalize/Changes +++ b/ext/Unicode/Normalize/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Unicode::Normalize. +0.16 Thu Mar 21 13:36:14 2002 + - synchronization with bleadperl. + - Change 15318: by jhi + - Change 15319: by jhi + 0.15 Tue Mar 19 22:04:07 2002 - Quick check is implemented. - decompose(), reorder(), and compose() are documented. diff --git a/ext/Unicode/Normalize/Normalize.pm b/ext/Unicode/Normalize/Normalize.pm index b3bc9d6d08..52d1232d15 100644 --- a/ext/Unicode/Normalize/Normalize.pm +++ b/ext/Unicode/Normalize/Normalize.pm @@ -2,7 +2,7 @@ package Unicode::Normalize; BEGIN { if (ord("A") == 193) { - die "Unicode::Normalize not ported to EBCDIC\n"; + die "Unicode::Normalize not ported to EBCDIC\n"; } } @@ -11,7 +11,7 @@ use strict; use warnings; use Carp; -our $VERSION = '0.15'; +our $VERSION = '0.16'; our $PACKAGE = __PACKAGE__; require Exporter; |