[Checkins] SVN: zope.app.testing/trunk/ Fix deprecation warning.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Oct 31 12:27:28 EDT 2007


Log message for revision 81276:
  Fix deprecation warning.
  

Changed:
  U   zope.app.testing/trunk/CHANGES.txt
  U   zope.app.testing/trunk/setup.py
  U   zope.app.testing/trunk/src/zope/app/testing/ftesting.zcml

-=-
Modified: zope.app.testing/trunk/CHANGES.txt
===================================================================
--- zope.app.testing/trunk/CHANGES.txt	2007-10-31 16:22:56 UTC (rev 81275)
+++ zope.app.testing/trunk/CHANGES.txt	2007-10-31 16:27:27 UTC (rev 81276)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+3.4.1 (2007-10-31)
+------------------
+
+- Fixed deprecation warning for ``ZopeSecurityPolicy``.
+
 3.4.0 (2007-10-27)
 ------------------
 

Modified: zope.app.testing/trunk/setup.py
===================================================================
--- zope.app.testing/trunk/setup.py	2007-10-31 16:22:56 UTC (rev 81275)
+++ zope.app.testing/trunk/setup.py	2007-10-31 16:27:27 UTC (rev 81276)
@@ -22,7 +22,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.testing',
-      version = '3.5.0',
+      version = '3.4.1',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       description='Zope Application Testing Support',

Modified: zope.app.testing/trunk/src/zope/app/testing/ftesting.zcml
===================================================================
--- zope.app.testing/trunk/src/zope/app/testing/ftesting.zcml	2007-10-31 16:22:56 UTC (rev 81275)
+++ zope.app.testing/trunk/src/zope/app/testing/ftesting.zcml	2007-10-31 16:27:27 UTC (rev 81276)
@@ -17,7 +17,7 @@
   <include package="zope.app.securitypolicy" />
 
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <role id="zope.Anonymous" title="Everybody"
                  description="All users have this role implicitly" />



More information about the Checkins mailing list