[Checkins] SVN: zamplugin.control/trunk/ Preparing release 0.6.0

Michael Howitz mh at gocept.com
Thu Feb 3 03:01:04 EST 2011


Log message for revision 120074:
  Preparing release 0.6.0

Changed:
  U   zamplugin.control/trunk/CHANGES.txt
  U   zamplugin.control/trunk/setup.py

-=-
Modified: zamplugin.control/trunk/CHANGES.txt
===================================================================
--- zamplugin.control/trunk/CHANGES.txt	2011-02-03 07:56:15 UTC (rev 120073)
+++ zamplugin.control/trunk/CHANGES.txt	2011-02-03 08:01:04 UTC (rev 120074)
@@ -2,8 +2,8 @@
 CHANGES
 =======
 
-Version 0.5.1dev (unreleased)
--------------------------
+0.6.0 (2011-02-03)
+------------------
 
 - Updated test setup, tests and demo application to run with ZTK 1.0, thus
   requiring ``zam.api`` >= 0.7.

Modified: zamplugin.control/trunk/setup.py
===================================================================
--- zamplugin.control/trunk/setup.py	2011-02-03 07:56:15 UTC (rev 120073)
+++ zamplugin.control/trunk/setup.py	2011-02-03 08:01:04 UTC (rev 120074)
@@ -19,18 +19,20 @@
 from setuptools import setup, find_packages
 
 def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    data = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    return data + '\n\n'
 
 setup (
     name='zamplugin.control',
-    version='0.5.1dev',
+    version='0.6.0',
     author = "Roger Ineichen and the Zope Community",
     author_email = "zope-dev at zope.org",
     description = "Error utility for Zope Application Management",
     long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
+        read('README.txt') +
+        '.. contents::\n\n' +
+        read('CHANGES.txt') +
+        read('src', 'zamplugin', 'control', 'README.txt')
         ),
     license = "ZPL 2.1",
     keywords = "zope3 zam server and application control management",



More information about the checkins mailing list