summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-24 19:32:30 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-24 19:32:30 -0400
commit5f10d0d0e4bf11ea9ac2f4084fc3641b80877bf9 (patch)
tree3f6048581d15c87e29068b4709fc84fb7c87f61d
parent09e8c9240ca55a46104989229b1254aa349dac75 (diff)
downloadsqlalchemy-5f10d0d0e4bf11ea9ac2f4084fc3641b80877bf9.tar.gz
top level version-specific links
-rw-r--r--doc/build/core/tutorial.rst4
-rw-r--r--doc/build/index.rst2
-rw-r--r--doc/build/intro.rst10
-rw-r--r--doc/build/orm/tutorial.rst4
4 files changed, 10 insertions, 10 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst
index 49029e67f..cbee2cf88 100644
--- a/doc/build/core/tutorial.rst
+++ b/doc/build/core/tutorial.rst
@@ -50,13 +50,13 @@ 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:
.. sourcecode:: pycon+sql
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 0.7.0
+ 0.8.0
Connecting
==========
diff --git a/doc/build/index.rst b/doc/build/index.rst
index 15e3c712d..a3d8c40e1 100644
--- a/doc/build/index.rst
+++ b/doc/build/index.rst
@@ -11,7 +11,7 @@ A high level view and getting set up.
:ref:`Overview <overview>` |
:ref:`Installation Guide <installation>` |
-:ref:`Migration from 0.6 <migration>`
+:ref:`Migration from 0.7 <migration>`
SQLAlchemy ORM
==============
diff --git a/doc/build/intro.rst b/doc/build/intro.rst
index b5020b6ee..8563200e9 100644
--- a/doc/build/intro.rst
+++ b/doc/build/intro.rst
@@ -170,7 +170,7 @@ current list is at :ref:`supported_dbapis`.
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:
@@ -178,12 +178,12 @@ 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>`_.
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst
index 6fa77d48f..eb22635e1 100644
--- a/doc/build/orm/tutorial.rst
+++ b/doc/build/orm/tutorial.rst
@@ -42,11 +42,11 @@ following text represents the expected return value.
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
==========