From b02193bd7e84a8fe1ac74d16cf78a90bd3d59f7c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 17 Apr 2011 21:03:02 -0400 Subject: - 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. --- lib/sqlalchemy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/__init__.py') 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 -- cgit v1.2.1