From: Mike Bayer Date: Sat, 27 Apr 2019 21:19:31 +0000 (-0400) Subject: - continued 1.4 setup, somehow the commit didn't work X-Git-Tag: rel_1_4_0b1~896 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f55c844051d9fe8865576bd77107e94c6de16c1;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - continued 1.4 setup, somehow the commit didn't work Fixes: #4631 Change-Id: I400e388a704aa6ee7722a89687a033083ce22550 --- diff --git a/doc/build/conf.py b/doc/build/conf.py index 58d32fa06e..243f4b5870 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -107,11 +107,11 @@ copyright = u'2007-2019, the SQLAlchemy authors and contributors' # built documents. # # The short X.Y version. -version = "1.3" +version = "1.4" # The full version, including alpha/beta/rc tags. -release = "1.3.3" +release = "1.4.0b1" -release_date = "April 15, 2019" +release_date = None site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako" diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index 04c74a6362..cdacedadfe 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 1.3** of SQLAlchemy: +A quick check to verify that we are on at least **version 1.4** of SQLAlchemy: .. sourcecode:: pycon+sql >>> import sqlalchemy >>> sqlalchemy.__version__ # doctest: +SKIP - 1.3.0 + 1.4.0 Connecting ========== diff --git a/doc/build/index.rst b/doc/build/index.rst index ae9052c259..9513c89941 100644 --- a/doc/build/index.rst +++ b/doc/build/index.rst @@ -14,7 +14,7 @@ A high level view and getting set up. :doc:`Overview ` | :ref:`Installation Guide ` | :doc:`Frequently Asked Questions ` | -:doc:`Migration from 1.2 ` | +:doc:`Migration from 1.3 ` | :doc:`Glossary ` | :doc:`Error Messages ` | :doc:`Changelog catalog ` diff --git a/doc/build/intro.rst b/doc/build/intro.rst index 4e81beee6b..300831fe68 100644 --- a/doc/build/intro.rst +++ b/doc/build/intro.rst @@ -107,7 +107,7 @@ downloaded from PyPI and installed in one step:: This command will download the latest **released** version of SQLAlchemy from the `Python Cheese Shop `_ and install it to your system. -In order to install the latest **prerelease** version, such as ``1.3.0b1``, +In order to install the latest **prerelease** version, such as ``1.4.0b1``, pip requires that the ``--pre`` flag be used:: pip install --pre SQLAlchemy @@ -162,7 +162,7 @@ the available DBAPIs for each database, including external links. Checking the Installed SQLAlchemy Version ------------------------------------------ -This documentation covers SQLAlchemy version 1.3. If you're working on a +This documentation covers SQLAlchemy version 1.4. If you're working on a system that already has SQLAlchemy installed, check the version from your Python prompt like this: @@ -170,11 +170,11 @@ Python prompt like this: >>> import sqlalchemy >>> sqlalchemy.__version__ # doctest: +SKIP - 1.3.0 + 1.4.0 .. _migration: -1.2 to 1.3 Migration +1.3 to 1.4 Migration ===================== -Notes on what's changed from 1.2 to 1.3 is available here at :doc:`changelog/migration_13`. +Notes on what's changed from 1.3 to 1.4 is available here at :doc:`changelog/migration_14`. diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index 283125c823..21b70af089 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -40,11 +40,11 @@ following text represents the expected return value. Version Check ============= -A quick check to verify that we are on at least **version 1.3** of SQLAlchemy:: +A quick check to verify that we are on at least **version 1.4** of SQLAlchemy:: >>> import sqlalchemy >>> sqlalchemy.__version__ # doctest:+SKIP - 1.3.0 + 1.4.0 Connecting ==========