[Checkins] SVN: z3c.profiler/trunk/ Preparing release 0.7.0

Michael Howitz mh at gocept.com
Sat Mar 14 05:24:55 EDT 2009


Log message for revision 98083:
  Preparing release 0.7.0

Changed:
  U   z3c.profiler/trunk/CHANGES.txt
  U   z3c.profiler/trunk/setup.py
  U   z3c.profiler/trunk/src/z3c/profiler/setup.zcml

-=-
Modified: z3c.profiler/trunk/CHANGES.txt
===================================================================
--- z3c.profiler/trunk/CHANGES.txt	2009-03-14 08:32:26 UTC (rev 98082)
+++ z3c.profiler/trunk/CHANGES.txt	2009-03-14 09:24:55 UTC (rev 98083)
@@ -2,16 +2,17 @@
 CHANGES
 =======
 
-0.6.1 (unreleased)
+0.7.0 (2009-03-14)
 ------------------
 
-- Nothing changed yet.
+- Use current ``zope.configuration`` instead of deprecated
+  ``zc.configuration`` to get exclude directive.
 
 
 0.6.0 (2009-02-19)
 ------------------
 
-- No longer uses deprecated ``z3c.layer`.
+- No longer uses deprecated ``z3c.layer``.
 
 - Fixed dependencies and tests.
 

Modified: z3c.profiler/trunk/setup.py
===================================================================
--- z3c.profiler/trunk/setup.py	2009-03-14 08:32:26 UTC (rev 98082)
+++ z3c.profiler/trunk/setup.py	2009-03-14 09:24:55 UTC (rev 98083)
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version = '0.6.1 dev'
+version = '0.7.0'
 
 setup (
     name='z3c.profiler',
@@ -69,7 +69,7 @@
         ),
     install_requires = [
         'setuptools',
-        'zc.configuration',
+        'zope.configuration >= 3.5.0',
         'zope.app.component',
         'zope.app.pagetemplate',
         'zope.app.publisher',

Modified: z3c.profiler/trunk/src/z3c/profiler/setup.zcml
===================================================================
--- z3c.profiler/trunk/src/z3c/profiler/setup.zcml	2009-03-14 08:32:26 UTC (rev 98082)
+++ z3c.profiler/trunk/src/z3c/profiler/setup.zcml	2009-03-14 09:24:55 UTC (rev 98083)
@@ -8,9 +8,6 @@
   <!-- Turn on the devmode -->
   <meta:provides feature="devmode" />
 
-  <!-- load meta configuration for exclude -->
-  <include package="zc.configuration" file="meta.zcml" />
-
   <!-- exclude will prevent from include -->
   <exclude package="zope.app.authentication" file="ftpplugins.zcml" />
   <exclude package="zope.app.authentication" file="groupfolder.zcml" />



More information about the Checkins mailing list