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