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