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