diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-05 13:29:34 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-05 13:29:34 -0500 |
commit | 77763969ff06b12edcbaedab62890afa27e105b4 (patch) | |
tree | f674f9c3d05881dbf7defeb677da92731abefd6f /doc/build/intro.rst | |
parent | 1f9029597caf3d9d9e64e5a326508babfca60ebb (diff) | |
download | sqlalchemy-77763969ff06b12edcbaedab62890afa27e105b4.tar.gz |
- refer to 0.7 in docs
Diffstat (limited to 'doc/build/intro.rst')
-rw-r--r-- | doc/build/intro.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/build/intro.rst b/doc/build/intro.rst index bf57f8d73..b679dca3e 100644 --- a/doc/build/intro.rst +++ b/doc/build/intro.rst @@ -96,15 +96,15 @@ SQLAlchemy is designed to operate with a `DB-API <http://www.python.org/doc/peps Checking the Installed SQLAlchemy Version ========================================= -This documentation covers SQLAlchemy version 0.6. If you're working on a system that already has SQLAlchemy installed, check the version from your Python prompt like this: +This documentation covers SQLAlchemy version 0.7. If you're working on a system that already has SQLAlchemy installed, check the version from your Python prompt like this: .. sourcecode:: python+sql >>> import sqlalchemy >>> sqlalchemy.__version__ # doctest: +SKIP - 0.6.0 + 0.7.0 -0.5 to 0.6 Migration +0.6 to 0.7 Migration ===================== -Notes on what's changed from 0.5 to 0.6 is available on the SQLAlchemy wiki at `06Migration <http://www.sqlalchemy.org/trac/wiki/06Migration>`_. +Notes on what's changed from 0.6 to 0.7 is available on the SQLAlchemy wiki at `07Migration <http://www.sqlalchemy.org/trac/wiki/07Migration>`_. |