summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-04-17 21:03:02 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-04-17 21:03:02 -0400
commitb02193bd7e84a8fe1ac74d16cf78a90bd3d59f7c (patch)
tree54044fe649546626f40a269aff16fe2a0244327f /lib/sqlalchemy/__init__.py
parent4dd69ff878b2b7fe60a48ba7d12c29183a5f8012 (diff)
downloadsqlalchemy-b02193bd7e84a8fe1ac74d16cf78a90bd3d59f7c.tar.gz
- Fixed regression introduced in 0.7b4 (!) whereby
query.options(someoption("nonexistent name")) would fail to raise an error. Also added additional error catching for cases where the option would try to build off a column-based element, further fixed up some of the error messages tailored in [ticket:2069] - added another huge crapload of tests to the existing crapload of tests we already had for options..._get_paths() and dependencies are covered 100% now - one case still doesn't do the "right" thing, using an option specific to relationships will silently pass if the endpoint is a column-based attribute, and vice versa.
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 a20554dc0..93f3cf04c 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.7b4'
+__version__ = '0.7b5'
del inspect, sys