--- /dev/null
+
+
+==============
+1.1 Changelog
+==============
+
+.. changelog_imports::
+
+ .. include:: changelog_10.rst
+ :start-line: 5
+
+ .. include:: changelog_09.rst
+ :start-line: 5
+
+ .. include:: changelog_08.rst
+ :start-line: 5
+
+ .. include:: changelog_07.rst
+ :start-line: 5
+
+.. changelog::
+ :version: 1.1.0b1
+
.. toctree::
:titlesonly:
- migration_10
+ migration_11
Change logs
-----------
.. toctree::
:titlesonly:
+ changelog_11
changelog_10
changelog_09
changelog_08
.. toctree::
:titlesonly:
+ migration_10
migration_09
migration_08
migration_07
--- /dev/null
+==============================
+What's New in SQLAlchemy 1.1?
+==============================
+
+.. admonition:: About this Document
+
+ This document describes changes between SQLAlchemy version 1.0,
+ at the moment the current release series of SQLAlchemy,
+ and SQLAlchemy version 1.1, which is the current development
+ series of SQLAlchemy.
+
+ As the 1.1 series is under development, issues that are targeted
+ at this series can be seen under the
+ `1.1 milestone <https://bitbucket.org/zzzeek/sqlalchemy/issues?milestone=1.1>`_.
+ Please note that the set of issues within the milestone is not fixed;
+ some issues may be moved to later milestones in order to allow
+ for a timely release.
+
+ Document last updated: July 24, 2015.
+
+Introduction
+============
+
+This guide introduces what's new in SQLAlchemy version 1.1,
+and also documents changes which affect users migrating
+their applications from the 1.0 series of SQLAlchemy to 1.1.
+
+Please carefully review the sections on behavioral changes for
+potentially backwards-incompatible changes in behavior.
+
+Platform Changes
+================
+
+New Features and Improvements - ORM
+===================================
+
+
+New Features and Improvements - Core
+====================================
+
+
+Key Behavioral Changes - ORM
+============================
+
+
+Key Behavioral Changes - Core
+=============================
+
+
+Dialect Improvements and Changes - Postgresql
+=============================================
+
+
+Dialect Improvements and Changes - MySQL
+=============================================
+
+
+Dialect Improvements and Changes - SQLite
+=============================================
+
+
+Dialect Improvements and Changes - SQL Server
+=============================================
+
+
+Dialect Improvements and Changes - Oracle
+=============================================
# built documents.
#
# The short X.Y version.
-version = "1.0"
+version = "1.1"
# The full version, including alpha/beta/rc tags.
-release = "1.0.8"
+release = "1.1.0b1"
-release_date = "July 22, 2015"
+release_date = "not released"
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.0** of SQLAlchemy:
+A quick check to verify that we are on at least **version 1.1** of SQLAlchemy:
.. sourcecode:: pycon+sql
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 1.0.0
+ 1.1.0
Connecting
==========
:doc:`Overview <intro>` |
:ref:`Installation Guide <installation>` |
:doc:`Frequently Asked Questions <faq/index>` |
-:doc:`Migration from 0.9 <changelog/migration_10>` |
+:doc:`Migration from 1.0 <changelog/migration_11>` |
:doc:`Glossary <glossary>` |
: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.0.0b1``,
+In order to install the latest **prerelease** version, such as ``1.1.0b1``,
pip requires that the ``--pre`` flag be used::
pip install --pre SQLAlchemy
Checking the Installed SQLAlchemy Version
------------------------------------------
-This documentation covers SQLAlchemy version 1.0. If you're working on a
+This documentation covers SQLAlchemy version 1.1. 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.0.0
+ 1.1.0
.. _migration:
-0.9 to 1.0 Migration
+1.0 to 1.1 Migration
=====================
-Notes on what's changed from 0.9 to 1.0 is available here at :doc:`changelog/migration_10`.
+Notes on what's changed from 1.0 to 1.1 is available here at :doc:`changelog/migration_11`.
Version Check
=============
-A quick check to verify that we are on at least **version 1.0** of SQLAlchemy::
+A quick check to verify that we are on at least **version 1.1** of SQLAlchemy::
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 1.0.0
+ 1.1.0
Connecting
==========
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '1.0.9'
+__version__ = '1.1.0b1'
def __go(lcls):