This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Unicode::Normalize 1.02
[perl5.git] / ext / Unicode / Normalize / Changes
1 Revision history for Perl extension Unicode::Normalize.
2
3 1.02  Tue Jun  5 22:46:45 2007
4     - XSUB: mkheader, _U_stringify() - avoid unpack('C*') on unicode.
5     - test: short.t removed - pure perl is not inapprotiate for test of
6             unicode edge cases.
7
8 1.01  Tue Jun 13 22:01:53 2006
9     - XSUB: sv_setpvn() needs cast to (char*).
10     - XSUB: avoid double FETCH for tied scalar variables.
11     - added tie.t.
12
13 1.00  Thu May 25 20:35:06 2006
14     - Pure Perl: compose($not_canonically_reordered) works like that in XSUB,
15       where an intervening character with higher combining class blocks
16       the composition. (This change doesn't affect any normalization forms.)
17     - XSUB: NFD(), NFC(), NFKD(), NFC(), and FCC() are now in XSUB, then
18       internal subroutine calls are avoided.
19     - The functions isComp_Ex(), isNFD_NO(), isNFC_NO(), isNFC_MAYBE(),
20       isNFKD_NO(), isNFKC_NO(), and isNFKC_MAYBE() are documented.
21     - Tests are more amplified and documentations are more clarified.
22     - Makefile.PL: Change 26295 is incorporated.
23
24 0.32  Tue Apr  5 22:47:09 2005
25     - Some literal and grammatical errors in POD are fixed.
26
27 0.31  Tue Apr  5 21:43:20 2005
28     - CAVEATS in POD is added.
29     - Some test cases from Unicode Public Review Issue #29
30       (Normalization Issue) are added to norm.t and test.t.
31     - do 'mkheader' returns true so that Makefile.PL will catch error.
32     - META.yml is added.
33
34 0.30  Sun May  2 14:35:00 2004
35     - XSUB: (perl 5.8.1 or later) improved utf8 upgrade of non-POK
36       (private POK) values like tied scalars, overloaded objects, etc.
37
38 0.28  Sat Nov 22 23:46:24 2003
39     - XSUB: even if string contains a malformed, "short" Unicode character,
40       decompose() and reorder() will be safe. Garbage will be no longer added.
41     - added null.t and short.t.
42     - now truely added illegal.t (in 0.27, forgot to change MANIFEST).
43
44 0.27  Sun Nov 16 13:16:21 2003
45     - Illegal code points (surrogate and noncharacter) will be allowed
46       (keep your code with <no warnings 'utf8';>);
47       but porting is not successful in the case of ((Pure Perl) and
48       (Perl 5.7.3 or before)).
49     - added illegal.t.
50
51 0.26  Sat Nov 15 21:52:30 2003
52     - doc fix: s/FCD(?= is unique)/FCC/;
53
54 0.25  Mon Oct  6 22:26:03 2003
55     - added form.t and proto.t.
56
57 0.24  Sat Oct  4 17:57:10 2003
58     - supports FCD and FCC (UTN #5):
59       FCD(), normalize('FCD'), checkFCD(), check('FCD');
60       FCC(), normalize('FCC'), checkFCC(), check('FCC').
61     - changed INSTALLATION (cf. README).
62       * Initial state of the distribution is changed to XSUB.  To build
63         pure Perl, type <perl disableXS> before <perl Makefile.PL>.
64       * The purePerl-XSUB converter is now provided as two perl
65         script files, named "enableXS" and "disableXS".
66         (no longer <perl Makefile.PL xs> and <perl Makefile.PL noxs>.)
67       * simplified Makefile.PL.
68     - added fcdc.t and split.t.
69
70 0.23  Sat Jun 28 20:38:10 2003
71     - bug fix: \0-terminate in compose() in XS.
72     - tweak in pure perl: forced $codepoint to numeric (i.e. "+0065" to 65)
73     - tweak of POD and README.
74
75 0.22  Mon Jun 09 22:23:10 2003
76     - internal tweak (again): pack_U() and unpack_U().
77
78 0.21  Thu Apr 02 23:12:54 2003
79     - internal tweak: for (?un)pack 'U'.
80
81 0.20  Sun Mar 02 13:29:25 2003
82     - decompose Hangul syllables in a decomposition mapping.
83
84 0.18  ... unreleased
85     - synchronization with bleadperl.
86     - Change 16262: by sadahiro
87
88 0.17  Sun Apr 28 23:13:32 2002
89     - now normalize('NFC',$1) should work.
90     - Some croak()'s are added in mkheader.
91     - synchronization with bleadperl.
92     - Change 15596: by sadahiro
93     - Change 16136: by pudge
94
95 0.16  Thu Mar 21 13:36:14 2002
96     - synchronization with bleadperl.
97     - Change 15318: by jhi
98     - Change 15319: by jhi
99
100 0.15  Tue Mar 19 22:04:07 2002
101     - Quick check is implemented.
102     - decompose(), reorder(), and compose() are documented.
103     - The Non-XS version is also independent of Lingua::KO::Hangul::Util.
104
105 0.14  Sat Feb 02 20:40:14 2002
106     - synchronization with bleadperl.
107     - Change 14128: by Arthur
108     - Change 14129: by jhi
109     - Change 14156: by sadahiro
110     - Change 14199: by Nikola Knezevic
111     - Change 14308: by Benjamin Goldberg
112     - Change 14370: by jhi
113
114 0.13  Sat Dec 01 11:42:43 2001
115     - modify Makefile.PL to enable rebuild.
116       (This problem is pointed out by David Dyck.)
117     - Change 13388: by Jarkko Hietaniemi.
118
119 0.12  Wed Nov 29 22:49:02 2001
120     - documentation in .pod is appended to .pm and the .pod is removed.
121      (only POD in NON-XS refers to Lingua::KO::Hangul::Util.)
122
123 0.11  Sat Nov 24 10:18:38 2001
124     - documentation of some functions for character data.
125     - Change 12909: by Jarkko Hietaniemi.
126     - Change 13228: by Peter Prymmer.
127
128 0.10  Sat Nov 03 16:30:20 2001
129     - The XS version is now independent of Lingua::KO::Hangul::Util.
130       (though the Non-XS version still requires that.)
131
132 0.09  Fri Nov 02 22:39:30 2001
133     - remove pTHX_.
134
135 0.08  Thu Nov 01 23:20:42 2001
136     - use Lingua::KO::Hangul::Util 0.06 and remove "hangul.h".
137
138 0.07  Wed Oct 31 22:06:42 2001
139     - modify internal. decompose() - reorder() - compose().
140
141 0.06  Sun Oct 28 14:28:46 2001
142     - an XS version.
143     (but the Non-XS version is also supported.)
144
145 0.05  Wed Oct 10 22:02:15 2001 (not released)
146     - %Compos contains unnecessary singletons
147       (though it did not cause any bug, only useless).
148       They will not be stored.
149
150 0.04  Wed Aug 15 19:02:41 2001
151     - fix: NFD("") and NFKD("") must return "", not but undef.
152
153 0.03  Fri Aug 10 22:44:18 2001
154     - rename the module name to Unicode::Normalize.
155     - normalize takes two arguments.
156
157 0.02  Thu Aug  9 22:56:36 2001
158     - add function normalize
159
160 0.01  Mon Aug  6 21:45:11 2001
161     - original version; created by h2xs 1.21 with options
162           -A -X -n Text::Unicode::Normalize
163