-------------
* Removed yoyo.migrate namespace package. Any code that uses the yoyo api
directly needs have any imports modified, eg this::
from yoyo.migrate import read_migrations
from yoyo.migrate.connections import connect
Should be changed to this::
from yoyo import read_migrations
from yoyo.connections import connect
* Migrated from darcs to mercurial. Code is now hosted at
https://bitbucket.org/ollyc/yoyo
* Bugfix: the migration_table option was not being passed to read_migrations,
causing the value to be ignored