diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-08-01 14:16:46 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-08-01 14:16:46 -0400 |
| commit | 195a26e2fb5cd8c24381e467f94a14577c756843 (patch) | |
| tree | 31832c38027399a0be388ac571c4e0d681ea75bf /lib/sqlalchemy/__init__.py | |
| parent | f9f8f4d35ec90082ab01964a668f710538ce647a (diff) | |
| download | sqlalchemy-195a26e2fb5cd8c24381e467f94a14577c756843.tar.gz | |
- Added after_soft_rollback() Session event. This
event fires unconditionally whenever rollback()
is called, regardless of if an actual DBAPI
level rollback occurred. This event
is specifically designed to allow operations
with the Session to proceed after a rollback
when the Session.is_active is True.
[ticket:2241]
- SessionTransaction is mentioned in public docs, many
more docstrings for events etc. otherwise
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index cf7ebd22c..c15cc6b69 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.7.2' +__version__ = '0.7.3' del inspect, sys |
