# 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"
=============
-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
==========
:doc:`Overview <intro>` |
:ref:`Installation Guide <installation>` |
:doc:`Frequently Asked Questions <faq/index>` |
-:doc:`Migration from 1.2 <changelog/migration_13>` |
+:doc:`Migration from 1.3 <changelog/migration_14>` |
:doc:`Glossary <glossary>` |
:doc:`Error Messages <errors>` |
:doc:`Changelog catalog <changelog/index>`
This command will download the latest **released** version of SQLAlchemy from the `Python
Cheese Shop <http://pypi.python.org/pypi/SQLAlchemy>`_ 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
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:
>>> 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`.
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
==========