summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-10-26 16:12:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-10-26 16:12:04 -0400
commit0d00f470356c26fc18e890ede4620c10b5086a85 (patch)
treefeab54084f3abc38e2be3320d49a1e1e1d987ea4 /lib/sqlalchemy/__init__.py
parentf86d8a877ba774434b294a7e94470ccdf2c52944 (diff)
downloadsqlalchemy-0d00f470356c26fc18e890ede4620c10b5086a85.tar.gz
- Fixed bug whereby a non-"mutable" attribute modified event
which occurred on an object that was clean except for preceding mutable attribute changes would fail to strongly reference itself in the identity map. This would cause the object to be garbage collected, losing track of any changes that weren't previously saved in the "mutable changes" dictionary.
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 65ecc9a88..5eea53ac6 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -115,6 +115,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.6.5'
+__version__ = '0.6.6'
del inspect, sys