From: Mike Bayer Date: Fri, 20 May 2011 19:11:44 +0000 (-0400) Subject: move version to 0.7.0 X-Git-Tag: rel_0_7_0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e5e325a140ab7b2463d4b2b734dc25ead530099;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git move version to 0.7.0 --- diff --git a/CHANGES b/CHANGES index a8ea342338..ee3183d18d 100644 --- a/CHANGES +++ b/CHANGES @@ -3,9 +3,13 @@ ======= CHANGES ======= -0.7.0b5 +0.7.0 ======= -- (note b5 may become 0.7.0) +- This section documents those changes from 0.7b4 + to 0.7.0. For an overview of what's new in + SQLAlchemy 0.7, see + http://www.sqlalchemy.org/trac/wiki/07Migration + - orm - Fixed regression introduced in 0.7b4 (!) whereby query.options(someoption("nonexistent name")) would diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 93f3cf04c4..6d8a082584 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -117,6 +117,6 @@ from sqlalchemy.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.7b5' +__version__ = '0.7.0' del inspect, sys