From: Mike Bayer Date: Thu, 20 Feb 2014 03:59:11 +0000 (-0500) Subject: 0.8.5 X-Git-Tag: rel_0_8_5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1366ef9f1cbbddbb0d7fb5b852ba6cd1bfdc7216;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 0.8.5 --- diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index ae39434290..72bd3635ed 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -10,6 +10,7 @@ .. changelog:: :version: 0.8.5 + :released: February 19, 2014 .. change:: :tags: postgresql, bug diff --git a/doc/build/conf.py b/doc/build/conf.py index 5c56a0e66f..ca194b8169 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -84,9 +84,9 @@ copyright = u'2007-2014, the SQLAlchemy authors and contributors' # The short X.Y version. version = "0.8" # The full version, including alpha/beta/rc tags. -release = "0.8.4" +release = "0.8.5" -release_date = "December 8, 2013" +release_date = "February 19, 2014" site_base = "http://www.sqlalchemy.org" diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 70a99456d8..b20b810ee3 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -120,7 +120,7 @@ from .engine import create_engine, engine_from_config __all__ = sorted(name for name, obj in locals().items() if not (name.startswith('_') or _inspect.ismodule(obj))) -__version__ = '0.8.4' +__version__ = '0.8.5' del _inspect, sys