From: Mike Bayer Date: Thu, 4 Apr 2013 22:30:38 +0000 (-0400) Subject: doc fixes X-Git-Tag: rel_0_5_0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f823243472060a7766c9ffa2cf30d9937dca0462;p=thirdparty%2Fsqlalchemy%2Falembic.git doc fixes --- diff --git a/alembic/environment.py b/alembic/environment.py index e256690e..584b6f0a 100644 --- a/alembic/environment.py +++ b/alembic/environment.py @@ -287,7 +287,10 @@ class EnvironmentContext(object): running the "revision" command. Note that the script environment is only run within the "revision" command if the --autogenerate option is used, or if the option "revision_environment=true" - is present in the alembic.ini file. New in 0.3.3. + is present in the alembic.ini file. + + .. versionadded:: 0.3.3 + :param version_table: The name of the Alembic version table. The default is ``'alembic_version'``. :param version_table_schema: Optional schema to place version diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 0a574e8f..f22dd5bd 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -7,6 +7,12 @@ Changelog :version: 0.5.0 :released: Thu Apr 4 2013 + .. note:: + + Alembic 0.5.0 now requires at least + version 0.7.3 of SQLAlchemy to run properly. + Support for 0.6 has been dropped. + .. change:: :tags: feature :tickets: 76 @@ -39,7 +45,7 @@ Changelog :tags: feature :tickets: 93 - Added :func:`.operations.create_primary_key` + Added :meth:`.Operations.create_primary_key` operation, will genenerate an ADD CONSTRAINT for a primary key. diff --git a/docs/build/conf.py b/docs/build/conf.py index 92d4a17c..a91a51bb 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -34,6 +34,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'ext.changelog'] changelog_render_ticket = "https://bitbucket.org/zzzeek/alembic/issue/%s/" +changelog_render_pullreq = "https://bitbucket.org/zzzeek/alembic/pull-request/%s" # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/docs/build/front.rst b/docs/build/front.rst index 71444a38..fae6cd47 100644 --- a/docs/build/front.rst +++ b/docs/build/front.rst @@ -25,7 +25,7 @@ stable. Users should take care to report bugs and missing features (see :ref:`bugs`) on an as-needed basis. It should be expected that the development version may be required for proper implementation of recently repaired issues in between releases; -the latest tip is always available at https://bitbucket.org/zzzeek/alembic/get/tip.tar.gz. +the latest default tip is always available at https://bitbucket.org/zzzeek/alembic/get/default.tar.gz. .. _installation: