# HG changeset patch # User Thierry Florac # Date 1320168559 -3600 # Node ID 96e344fe61666bcf26f9f0529f6efd761ab11b28 # Parent 55e4cb0b79008393bf93d41dffbf1b568317eab9 Version 0.3.2 diff -r 55e4cb0b7900 -r 96e344fe6166 .pydevproject --- a/.pydevproject Tue Nov 01 18:27:52 2011 +0100 +++ b/.pydevproject Tue Nov 01 18:29:19 2011 +0100 @@ -26,7 +26,6 @@ /var/local/eggs/zope.security-3.8.0-py2.6-linux-x86_64.egg /var/local/eggs/ZODB3-3.10.2-py2.6-linux-x86_64.egg /var/local/eggs/zc.set-0.1dev_r75642-py2.6.egg -/var/local/eggs/zope.app.authentication-3.9-py2.6.egg /var/local/eggs/zope.session-3.9.3-py2.6.egg /var/local/eggs/zope.location-3.9.0-py2.6.egg /var/local/eggs/zope.index-3.6.1-py2.6-linux-x86_64.egg @@ -36,5 +35,8 @@ /var/local/eggs/pytz-2010l-py2.6.egg /var/local/eggs/zope.authentication-3.7.1-py2.6.egg /var/local/eggs/zc.set-0.1dev_r75642-py2.6.egg +/var/local/eggs/zope.pluggableauth-1.2-py2.6.egg +/var/local/eggs/zc.set-0.1dev_r75642-py2.6.egg +/var/local/eggs/zope.deprecation-3.4.1-py2.6.egg diff -r 55e4cb0b7900 -r 96e344fe6166 setup.py --- a/setup.py Tue Nov 01 18:27:52 2011 +0100 +++ b/setup.py Tue Nov 01 18:29:19 2011 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.3.1' +version = '0.3.2' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r 55e4cb0b7900 -r 96e344fe6166 ztfy.utils.egg-info/PKG-INFO --- a/ztfy.utils.egg-info/PKG-INFO Tue Nov 01 18:27:52 2011 +0100 +++ b/ztfy.utils.egg-info/PKG-INFO Tue Nov 01 18:29:19 2011 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: ztfy.utils -Version: 0.3.1 +Version: 0.3.2 Summary: ZTFY utility functions and classes for Zope3 Home-page: http://trac.ztfy.org/ztfy.utils Author: Thierry Florac @@ -41,8 +41,17 @@ Changelog ========= + 0.3.2 + ----- + - Mark ztfy.utils.security functions and classes as deprecated + + 0.3.1 + ----- + - Updated signature in ztfy.utils.catalog.index to match last hurry.query release + 0.3 --- + - Switched to ZTK-1.1.2 - Added "getAge" function in date module - Added session module and TALES adapter to get/set session values - Check None value in catalog.getObjectId(...) and catalog.getObject(...) methods diff -r 55e4cb0b7900 -r 96e344fe6166 ztfy/utils/docs/HISTORY.txt --- a/ztfy/utils/docs/HISTORY.txt Tue Nov 01 18:27:52 2011 +0100 +++ b/ztfy/utils/docs/HISTORY.txt Tue Nov 01 18:29:19 2011 +0100 @@ -1,6 +1,10 @@ Changelog ========= +0.3.2 +----- +- Mark ztfy.utils.security functions and classes as deprecated + 0.3.1 ----- - Updated signature in ztfy.utils.catalog.index to match last hurry.query release