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