Changeset 314
- Timestamp:
- 03/28/08 20:38:29 (5 years ago)
- Location:
- elixir/trunk
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/CHANGES
r309 r314 1 0.5.2 2 Changes: 3 - Made Elixir python 2.3 compatible again (based on a patch from 1 0.5.2 - 2008-03-28 2 3 New features: 4 - Added an optional `check_concurrency` keyword argument to the versioning 5 extension, supporting the usage of SQLAlchemy's built-in optimistic 6 concurrency check. 7 8 Changes: 9 - Made Elixir python 2.3 compatible again (based on patches from 4 10 Jason R. Coombs) 5 11 … … 7 13 - Fixed act_as_list extension to work with DBMS that require subselects to be 8 14 aliased (patch by Alice McGregor) 15 - Fixed the versioning extension so that the history table is updated within 16 the current transaction (patch from and closes ticket #35). 9 17 10 18 0.5.1 - 2008-02-07 -
elixir/trunk/elixir/__init__.py
r303 r314 37 37 38 38 39 __version__ = '0.5. 1'39 __version__ = '0.5.2' 40 40 41 41 __all__ = ['Entity', 'EntityMeta', -
elixir/trunk/setup.cfg
r311 r314 9 9 modules = elixir, elixir.ext.associable, elixir.ext.versioned, 10 10 elixir.ext.encrypted, elixir.ext.list 11 trac_browser_url = http://elixir.ematia.de/trac/browser/elixir/tags/0.5. 111 trac_browser_url = http://elixir.ematia.de/trac/browser/elixir/tags/0.5.2 12 12 -
elixir/trunk/setup.py
r295 r314 2 2 3 3 setup(name="Elixir", 4 version="0.5. 1",4 version="0.5.2", 5 5 description="Declarative Mapper for SQLAlchemy", 6 6 long_description="""
