[2000 10 03] [v1.0.0pre1]
      - dotconf.h-callback_types.diff applied which puts enum callback_types
        to where it belongs. thanx to _Dimitry Bukin_ for providing the patch!

[2000 09 30] [v1.0.0pre1]
      - 5 examples are available; ranging from simple to quite sophisticated
      - libpool - a simple memory management library added to the dist
      - this will be the 1.0 release soon now

[2000 09 24] 
      - complete API redesign is finished; 
****    backward-compatibility is totally and completely broken!!
        see the doc/ directory for more information


[2000 02 23] [v0.7.0]
CAUTION: - config_read call has changed. it additionally takes a flags
           argument now; with this one can change the runtime behaviour
           of dot.conf to for instance recognize options case insensitive
         - config_warning takes 2 additional arguments too;
           the first one is the warning type which has been implemented with
           the syslog warning levels in mind (as suggested by Sander Steffann)
           and the second argument now is some error number to help an
           errorhandler determine what to filter out (see manpage for details)
      - introduction of config_callback to for instance register your own
        errorhandler, which can decide what to print or ignore
      - added macro CFG_TOGGLED to dotconf.h because i wanted to
      apply the original toggle check to an ARG_LIST value
      - updated the manpage to reflect the improvements

[2000 02 09] [v0.6.2]
      - fixed the package to contain the win32.zip
       
[2000 01 30] [v0.6.1]
      - <red-eye@usa.net> fixed a memory allocation error with module
      registrations
      - <red-eye@usa.net> error checking and changes for win32 (tested
      with VC++ 6.0)
      - license change from GPL 2.0 to LGPL 2.1
	
[2000 01 28] [v0.6.0]
      - added functionality for ARG_NAME: have dotconf use your ARG_NAME
      callback as a fallback for yet unknown options. [ or use dot.conf as
      a plain parser and do the real stuff yourself => apache mime.types ;) ]
      - the provided example may now be called with an argument which is
      then used as the configuration file rather than 'sample.conf'

      [2000 01 26]
      - added some macros for convenience: FUNC_ARGNONE, FUNC_ARGINT,
      FUNC_ARGSTR, FUNC_ARGRAW, FUNC_ARGLIST, FUNC_ARGNAME, FUNC_ARGTOGGLE
      these macros convenciently help you choose the right function
      definition/declaration
      [2000 01 24]
      - changed config_register_options() to allow unlimited number of
        'registrations'
      [2000 01 23]
      - the elements given to the ARG_LIST callback can now safely be walked
        through with     for(i=0; data[i]; i++)
      [2000 01 22]
      - added "config_warning" to conveniently print warnings to stderr
        including the dotconf_line and dotconf_file information
      - bugfix that correctly resets and restores the line numbering
        when Including files
      - dotconf_line and dotconf_file are now declared extern in
        dotconf.h so that the programmer does not have to do this
 
[2000 01 21] [v0.5.2]
      - further support for environment variable substitution
      ( ${NAME:-default} )

[2000 01 20] [v0.5.1]
      - the environment variable DC_INCLUDEPATH overrides any setting
        made by using 'IncludePath' in a config-file
 
[2000 01 19] [v0.5]
      - the internal parser function (config_parse) is not static anymore
      - indentation of options is now supported
 
[2000 01 13] [v0.4]
      - dotconf_file added for access currently parsed file
      - support for here-documents for options of type ARG_STR
      - support for on-the-fly inclusion of configuration files
        (magic-option Include)
        filenames must be fully qualified, or must be relative
        to the include path (magic-option IncludePath)
        => see included example for usage of all new features
      - updated man page to inform about the new features of course
 
[2000 01 06] [v0.3]
      - name changed from "libconfig" to "dot.conf"
      - autoconf build system
      - man page update to reflect the new features
      - dot.conf supports you in having dynamically loadable modules
        create their own configuration options now (see example)
 
[2000 01 04] [v0.2]
      - ARG_NONE actually works now
      - the parser is more forgiving regarding whitespace between two
        arguments to an ARG_LIST type option
      - change local variable line to be exported as libconfig_line
      - extended example.c to show the how to use libconfig_line
        and ARG_STR as well as ARG_LIST are now used in the example
      - updated the man page of course
 
[1999 12 30] [v0.1]
      - initial release v0.1

Author: Lukas Schrder <lukas@azzit.de>
