From 438e63db068860cfe04224567a65e710df77d15e Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 17 Oct 2011 13:26:26 -0400 Subject: - Fixed bug in history_meta.py example where the "unique" flag was not removed from a single-table-inheritance subclass which generates columns to put up onto the base. --- lib/sqlalchemy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy') diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 0b9b7a00e..aa303e85c 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -117,7 +117,7 @@ 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.7.3' +__version__ = '0.7.4' del inspect, sys -- cgit v1.2.1