=============
-A quick check to verify that we are on at least **version 0.7** of SQLAlchemy:
+A quick check to verify that we are on at least **version 0.8** of SQLAlchemy:
.. sourcecode:: pycon+sql
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 0.7.0
+ 0.8.0
Connecting
==========
:ref:`Overview <overview>` |
:ref:`Installation Guide <installation>` |
-:ref:`Migration from 0.6 <migration>`
+:ref:`Migration from 0.7 <migration>`
SQLAlchemy ORM
==============
Checking the Installed SQLAlchemy Version
------------------------------------------
-This documentation covers SQLAlchemy version 0.7. If you're working on a
+This documentation covers SQLAlchemy version 0.8. If you're working on a
system that already has SQLAlchemy installed, check the version from your
Python prompt like this:
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest: +SKIP
- 0.7.0
+ 0.8.0
.. _migration:
-0.6 to 0.7 Migration
+0.7 to 0.8 Migration
=====================
-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>`_.
+Notes on what's changed from 0.7 to 0.8 is available on the SQLAlchemy wiki at
+`08Migration <http://www.sqlalchemy.org/trac/wiki/08Migration>`_.
Version Check
=============
-A quick check to verify that we are on at least **version 0.7** of SQLAlchemy::
+A quick check to verify that we are on at least **version 0.8** of SQLAlchemy::
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 0.7.0
+ 0.8.0
Connecting
==========