diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-10 19:21:54 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-04-10 19:21:54 -0400 |
| commit | 44c67fef8cc578ffbca409ad95e6471b4cb4d02a (patch) | |
| tree | 564d8a340da815b5179ea06236be4b5981eea400 /lib/sqlalchemy/__init__.py | |
| parent | a6c0057b74604235e2c6066be7e9f28644c67fa8 (diff) | |
| download | sqlalchemy-44c67fef8cc578ffbca409ad95e6471b4cb4d02a.tar.gz | |
- starting to groom the branch for its inclusion
- one-to-many relationships now maintain a list of positive
parent-child associations within the flush, preventing
previous parents marked as deleted from cascading a
delete or NULL foreign key set on those child objects,
despite the end-user not removing the child from the old
association. [ticket:1764]
- re-established Preprocess as unique on their arguments,
as they were definitely duped in inheritance scenarios
- added a "memo" feature to UOWTransaction which represents the usual
pattern of using the .attributes collection
- added the test case from [ticket:1081] into perf/
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 376b13e64..774ac24d9 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -114,6 +114,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.6beta3' +__version__ = '0.6uow_refactor' del inspect, sys |
