--- /dev/null
+==============
+1.0 Changelog
+==============
+
+.. changelog_imports::
+
+ .. include:: changelog_09.rst
+ :start-line: 5
+
+ .. include:: changelog_08.rst
+ :start-line: 5
+
+ .. include:: changelog_07.rst
+ :start-line: 5
+
+.. changelog::
+ :version: 1.0.0
\ No newline at end of file
.. toctree::
:maxdepth: 1
- migration_09
+ migration_10
Change logs
-----------
.. toctree::
:maxdepth: 2
+ changelog_10
changelog_09
changelog_08
changelog_07
.. toctree::
:maxdepth: 1
+ migration_09
migration_08
migration_07
migration_06
--- /dev/null
+==============================
+What's New in SQLAlchemy 1.0?
+==============================
+
+.. admonition:: About this Document
+
+ This document describes changes between SQLAlchemy version 0.9,
+ undergoing maintenance releases as of May, 2014,
+ and SQLAlchemy version 1.0, as of yet unreleased.
+
+ Document last updated: May 23, 2014
+
+Introduction
+============
+
+This guide introduces what's new in SQLAlchemy version 1.0,
+and also documents changes which affect users migrating
+their applications from the 0.9 series of SQLAlchemy to 1.0.
+
+Please carefully review
+:ref:`behavioral_changes_orm_10` and :ref:`behavioral_changes_core_10` for
+potentially backwards-incompatible changes.
+
+
+.. _behavioral_changes_orm_10:
+
+Behavioral Changes - ORM
+========================
+
+.. _behavioral_changes_core_10:
+
+Behavioral Changes - Core
+=========================
+
+
+New Features
+============
+
+
+Behavioral Improvements
+=======================
+
+Dialect Changes
+===============
=============
-A quick check to verify that we are on at least **version 0.9** of SQLAlchemy:
+A quick check to verify that we are on at least **version 1.0** of SQLAlchemy:
.. sourcecode:: pycon+sql
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 0.9.0
+ 1.0.0
Connecting
==========
:ref:`Overview <overview>` |
:ref:`Installation Guide <installation>` |
:doc:`Frequently Asked Questions <faq>` |
-:doc:`Migration from 0.8 <changelog/migration_09>` |
+:doc:`Migration from 0.9 <changelog/migration_10>` |
:doc:`Glossary <glossary>` |
:doc:`Changelog catalog <changelog/index>`
Checking the Installed SQLAlchemy Version
------------------------------------------
-This documentation covers SQLAlchemy version 0.9. If you're working on a
+This documentation covers SQLAlchemy version 1.0. 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
- 0.9.0
+ 1.0.0
.. _migration:
-0.8 to 0.9 Migration
+0.9 to 1.0 Migration
=====================
-Notes on what's changed from 0.8 to 0.9 is available here at :doc:`changelog/migration_09`.
+Notes on what's changed from 0.9 to 1.0 is available here at :doc:`changelog/migration_10`.
Version Check
=============
-A quick check to verify that we are on at least **version 0.9** of SQLAlchemy::
+A quick check to verify that we are on at least **version 1.0** of SQLAlchemy::
>>> import sqlalchemy
>>> sqlalchemy.__version__ # doctest:+SKIP
- 0.9.0
+ 1.0.0
Connecting
==========
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '0.9.5'
+__version__ = '1.0.0'
def __go(lcls):
global __all__