-----------------------------------------------------------------------
VERSION-SPECIFIC CHANGES

0.4.1:
You must move all mysql settings from services.conf to sql.conf

-----------------------------------------------------------------------
GENERAL TIPS

	There is no automated script for doing upgrades [yet].
However the method is quite simple.

	I tend to unpack the archive, then copy the config/
dir, and move the logs/ dir. I then run any necessary upgrade
stuff, and restart the program. This keeps your old version and
the old config too. I admit this is different from how I do my
ircd, but it's just as reversible as how I do my ircd. I
_never_ overwrite my sourcedir.

	First, backup your database with either mysqldump or
utils/db-dump.pl

	Second, look in the sql/ directory, and note all the
updatedb*.sql files These files need to be applied to your
database, as they convert the format of the database from one
version to the next. Make sure to ONLY use the ones that are
between the version you're running and the version you're
upgrading to.

	Next, do the following command
cat updatedb-version.sql | mysql dbname -u username --password=dbpass

	Take note of any errors (they do happen occasionally),
and if services is _not_ working properly after the upgrade,
you can rollback to the old version, and then restore the
database thusly:
cat db-backup | mysql dbname -u username --password=dbpass

	Then contact the coders on SurrealChat.net in
#dev.lounge. We'll help out as best we can.
