summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-05-01 09:20:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-05-01 09:20:10 -0400
commit24d6ea362e757c79b3bada663cf6fc9f262dae4f (patch)
tree405dd515e99e9be734a37125166d230db3b9c4b0 /lib/sqlalchemy/__init__.py
parent3cfda0a3c9026f0a80a9763fe12b9d61b3ad2910 (diff)
downloadsqlalchemy-24d6ea362e757c79b3bada663cf6fc9f262dae4f.tar.gz
- Repaired / added to tests yet more expressions that were reported
as failing with the new 'entity' key value added to :attr:`.Query.column_descriptions`, the logic to discover the "from" clause is again reworked to accommodate columns from aliased classes, as well as to report the correct value for the "aliased" flag in these cases. fixes #3409
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 153b10a2b..6f7a4f723 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.3'
+__version__ = '1.0.4'
def __go(lcls):