summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2009-01-18 17:08:28 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2009-01-18 17:08:28 +0000
commit072039945b23b0a76814e53698da247de334f7eb (patch)
tree8616971bd3e74eafa734d42f2a0e1bd36004fb74 /lib/sqlalchemy/__init__.py
parent86fcffc854540e87d56e5e0d49273a9411af32f6 (diff)
downloadsqlalchemy-072039945b23b0a76814e53698da247de334f7eb.tar.gz
- Further fixes to the "percent signs and spaces in column/table
names" functionality. [ticket:1284] - Still doesn't work for PG/MySQL, which unfortunately would require post_process_text() calls all over the place. Perhaps % escaping can be assembled into IdentifierPreparer.quote() since that's where identifier names are received.
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
-rw-r--r--lib/sqlalchemy/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index cc425acb2..5ef4ff6d8 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -106,6 +106,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.5.1'
+
+__version__ = '0.5.2'
del inspect, sys