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.14 (unreleased)
7 ** Experimental documentation generation in contrib/doxygen/.
9 * Version 0.1.13 (released 2003-03-13)
11 ** Unfinished Java *.class files implementing the libidn API.
12 See the contrib/java/ directory. It is implemented using the Java
13 Native Interface, and light initial testing indicate interoperability
14 between GCJ, IBM's JDK and Sun's JDK.
16 ** Building is now silent when gengetopt is not present.
20 ** API and ABI is backwards compatible with the previous version.
22 * Version 0.1.12 (released 2003-03-06)
24 ** Building libidn doesn't require gengetopt.
25 Warnings are still printed though. Gengetopt will be replaced by argp
28 ** Command line tool "idn" supports stringprep too.
30 ** New stringprep API entry point: stringprep_profile().
31 It takes a name of the stringprep profile as an argument instead of
32 the stringprep table structure.
34 ** stringprep_*.h are deprecated and will be removed in the future.
35 All symbols have been moved to stringprep.h. The reasons are that (1)
36 the files typically only defined one CPP macro and exported one symbol
37 definition, which is wasteful as it generates too much work in the
38 manual, and (2) using one header file for all profiles allows easier
39 access to all stringprep profiles during runtime. Note that the files
40 are still installed, but they only #include stringprep.h now, for
41 backwards compatibility.
43 ** GNU Libc add-on build instructions updated to GNU Libc 2.3.2.
45 ** SASLprep stringprep profile added.
47 ** An online interface to libidn written in PHP added to contrib/web/.
49 ** API and ABI is backwards compatible with the previous version.
51 * Version 0.1.11 (released 2003-02-26)
53 ** Command line application "idn" is included.
54 A simple wrapper around the library that allows you to invoke punycode
55 encoding/decoding and IDNA ToASCII/ToUnicode on the command line.
57 ** Emacs Lisp interface for punycode and IDNA included.
58 See punycode.el and idna.el.
60 ** API and ABI is backwards compatible with the previous version.
62 * Version 0.1.10 (released 2003-02-21)
64 ** idna_*_to_ace() and idna_*ace_to_*() are deprecated in favor of
65 ** idna_to_ascii_from_*() and idna_to_unicode_*_from_*() respectively.
66 The reason was that the old interfaces did not accept the
67 AllowUnassigned and UseSTD3ASCIIRules flags. Note that the old
68 functions are not removed, but will be in the future.
70 ** IPS iSCSI stringprep profile added.
72 ** A new contrib/ directory added.
73 Currently it contains a Python interface to Libidn, contributed by
76 ** idna.h and punycode.h are now installed by "make install".
78 ** API and ABI is backwards compatible with the previous version.
80 * Version 0.1.9 (released 2003-02-20)
82 ** SASL ANONYMOUS "plain" stringprep profile added.
84 ** XMPP nodeprep profile fixed.
86 ** API and ABI is backwards compatible with the previous version.
87 For future releases, the NEWS entry will specifically mention whether
88 the C header API or library ABI backwards compatibility is affected.
90 * Version 0.1.8 (released 2003-02-14)
93 This includes not building the API Reference Manual with GTK-DOC by
94 default, if you want it use configure parameter --enable-gtk-doc after
95 making sure your gtkdoc-mkdb accept the --tmpl-dir parameter.
97 ** The type for string length variables is now (s)size_t.
98 Unfortunately this means binary shared library binary backwards
101 ** New nameprep test vectors.
103 * Version 0.1.7 (released 2003-02-12)
105 ** Uses official IDNA ACE prefix.
107 * Version 0.1.6 (released 2003-02-11)
109 ** Uses tentative IDNA ACE prefix.
111 ** Added XMPP Node/Resource Identifiers stringprep profiles.
113 ** Fixed prohibited character checks for bidi.
115 * Version 0.1.5 (released 2003-01-28)
117 ** The library can now be built as part of GNU Libc.
118 This is experimental and only tested against GNU Libc version 2.3.1.
119 See the libc/ directory, and libc/README in particular.
123 * Version 0.1.4 (released 2003-01-15)
125 ** Documentation fixes.
127 ** Portability fixes.
131 * Version 0.1.3 (released 2003-01-15)
133 ** Added texinfo manual.
135 * Version 0.1.2 (released 2003-01-08)
137 ** Added high-level IDNA API.
139 ** Added example3.c and example4.c demonstrating the high-level IDNA API.
141 * Version 0.1.1 (released 2003-01-08)
143 ** Added documentation using GTK-DOC.
145 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
146 By accident it was never removed in 0.1.0.
148 * Version 0.1.0 (released 2003-01-05)
150 ** Official GNU project.
152 ** Renamed from libstringprep to libidn.
154 ** Supports punycode and IDNA. Caveat emptor: I don't use it myself.
156 ** Uses "unsigned long" for Unicode code points instead of "long".
157 Long is guaranteed to be at least 32 bits by C standards so it is
158 always sufficiently large, no need to use uint32_t and the like.
160 ** The obsolete stringprep_utf8_to_ucs4_fast API entry point was removed.
162 * Version 0.0.8 (released 2002-12-13)
164 ** Portability fixes (now works under Cygwin on Windows 2000).
168 * Version 0.0.7 (released 2002-12-09)
170 ** Apply all tables to entire strings, not just first hit.
174 * Version 0.0.5 (released 2002-12-07)
176 ** Fix prohibited characters handling.
180 ** Renamed type (struct) stringprep_table_element to Stringprep_table_element.
182 ** Renamed type stringprep_profile to Stringprep_profile.
184 ** Renamed type (struct) stringprep_table to Stringprep_table.
186 ** Added more self-tests.
188 * Version 0.0.4 (released 2002-12-06)
190 ** Add unassigned code point handling, including self test cases.
192 ** Portability fixes.
194 * Version 0.0.3 (released 2002-11-30)
196 ** Exported utility function `stringprep_utf8_to_unichar', complementary
197 to existing `stringprep_unichar_to_utf8'.
199 ** Renamed `stringprep_utf8_to_ucs4_fast' to `stringprep_utf8_to_ucs4' to
200 clean up API. The old entry point is maintained for binary backwards
201 compatibility though.
203 ** The distribution is from now on signed using GnuPG.
207 * Version 0.0.2 (released 2002-11-07)
213 * Version 0.0.1 (released 2002-11-06)
215 ** Add utility functions stringprep_locale_charset(), stringprep_convert()
216 and stringprep_locale_to_utf8 () that can be used to convert text from
217 system's locale into UTF-8, which should be done before invoking
218 stringprep(). The functions requires iconv() in the operating system.
220 ** An example program (example.c) that illustrates how libstringprep can be
223 ** The pkg-config --libs output should now include necessary -R options.
225 * Version 0.0.0 (released 2002-11-05)
229 ----------------------------------------------------------------------
230 Copying and distribution of this file, with or without modification,
231 are permitted in any medium without royalty provided the copyright
232 notice and this notice are preserved.