Use valid HTML.
[libidn.git] / NEWS
blobcbba26611ac5a0ca6a0084e71e04745d41139b2f
1 Libidn NEWS -- History of user-visible changes.                 -*- outline -*-
2 Copyright (C) 2002, 2003 Simon Josefsson
3 See the end for copying conditions.
5 * Version 0.1.12 (released 2003-03-06)
7 ** Building libidn doesn't require gengetopt.
8 Warnings are still printed though.  Gengetopt will be replaced by argp
9 eventually.
11 ** Command line tool "idn" supports stringprep too.
13 ** New stringprep API entry point: stringprep_profile().
14 It takes a name of the stringprep profile as an argument instead of
15 the stringprep table structure.
17 ** stringprep_*.h are deprecated and will be removed in the future.
18 All symbols have been moved to stringprep.h.  The reasons are that (1)
19 the files typically only defined one CPP macro and exported one symbol
20 definition, which is wasteful as it generates too much work in the
21 manual, and (2) using one header file for all profiles allows easier
22 access to all stringprep profiles during runtime.  Note that the files
23 are still installed, but they only #include stringprep.h now, for
24 backwards compatibility.
26 ** GNU Libc add-on build instructions updated to GNU Libc 2.3.2.
28 ** SASLprep stringprep profile added.
30 ** An online interface to libidn written in PHP added to contrib/web/.
32 ** API and ABI is backwards compatible with the previous version.
34 * Version 0.1.11 (released 2003-02-26)
36 ** Command line application "idn" is included.
37 A simple wrapper around the library that allows you to invoke punycode
38 encoding/decoding and IDNA ToASCII/ToUnicode on the command line.
40 ** Emacs Lisp interface for punycode and IDNA included.
41 See punycode.el and idna.el.
43 ** API and ABI is backwards compatible with the previous version.
45 * Version 0.1.10 (released 2003-02-21)
47 ** idna_*_to_ace() and idna_*ace_to_*() are deprecated in favor of
48 ** idna_to_ascii_from_*() and idna_to_unicode_*_from_*() respectively.
49 The reason was that the old interfaces did not accept the
50 AllowUnassigned and UseSTD3ASCIIRules flags.  Note that the old
51 functions are not removed, but will be in the future.
53 ** IPS iSCSI stringprep profile added.
55 ** A new contrib/ directory added.
56 Currently it contains a Python interface to Libidn, contributed by
57 Stephane Bortzmeyer.
59 ** idna.h and punycode.h are now installed by "make install".
61 ** API and ABI is backwards compatible with the previous version.
63 * Version 0.1.9 (released 2003-02-20)
65 ** SASL ANONYMOUS "plain" stringprep profile added.
67 ** XMPP nodeprep profile fixed.
69 ** API and ABI is backwards compatible with the previous version.
70 For future releases, the NEWS entry will specifically mention whether
71 the C header API or library ABI backwards compatibility is affected.
73 * Version 0.1.8 (released 2003-02-14)
75 ** Portability fixes.
76 This includes not building the API Reference Manual with GTK-DOC by
77 default, if you want it use configure parameter --enable-gtk-doc after
78 making sure your gtkdoc-mkdb accept the --tmpl-dir parameter.
80 ** The type for string length variables is now (s)size_t.
81 Unfortunately this means binary shared library binary backwards
82 compatible is lost.
84 ** New nameprep test vectors.
86 * Version 0.1.7 (released 2003-02-12)
88 ** Uses official IDNA ACE prefix.
90 * Version 0.1.6 (released 2003-02-11)
92 ** Uses tentative IDNA ACE prefix.
94 ** Added XMPP Node/Resource Identifiers stringprep profiles.
96 ** Fixed prohibited character checks for bidi.
98 * Version 0.1.5 (released 2003-01-28)
100 ** The library can now be built as part of GNU Libc.
101 This is experimental and only tested against GNU Libc version 2.3.1.
102 See the libc/ directory, and libc/README in particular.
104 ** Bug fixes.
106 * Version 0.1.4 (released 2003-01-15)
108 ** Documentation fixes.
110 ** Portability fixes.
112 ** Bug fixes.
114 * Version 0.1.3 (released 2003-01-15)
116 ** Added texinfo manual.
118 * Version 0.1.2 (released 2003-01-08)
120 ** Added high-level IDNA API.
122 ** Added example3.c and example4.c demonstrating the high-level IDNA API.
124 * Version 0.1.1 (released 2003-01-08)
126 ** Added documentation using GTK-DOC.
128 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
129 By accident it was never removed in 0.1.0.
131 * Version 0.1.0 (released 2003-01-05)
133 ** Official GNU project.
135 ** Renamed from libstringprep to libidn.
137 ** Supports punycode and IDNA.  Caveat emptor: I don't use it myself.
139 ** Uses "unsigned long" for Unicode code points instead of "long".
140 Long is guaranteed to be at least 32 bits by C standards so it is
141 always sufficiently large, no need to use uint32_t and the like.
143 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
145 * Version 0.0.8 (released 2002-12-13)
147 ** Portability fixes (now works under Cygwin on Windows 2000).
149 ** Bug fixes.
151 * Version 0.0.7 (released 2002-12-09)
153 ** Apply all tables to entire strings, not just first hit.
155 ** Fix bidi infloop.
157 * Version 0.0.5 (released 2002-12-07)
159 ** Fix prohibited characters handling.
161 ** Fix bidi.
163 ** Renamed type (struct) stringprep_table_element to Stringprep_table_element.
165 ** Renamed type stringprep_profile to Stringprep_profile.
167 ** Renamed type (struct) stringprep_table to Stringprep_table.
169 ** Added more self-tests.
171 * Version 0.0.4 (released 2002-12-06)
173 ** Add unassigned code point handling, including self test cases.
175 ** Portability fixes.
177 * Version 0.0.3 (released 2002-11-30)
179 ** Exported utility function `stringprep_utf8_to_unichar', complementary
180 to existing `stringprep_unichar_to_utf8'.
182 ** Renamed `stringprep_utf8_to_ucs4_fast' to `stringprep_utf8_to_ucs4' to
183 clean up API. The old entry point is maintained for binary backwards
184 compatibility though.
186 ** The distribution is from now on signed using GnuPG.
188 ** Bug fixes.
190 * Version 0.0.2 (released 2002-11-07)
192 ** NFKC self test.
194 ** Bug fixes.
196 * Version 0.0.1 (released 2002-11-06)
198 ** Add utility functions stringprep_locale_charset(), stringprep_convert() 
199 and stringprep_locale_to_utf8 () that can be used to convert text from
200 system's locale into UTF-8, which should be done before invoking
201 stringprep().  The functions requires iconv() in the operating system.
203 ** An example program (example.c) that illustrates how libstringprep can be
204 used is included.
206 ** The pkg-config --libs output should now include necessary -R options.
208 * Version 0.0.0 (released 2002-11-05)
210 ** Initial release
212 ----------------------------------------------------------------------
213 Copying and distribution of this file, with or without modification,
214 are permitted in any medium without royalty provided the copyright
215 notice and this notice are preserved.