diff --git a/README.rst b/README.rst
index 192cc5a..052c8b8 100644
--- a/README.rst
+++ b/README.rst
@@ -14,15 +14,16 @@ well as from inside python code.
 Help
 ----
 
-Sphinx documentation is available at the project page `packages.python.org
-<http://packages.python.org/sqlalchemy-migrate/>`_.
+Sphinx documentation is available at the project page `readthedocs.org
+<https://sqlalchemy-migrate.readthedocs.org/>`_.
 
-Users and developers can be found at #sqlalchemy-migrate on Freenode IRC
+Users and developers can be found at #openstack-dev on Freenode IRC
 network and at the public users mailing list `migrate-users
 <http://groups.google.com/group/migrate-users>`_.
 
 New releases and major changes are announced at the public announce mailing
-list `migrate-announce <http://groups.google.com/group/migrate-announce>`_
+list `openstack-dev
+<http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev>`_
 and at the Python package index `sqlalchemy-migrate
 <http://pypi.python.org/pypi/sqlalchemy-migrate>`_.
 
@@ -37,13 +38,10 @@ Tests and Bugs
 
 To run automated tests:
 
-* Copy test_db.cfg.tmpl to test_db.cfg
-* Edit test_db.cfg with database connection strings suitable for running tests.
-  (Use empty databases.)
-* $ pip install -r requirements.txt -r test-requirements.txt
-* $ python setup.py develop
-* $ testr run --parallel
+* install tox: ``pip install -U tox``
+* run tox: ``tox``
+* to test only a specific Python version: ``tox -e py27`` (Python 2.7)
 
 Please report any issues with sqlalchemy-migrate to the issue tracker at
-`code.google.com issues
-<http://code.google.com/p/sqlalchemy-migrate/issues/list>`_
+`Launchpad issues
+<https://bugs.launchpad.net/sqlalchemy-migrate>`_
diff --git a/doc/source/download.rst b/doc/source/download.rst
index d2d66de..c9e2bec 100644
--- a/doc/source/download.rst
+++ b/doc/source/download.rst
@@ -21,51 +21,32 @@ command use::
  $ migrate help COMMAND
 
 If you'd like to be notified when new versions of SQLAlchemy Migrate
-are released, subscribe to `migrate-announce`_.
+are released, subscribe to `openstack-dev`_.
 
 .. _pip: http://pip.openplans.org/
 .. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install
 .. _sqlalchemy: http://www.sqlalchemy.org/download.html
-.. _`project's download page`: http://code.google.com/p/sqlalchemy-migrate/downloads/list
 .. _`cheese shop`: http://pypi.python.org/pypi/sqlalchemy-migrate
-.. _`migrate-announce`: http://groups.google.com/group/migrate-announce
+.. _`openstack-dev`: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
 
 .. _development:
 
 Development
 -----------
 
-Migrate's Mercurial_ repository is located at `Google Code`_.
+If you would like to contribute to the development of OpenStack,
+you must follow the steps in this page:
 
-To get the latest trunk::
+   http://docs.openstack.org/infra/manual/developers.html
 
- $ hg clone http://sqlalchemy-migrate.googlecode.com/hg/
+Once those steps have been completed, changes to OpenStack
+should be submitted for review via the Gerrit tool, following
+the workflow documented at:
 
-Patches should be submitted to the `issue tracker`_. You are free to create
-your own clone to provide your patches. We are open to pull requests in our
-`issue tracker`_.
+   http://docs.openstack.org/infra/manual/developers.html#development-workflow
 
-If you want to work on sqlalchemy-migrate you might want to use a `virtualenv`.
+Pull requests submitted through GitHub will be ignored.
 
-To run the included test suite you have to copy :file:`test_db.cfg.tmpl` to
-:file:`test_db.cfg` and put SQLAlchemy database URLs valid for your environment
-into that file. We use `nose`_ for our tests and include a test requirements
-file for pip. You might use the following commands to install the test
-requirements and run the tests::
+Bugs should be filed on Launchpad, not GitHub:
 
- $ pip install -r test-req.pip
- $ python setup.py develop
- $ python setup.py nosetests
-
-If you are curious about status changes of sqlalchemy-migrate's issues you
-might want to subscribe to `sqlalchemy-migrate-issues`_.
-
-We use a `Jenkins CI`_ continuous integration tool installation to
-help us run tests on most of the databases that migrate supports.
-
-.. _Mercurial: http://www.mercurial-scm.org/
-.. _Google Code: http://sqlalchemy-migrate.googlecode.com/hg/
-.. _issue tracker: http://code.google.com/p/sqlalchemy-migrate/issues/list
-.. _sqlalchemy-migrate-issues: http://groups.google.com/group/sqlalchemy-migrate-issues
-.. _Jenkins CI: http://jenkins.gnuviech-server.de/job/sqlalchemy-migrate-all/
-.. _nose: http://readthedocs.org/docs/nose/
+   https://bugs.launchpad.net/sqlalchemy-migrate
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 8af19d7..c143b77 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -7,9 +7,9 @@
 :Author: Evan Rosson
 :Maintainer: Domen Kožar <domenNO@SPAMdev.si>
 :Maintainer: Jan Dittberner <jan.dittbernerNO@SPAMgooglemail.com>
-:Issues: http://code.google.com/p/sqlalchemy-migrate/issues/list
-:Source Code: http://code.google.com/p/sqlalchemy-migrate/
-:CI Tool: http://jenkins.gnuviech-server.de/job/sqlalchemy-migrate-all/
+:Source Code: https://github.com/stackforge/sqlalchemy-migrate
+:Documentation: https://sqlalchemy-migrate.readthedocs.org/
+:Issues: https://bugs.launchpad.net/sqlalchemy-migrate
 :Generated: |today|
 :License: MIT
 :Version: |release|
@@ -24,7 +24,7 @@
     mentored by Jonathan LaCour.
 
     The project was taken over by a small group of volunteers when Evan had no
-    free time for the project. It is now hosted as a `Google Code project`_.
+    free time for the project. It is now hosted as a `Github project`_.
     During the hosting change the project was renamed to SQLAlchemy Migrate.
 
     Currently, sqlalchemy-migrate supports Python versions from 2.6 to 2.7.
@@ -64,6 +64,7 @@ Dialect support
       - :ref:`oracle  <oracle-d>`
       - :ref:`firebird <firebird-d>`
       - mssql
+      - DB2
     * - :ref:`ALTER TABLE RENAME TABLE <table-rename>`
       - yes
       - yes
@@ -160,7 +161,7 @@ SQLAlchemy Migrate is split into two parts, database schema versioning
    glossary
 
 .. _`google's summer of code`: http://code.google.com/soc
-.. _`Google Code project`: http://code.google.com/p/sqlalchemy-migrate
+.. _`Github project`: https://github.com/stackforge/sqlalchemy-migrate
 .. _sqlalchemy: http://www.sqlalchemy.org