-------------------------------------------------------------------------------

The following set of tasks should be performed when the dmalloc library gets released.

1) Update the version number in version.h and where else it lists.
2) Update the ChangeLog file.
3) Update doc files: make docs
4) Consider updating the copyright heads in all files and in chunk.c strings.
5) Run autoconf to make sure configure up to date.
6) Check in all files.
7) Run tests:
	- [ maybe mkdir x ; cd x ]
	- ./configure or ../configure
	- make all heavy
	- maybe install the new dmalloc utility to test
	- dmalloc -l malloc high
	- make heavy
	- examine the log file, check version, look for exceptions
	- [ maybe dmalloc_t -r ] to check for wierd flag conditions
8) Clone on linux and others and run tests: git clone git@github.com:j256/dmalloc.git
9) Run release.sh script.  It will run tests on repo.
11) git tag the release:
    git tag dmalloc_release_X_X_X
    git push origin dmalloc_release_X_X_X
12) create release on github for X.X.X from that tag
13) Upload tgz file as part of that release
14) Install the tgz file and html file in the dmalloc.com repo
15) Edit releases/index.html to include the new version
16) Go to the /docs dir and run the explode-docs.sh script.

-------------------------------------------------------------------------------
