[Checkins] SVN: zc.relationship/branches/1.1/ convert branch to eggs; prepare for 1.1 release; update CHANGES

Gary Poster gary at zope.com
Wed Jul 4 11:54:29 EDT 2007


Log message for revision 77401:
  convert branch to eggs; prepare for 1.1 release; update CHANGES

Changed:
  U   zc.relationship/branches/1.1/CHANGES.txt
  U   zc.relationship/branches/1.1/buildout.cfg
  U   zc.relationship/branches/1.1/setup.py

-=-
Modified: zc.relationship/branches/1.1/CHANGES.txt
===================================================================
--- zc.relationship/branches/1.1/CHANGES.txt	2007-07-04 15:53:25 UTC (rev 77400)
+++ zc.relationship/branches/1.1/CHANGES.txt	2007-07-04 15:54:29 UTC (rev 77401)
@@ -5,12 +5,35 @@
 1.1
 ===
 
-(unreleased; supports Zope 3.4/Zope 2.11/ZODB 3.8, also unreleased)
+(supports Zope 3.4/Zope 2.11/ZODB 3.8)
 
-- adjust to BTrees changes in ZODB 3.8 (thanks Jürgen Kartnaller)
+1.1.0
+-----
 
+- adjust to BTrees changes in ZODB 3.8 (thanks Juergen Kartnaller)
+
+- converted buildout to rely exclusively on eggs  
+
+1.0
+===
+
+(supports Zope 3.3/Zope 2.10/ZODB 3.7)
+
+1.0.2
+-----
+
+- Incorporated tests and bug fixes to relationship containers from
+  Markus Kemmerling:
+
+  * ManyToOneRelationship instantiation was broken
+  
+  * The `findRelationships` method misbehaved if both, `source` and `target`,
+    are not None, but `bool(target)` evaluated to False.
+    
+  * ISourceRelationship and ITargetRelationship had errors.
+
 1.0.1
-=====
+-----
 
 (supports Zope 3.3/Zope 2.10/ZODB 3.7)
 
@@ -26,7 +49,7 @@
   Reported by Gabriel Shaar.
 
 1.0
-===
+---
 
 (supports Zope 3.3/Zope 2.10/ZODB 3.7)
 

Modified: zc.relationship/branches/1.1/buildout.cfg
===================================================================
--- zc.relationship/branches/1.1/buildout.cfg	2007-07-04 15:53:25 UTC (rev 77400)
+++ zc.relationship/branches/1.1/buildout.cfg	2007-07-04 15:54:29 UTC (rev 77401)
@@ -1,15 +1,15 @@
 [buildout]
 develop = .
-parts = zope3 test
+parts = test py
 
 find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zc.relationship
-extra-paths = parts/zope3/src
+defaults = "--tests-pattern [fn]?tests --exit-with-status".split()
 
-[zope3]
-recipe = zc.recipe.zope3checkout
-url = svn://svn.zope.org/repos/main/Zope3/trunk
-
+[py]
+recipe = zc.recipe.egg
+eggs = zc.relationship
+interpreter = py

Modified: zc.relationship/branches/1.1/setup.py
===================================================================
--- zc.relationship/branches/1.1/setup.py	2007-07-04 15:53:25 UTC (rev 77400)
+++ zc.relationship/branches/1.1/setup.py	2007-07-04 15:54:29 UTC (rev 77401)
@@ -2,7 +2,7 @@
 
 setup(
     name="zc.relationship",
-    version="1.1a",
+    version="1.1",
     packages=find_packages('src'),
     include_package_data=True,
     package_dir= {'':'src'},
@@ -14,8 +14,24 @@
     author_email='zope3-dev at zope.org',
     description=open("README.txt").read(),
     long_description=(
-        open('CHANGES.txt').read() + '\n========\nOverview\n========\n\n' +
+        open('CHANGES.txt').read() +
+        '\n========\nOverview\n========\n\n' +
         open("src/zc/relationship/README.txt").read()),
     license='ZPL 2.1',
     keywords="zope zope3",
+    install_requires=[
+        'ZODB3 >= 3.8dev',
+        'zope.app.container', # would be nice to remove this
+        'zope.app.intid',
+        'zope.interface',
+        'zope.component',
+        'zope.app.keyreference',
+        'zope.location',
+        'zope.index',
+        
+        'zope.app.testing', # TODO remove this
+        'zope.app.component', # TODO remove this
+        'zope.testing',
+        'setuptools',
+        ],
     )



More information about the Checkins mailing list