From: Mike Bayer Date: Tue, 24 Apr 2012 23:32:30 +0000 (-0400) Subject: top level version-specific links X-Git-Tag: rel_0_8_0b1~446 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f10d0d0e4bf11ea9ac2f4084fc3641b80877bf9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git top level version-specific links --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index 49029e67ff..cbee2cf880 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 15e3c712dd..a3d8c40e18 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 ` | :ref:`Installation Guide ` | -:ref:`Migration from 0.6 ` +:ref:`Migration from 0.7 ` SQLAlchemy ORM ============== diff --git a/doc/build/intro.rst b/doc/build/intro.rst index b5020b6ee3..8563200e98 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 `_. +Notes on what's changed from 0.7 to 0.8 is available on the SQLAlchemy wiki at +`08Migration `_. diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index 6fa77d48f3..eb22635e19 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 ==========