[Checkins] SVN: keas.kmi/trunk/ Fix tests and prepare release.

Stephan Richter srichter at gmail.com
Sun Jul 26 22:00:33 EDT 2009


Log message for revision 102315:
  Fix tests and prepare release.
  

Changed:
  U   keas.kmi/trunk/CHANGES.txt
  U   keas.kmi/trunk/setup.py
  U   keas.kmi/trunk/src/keas/kmi/facility.py
  U   keas.kmi/trunk/src/keas/kmi/interfaces.py
  U   keas.kmi/trunk/src/keas/kmi/persistent.txt

-=-
Modified: keas.kmi/trunk/CHANGES.txt
===================================================================
--- keas.kmi/trunk/CHANGES.txt	2009-07-27 01:52:10 UTC (rev 102314)
+++ keas.kmi/trunk/CHANGES.txt	2009-07-27 02:00:33 UTC (rev 102315)
@@ -2,10 +2,12 @@
 CHANGES
 =======
 
-0.3.2 (unreleased)
+1.0.0 (2009-07-24)
 ------------------
 
+- Feature: Update to the latest package versions.
 
+
 0.3.1 (2008-09-11)
 ------------------
 

Modified: keas.kmi/trunk/setup.py
===================================================================
--- keas.kmi/trunk/setup.py	2009-07-27 01:52:10 UTC (rev 102314)
+++ keas.kmi/trunk/setup.py	2009-07-27 02:00:33 UTC (rev 102315)
@@ -22,7 +22,7 @@
 
 setup (
     name='keas.kmi',
-    version='0.3.2dev',
+    version='1.0.0',
     author = "Stephan Richter and the Zope Community",
     author_email = "zope-dev at zope.org",
     description = "A Key Management Infrastructure",
@@ -60,12 +60,15 @@
         ),
     install_requires = [
         'M2Crypto>=0.18',
+        'ZODB3',
         'setuptools',
         'z3c.rest',
+        'zope.annotation',
         'zope.component',
+        'zope.container',
+        'zope.dublincore',
         'zope.interface',
         'zope.schema',
-        'ZODB3',
         ],
     zip_safe = False,
     entry_points = """

Modified: keas.kmi/trunk/src/keas/kmi/facility.py
===================================================================
--- keas.kmi/trunk/src/keas/kmi/facility.py	2009-07-27 01:52:10 UTC (rev 102314)
+++ keas.kmi/trunk/src/keas/kmi/facility.py	2009-07-27 02:00:33 UTC (rev 102315)
@@ -26,7 +26,7 @@
 import zope.location
 from z3c.rest import client
 from zope.annotation.interfaces import IAttributeAnnotatable
-from zope.app.container import btree
+from zope.container import btree
 from zope.dublincore import property
 from zope.schema.fieldproperty import FieldProperty
 from keas.kmi import interfaces

Modified: keas.kmi/trunk/src/keas/kmi/interfaces.py
===================================================================
--- keas.kmi/trunk/src/keas/kmi/interfaces.py	2009-07-27 01:52:10 UTC (rev 102314)
+++ keas.kmi/trunk/src/keas/kmi/interfaces.py	2009-07-27 02:00:33 UTC (rev 102315)
@@ -17,7 +17,7 @@
 __docformat__ = "reStructuredText"
 import zope.interface
 import zope.schema
-from zope.app.container import interfaces
+from zope.container import interfaces
 
 
 class IKey(zope.interface.Interface):

Modified: keas.kmi/trunk/src/keas/kmi/persistent.txt
===================================================================
--- keas.kmi/trunk/src/keas/kmi/persistent.txt	2009-07-27 01:52:10 UTC (rev 102314)
+++ keas.kmi/trunk/src/keas/kmi/persistent.txt	2009-07-27 02:00:33 UTC (rev 102315)
@@ -42,8 +42,8 @@
 Every persistent object is stored separately.  Only the objects that inherit
 from `EncryptedPersistent` will be encrypted.
 
-    >>> from zope.app.generations.generations import PersistentDict
-    >>> users = PersistentDict()
+    >>> import persistent.dict
+    >>> users = persistent.dict.PersistentDict()
     >>> users['stephan'] = UserPrivateData('Stephan Richter', '123456789')
     >>> users['mgedmin'] = UserPrivateData('Marius Gedminas', '987654321')
 



More information about the Checkins mailing list