summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-03-21 13:12:15 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-03-21 13:12:15 -0400
commitc09c21c9f31826e126b97d6318a9df66986af774 (patch)
treecd4491e60aa33b8f44bc5279f96e189fe4597f47 /lib/sqlalchemy/__init__.py
parent10593e77689cf3c9d6d0de957632d42fd74bf697 (diff)
downloadsqlalchemy-c09c21c9f31826e126b97d6318a9df66986af774.tar.gz
- Fixed bug in new "label resolution" feature of :ticket:`2992` where
the string label placed in the order_by() or group_by() of a statement would place higher priority on the name as found inside the FROM clause instead of a more locally available name inside the columns clause. fixes #3335
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
-rw-r--r--lib/sqlalchemy/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 94ab772b1..c1e84733c 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -120,7 +120,7 @@ from .schema import (
from .inspection import inspect
from .engine import create_engine, engine_from_config
-__version__ = '1.0.0b3'
+__version__ = '1.0.0b4'
def __go(lcls):