[Checkins] SVN: zope.sendmail/trunk/ preparing the 3.7.1 release

Fabio Tranchitella kobold at kobold.it
Wed Jan 13 08:32:26 EST 2010


Log message for revision 108107:
  preparing the 3.7.1 release

Changed:
  U   zope.sendmail/trunk/CHANGES.txt
  U   zope.sendmail/trunk/setup.py
  U   zope.sendmail/trunk/src/zope/sendmail/delivery.py

-=-
Modified: zope.sendmail/trunk/CHANGES.txt
===================================================================
--- zope.sendmail/trunk/CHANGES.txt	2010-01-13 13:31:41 UTC (rev 108106)
+++ zope.sendmail/trunk/CHANGES.txt	2010-01-13 13:32:26 UTC (rev 108107)
@@ -2,10 +2,11 @@
 CHANGES
 =======
 
-3.7.1 (unreleased)
+3.7.1 (2010-01-13)
 ------------------
 
-- ...
+- Backward compatibility import of zope.sendmail.queue.QueueProcessorThread in
+  zope.sendmail.delivery.
 
 3.7.0 (2010-01-12)
 ------------------

Modified: zope.sendmail/trunk/setup.py
===================================================================
--- zope.sendmail/trunk/setup.py	2010-01-13 13:31:41 UTC (rev 108106)
+++ zope.sendmail/trunk/setup.py	2010-01-13 13:32:26 UTC (rev 108107)
@@ -24,7 +24,7 @@
 
 
 setup(name='zope.sendmail',
-      version = '3.7.1dev',
+      version = '3.7.1',
       url='http://pypi.python.org/pypi/zope.sendmail',
       license='ZPL 2.1',
       description='Zope sendmail',

Modified: zope.sendmail/trunk/src/zope/sendmail/delivery.py
===================================================================
--- zope.sendmail/trunk/src/zope/sendmail/delivery.py	2010-01-13 13:31:41 UTC (rev 108106)
+++ zope.sendmail/trunk/src/zope/sendmail/delivery.py	2010-01-13 13:32:26 UTC (rev 108107)
@@ -32,6 +32,9 @@
 from transaction.interfaces import IDataManager
 import transaction
 
+# BBB: this import is needed for backward compatibility with older versions of
+# zope.sendmail which defined QueueProcessorThread in this module
+from zope.sendmail.queue import QueueProcessorThread
 
 class MailDataManager(object):
     implements(IDataManager)



More information about the checkins mailing list