Developper documentation for XmHTML


Checklist for Versioning:
=========================

The version number consists of three numbers.
Here's how you decide which of these numbers to increase:
* Last number: For changes which do not affect the shared lib interface.
* Second number: For changes which affect the shared lib interface.
* First number: For very major changes.


When you increase the version number, you have to do this on multiple places:

* Makefile:
	- Adjust the values of VERSION, ARCHIVE to the new version, e.g.
		VERSION = 1109
		ARCHIVE = 1.1.9

	- When the first or second number of the version is changed
	  you also need to adjust the value of SONAME, e.g.
		SONAME = libXmHTML.so.1.1

* include/XmHTML/XmHTML.h:
	Adjust the definition of the following macros:
		XmHTMLVERSION
		XmHTMLREVISION
		XmHTMLUPDATE_LEVEL
		XmHTMLVERSION_STRING



