0.6.4 Notes:

 * Switched to bootstrap method. There is no longer a autogen.sh
   script. Snapshots and releases come pre-bootstrapped, so this
   shouldn't affect most people. For details, read README.
 
 * This release is primarily a maintenance one. No new functionality
   has been added.

0.6.3 Notes:

 * The BerkeleyDB for libdba now must be version 3.0 or greater

 * SubTag addition bug fixed, no need to delete the database to
   add tags (thanks to Uwe Koloska on this one)

 * Fixes for Linux(PPC) in libdba (thanks to Ezra Peisach) now
   allow the CSV db type on PPC.

 * SubTag replacement is done strictly in order now. Previously
   it was possible for tags in a Page to not override referenced
   versions due to the tag not being recursively discoverable in
   the Page context. This is fixed. (thanks to Uwe)

 * include_dir added which acts as a backup include dir for
   include directives in the source. this doesn't work with the
   configuration file. only data. check out the updated example 5
   for details. (thanks to Uwe for the suggestion)
 
0.6.2 Notes:

 * Changed time format to localtime for date tags.

 * Setting parse to NO now works again. See example 9.

0.6.1 Notes:

 * External command option decalarations follow a new format:
     %i - The full source filename (after wsmake processing)
     %s - The full source filename (the original source)
     %o - The full output filename
     %w - The web path (includes the filename)
    %ds - The full source directory
    %do - The full output directory
   See example 9 for details.

 * Multiline definitions in the configuration file are allowed
   through the use of \\n. E.g.:
      SubTag "This and" \
	         "that"
   Currently it will not concatonate repeated quoted elements after
   the first element, but that may be considered for later. So you'll
   have to make use of the first column:
      SubTag "This and" \
	         "that other thing\
over here"

0.6.0 Notes:

 * The "include" attribute has been added for the configuration file.
   It allows the ability to include external files as part of the
   configuration. See example 13 for details.
 
 * Pagegroups can have the depend attribute now.

 * It is possible to build the website without creating a database
   by using the new database_format "timestamp". In this situation,
   wsmake works like regular GNU make would by using the output
   and source last modified timestamps as a means for determining
   when updates are necessary. On the down side, SubTags, PageParts,
   and PageOrders won't be tracked, but they may still be used.

0.5.12 Notes:

 * Files with extension ".ws" are considered configuration files.
   Running wsmake without any options will cause a make for every file
   in the current directory with that extension.

 * There is a new option '-t' or '--times' that can be used to sync
   the modification timestamp of the source and output files.

0.5.10 Notes:

 * SubTag values are now tracked in the database. This means that if
   you make a change to a SubTag in the configuration file, when you
   run wsmake, all pages which use that SubTag will be updated as well.

 * There is a new configuration file format which will require
   a few modifications to your current wsmakefile. See the conversion
   script in the scripts directory of the source archive. It can be
   used as such:

   $ ./conf-059-0510.pl < oldwsmakefile > newwsmakefile

   I recommend re-reading the examples to become familiar with the
   new layout and tag names.

 * The much awaited depends attribute is now available for use. See
   example 12 for details

 * A silly end of file bug was fixed for this release.

0.5.9 Notes:

 * You can now use command-based subtags. See example 2 for details.

 * Long options are available for those with getopt_long in libc. If
   your libc doesn't have getopt_long, try using the --enable-getopt-long
   configure option.

 * Themes have been added. You can use a theme in both default and
   external pages. See example 11, and the manual, for details.

 * The following keywords have been deprecated:
   In DefaultSetup : web_path_tagname - now output_page_tagname
   In DefaultPage  : web_path         - now web_page

 * New attributes in DefaultPage are:
   source_page (can be used instead of web_page)
   output_page

 * Default and External pages can now be cloned. See the manual for
   details. PageParts cannot be cloned.
 
 * You can now cascade makes. This means the output of one page can be
   used as input for another. This won't work if the the page that
   creates the output to be reused is defined after the page that needs
   it!

0.5.8 Notes:

 * The manual has been converted to SGML. PDF, HTML, and other formats
   are available on the website: http://wsmake.org/docs/
   The SGML version is in this package in the doc directory.

0.5.7 Notes:

 * 0.5.6 users should look at the conf-056-057.pl script in
   the scripts directory. You can use that to convert your 0.5.6
   config file to one that works with 0.5.7.

 * There is more documentation available this time in the docs directory.
   There are also 8 examples that have been created as a tutorial. The old
   example in the wsmake directory is now gone.
