Release 0.14.
[gedcom-parse.git] / NEWS
1 NOTE: NO BACKWARD COMPATIBILITY IS GUARANTEED FOR 0.x RELEASES !!
2
3 release 0.14 (20 January 2002):
4
5  - This is mainly a bugfixing release, no extra features have been added.
6
7  - Some example code is available on how to convert from UTF-8 to the locale
8    system, and how to check the library version via configure.in (see the
9    documentation for details).
10
11 release 0.13 (5 January 2002):
12
13  - Cross-references are now parsed and checked.  For this, an extra type is
14    added to the types possible in a Gedcom_val: an xref pointer. This means
15    that GEDCOM_XREF_PTR has to be used now in some places instead of
16    GEDCOM_STRING.
17    A quick change is to replace
18      GEDCOM_STRING(val)
19    by
20      GEDCOM_XREF_PTR(val)->string
21    where applicable.  But you can also store an object in the 'object' member
22    of the struct returned by GEDCOM_XREF_PTR (see documentation).
23
24  - Other interface changes in the callbacks:
25     - parsed tag value (integer) is passed next to the string value
26     - the start record callbacks now also contain a Gedcom_val (the NOTE can
27       have a value)
28
29  - Further, various bugfixes have been made.
30
31 release 0.12 (31 December 2001):
32
33  - The calling of callbacks is now completed.
34
35  - Some initial documentation is available.
36
37  - The parsed value that is returned in callbacks can now be:
38      - a null value
39      - a string
40      - a date (struct date_value)
41    See the documentation for more info.  Parsing and checking of cross-
42    references will be added next.
43
44 release 0.11 (15 December 2001):
45
46  - Initial release from Sourceforge.net (developers only !)
47   
48 # $Id$
49 # $Name$