Changeset 314

Show
Ignore:
Timestamp:
03/28/08 20:38:29 (5 years ago)
Author:
ged
Message:

prepare for release

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  
     10.5.2 - 2008-03-28 
     2 
     3New 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 
     8Changes: 
     9- Made Elixir python 2.3 compatible again (based on patches from  
    410  Jason R. Coombs) 
    511 
     
    713- Fixed act_as_list extension to work with DBMS that require subselects to be 
    814  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). 
    917 
    10180.5.1 - 2008-02-07 
  • elixir/trunk/elixir/__init__.py

    r303 r314  
    3737 
    3838 
    39 __version__ = '0.5.1' 
     39__version__ = '0.5.2' 
    4040 
    4141__all__ = ['Entity', 'EntityMeta', 
  • elixir/trunk/setup.cfg

    r311 r314  
    99modules = elixir, elixir.ext.associable, elixir.ext.versioned, 
    1010          elixir.ext.encrypted, elixir.ext.list 
    11 trac_browser_url = http://elixir.ematia.de/trac/browser/elixir/tags/0.5.1 
     11trac_browser_url = http://elixir.ematia.de/trac/browser/elixir/tags/0.5.2 
    1212 
  • elixir/trunk/setup.py

    r295 r314  
    22 
    33setup(name="Elixir", 
    4       version="0.5.1", 
     4      version="0.5.2", 
    55      description="Declarative Mapper for SQLAlchemy", 
    66      long_description="""