This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Text-Soundex to CPAN version 3.04
[perl5.git] / cpan / Text-Soundex / Changes
CommitLineData
11f885b5
SP
1Revision history for Perl extension Text::Soundex.
2
f09d8c37
CBW
33.04 Thu Feb 7 15:53:09 EST 2013 <rjbs@cpan.org>
4
5The module is going to be removed from the core distribution of perl, and will
6now warn (under warnings) if loaded from its installed-to-core location.
7
11f885b5
SP
83.02 Sun Feb 02 02:54:00 EST 2003 <mark@mielke.cc>
9
10The U8 type was over-used in 3.00 and 3.01. Now, "U8 *" is used only as a
11pointer into the UTF-8 string. Also, unicode now works properly on
12Perl 5.6.x as the utf8_to_uv() function is used instead of utf8n_to_uvchr()
13when compiled under a version of Perl earlier than 5.8.0.
14
153.01 Sun Jan 26 16:30:00 EST 2003 <mark@mielke.cc>
16
17A bug with non-UTF 8 strings that contain non-ASCII alphabetic characters
18was fixed. The soundex_unicode() and soundex_nara_unicode() wrapper
19routines were included and the documentation refers the user to the
20excellent Text::Unidecode module to perform soundex encodings using
21unicode strings. The Perl versions of the routines have been further
22optimized, and correct a border case involving non-alphabetic characters
23at the beginning of the string.
24
253.00 Sun Jan 26 04:08:00 EST 2003 <mark@mielke.cc>
26
27Updated documentation, simplified the Perl interface, and updated
28the XS code to be faster, and to properly work with UTF-8 strings.
29UNICODE characters outside the ASCII range (0x00 - 0x7F) are
30considered to be non-alphabetic for the purposes of the soundex
31algorithms.
32
332.10 Sun Feb 15 15:29:38 EST 1998 <mark@mielke.cc>
34
35I've put in a version of my XS code and fully integrated it with the
36existing 100% perl mechanism. The change should be virtually transparent
37to the user. XS code is approx 7.5 times faster.
38 - Mark Mielke
39
402.00 Thu Jan 1 16:22:11 1998 <mike@stok.co.uk>
41
42Incorporated Mark Mielke's rewritten version of the main soundex routine
43and made the test.pl file simpler.
44