Fix.
[libidn.git] / NEWS
blobce03fa69d4eac5fdd6e9320c0effb53f825972d1
1 Libidn NEWS -- History of user-visible changes.                 -*- outline -*-
2 See the end for copying conditions.
4 * Version 0.1.0
6 ** Official GNU project.
8 ** Renamed from libstringprep to libidn.
10 ** Supports punycode and IDNA.  Caveat emptor: I don't use it myself.
12 ** Uses "unsigned long" for Unicode code points instead of "long".
13 Long is guaranteed to be at least 32 bits by C standards so it is
14 always sufficiently large, no need to use uint32_t and the like.
16 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
18 * Version 0.0.8
20 ** Portability fixes (now works under Cygwin on Windows 2000).
22 ** Bug fixes.
24 * Version 0.0.7
26 ** Apply all tables to entire strings, not just first hit.
28 ** Fix bidi infloop.
30 * Version 0.0.5
32 ** Fix prohibited characters handling.
34 ** Fix bidi.
36 ** Renamed type (struct) stringprep_table_element to Stringprep_table_element.
38 ** Renamed type stringprep_profile to Stringprep_profile.
40 ** Renamed type (struct) stringprep_table to Stringprep_table.
42 ** Added more self-tests.
44 * Version 0.0.4
46 ** Add unassigned code point handling, including self test cases.
48 ** Portability fixes.
50 * Version 0.0.3
52 ** Exported utility function `stringprep_utf8_to_unichar', complementary
53 to existing `stringprep_unichar_to_utf8'.
55 ** Renamed `stringprep_utf8_to_ucs4_fast' to `stringprep_utf8_to_ucs4' to
56 clean up API. The old entry point is maintained for binary backwards
57 compatibility though.
59 ** The distribution is from now on signed using GnuPG.
61 ** Bug fixes.
63 * Version 0.0.2
65 ** NFKC self test.
67 ** Bug fixes.
69 * Version 0.0.1
71 ** Add utility functions stringprep_locale_charset(), stringprep_convert() 
72 and stringprep_locale_to_utf8 () that can be used to convert text from
73 system's locale into UTF-8, which should be done before invoking
74 stringprep().  The functions requires iconv() in the operating system.
76 ** An example program (example.c) that illustrates how libstringprep can be
77 used is included.
79 ** The pkg-config --libs output should now include necessary -R options.
81 * Version 0.0.0
83 ** Initial release
85 ----------------------------------------------------------------------
86 Copyright (C) 2002 Simon Josefsson
88 Copying and distribution of this file, with or without modification,
89 are permitted in any medium without royalty provided the copyright
90 notice and this notice are preserved.