[Checkins] SVN: zope.sqlalchemy/trunk/ prepare 0.5 release

Laurence Rowe l at lrowe.co.uk
Mon Jun 7 12:04:02 EDT 2010


Log message for revision 113242:
  prepare 0.5 release

Changed:
  U   zope.sqlalchemy/trunk/CHANGES.txt
  U   zope.sqlalchemy/trunk/setup.py
  U   zope.sqlalchemy/trunk/src/zope/sqlalchemy/README.txt
  U   zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py

-=-
Modified: zope.sqlalchemy/trunk/CHANGES.txt
===================================================================
--- zope.sqlalchemy/trunk/CHANGES.txt	2010-06-07 15:40:29 UTC (rev 113241)
+++ zope.sqlalchemy/trunk/CHANGES.txt	2010-06-07 16:04:02 UTC (rev 113242)
@@ -1,7 +1,7 @@
 Changes
 =======
 
-0.5 (unreleased)
+0.5 (2010-06-07)
 ----------------
 
 * Remove redundant session.flush() / session.clear() on savepoint operations.

Modified: zope.sqlalchemy/trunk/setup.py
===================================================================
--- zope.sqlalchemy/trunk/setup.py	2010-06-07 15:40:29 UTC (rev 113241)
+++ zope.sqlalchemy/trunk/setup.py	2010-06-07 16:04:02 UTC (rev 113242)
@@ -3,7 +3,7 @@
 
 setup(
     name='zope.sqlalchemy',
-    version='0.5dev', # Remember to update __version__ in __init__.py
+    version='0.5', # Remember to update __version__ in __init__.py
     packages=find_packages('src'),
     package_dir = {'':'src'},
     include_package_data=True,

Modified: zope.sqlalchemy/trunk/src/zope/sqlalchemy/README.txt
===================================================================
--- zope.sqlalchemy/trunk/src/zope/sqlalchemy/README.txt	2010-06-07 15:40:29 UTC (rev 113241)
+++ zope.sqlalchemy/trunk/src/zope/sqlalchemy/README.txt	2010-06-07 16:04:02 UTC (rev 113242)
@@ -13,10 +13,20 @@
 only to provide a data manager and makes no attempt to define a `zopeish` way
 to configure engines.
 
-You need to understand SQLAlchemy for this package and this README to make 
-any sense. See http://sqlalchemy.org/docs/.
+For WSGI applications, Zope style automatic transaction management is
+available with `repoze.tm2`_, a part of `Repoze BFG`_ and `Turbogears 2`_.
 
+You need to understand `SQLAlchemy`_ for this package and this README to make 
+any sense.
 
+.. _repoze.tm2: http://docs.repoze.org/tm2/
+
+.. _Repoze BFG: http://bfg.repoze.org/
+
+.. _Turbogears 2: http://turbogears.org/
+
+.. _SQLAlchemy: http://sqlalchemy.org/docs/
+
 Running the tests
 =================
 
@@ -29,6 +39,10 @@
 
 $ ./bin/test
 
+or with the standard setuptools test command:
+
+$ ./bin/py setup.py test
+
 To enable testing with your own database set the TEST_DSN environment variable
 to your sqlalchemy database dsn. Two-phase commit behaviour may be tested by
 setting the TEST_TWOPHASE variable to a non empty string. e.g:

Modified: zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py
===================================================================
--- zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py	2010-06-07 15:40:29 UTC (rev 113241)
+++ zope.sqlalchemy/trunk/src/zope/sqlalchemy/__init__.py	2010-06-07 16:04:02 UTC (rev 113242)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-__version__ = '0.5dev'
+__version__ = '0.5'
 
 from datamanager import ZopeTransactionExtension, mark_changed
 invalidate = mark_changed



More information about the checkins mailing list