[Checkins] SVN: zope.psycopgda/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Feb 27 02:51:07 EST 2008


Log message for revision 84319:
  Get ready for release.
  

Changed:
  _U  zope.psycopgda/trunk/
  U   zope.psycopgda/trunk/CHANGES.txt
  U   zope.psycopgda/trunk/setup.py
  _U  zope.psycopgda/trunk/src/
  U   zope.psycopgda/trunk/src/zope/psycopgda/adapter.py

-=-

Property changes on: zope.psycopgda/trunk
___________________________________________________________________
Name: svn:ignore
   - .installed.cfg
bin
develop-eggs
parts

   + .installed.cfg
bin
develop-eggs
dist
parts


Modified: zope.psycopgda/trunk/CHANGES.txt
===================================================================
--- zope.psycopgda/trunk/CHANGES.txt	2008-02-27 07:17:42 UTC (rev 84318)
+++ zope.psycopgda/trunk/CHANGES.txt	2008-02-27 07:51:06 UTC (rev 84319)
@@ -2,6 +2,11 @@
 CHANGES
 =======
 
+1.1.1 (2008/01/26)
+------------------
+
+- Bug: Some classes were incorrectly looked up.
+
 1.1.0 (2008/01/26)
 ------------------
 

Modified: zope.psycopgda/trunk/setup.py
===================================================================
--- zope.psycopgda/trunk/setup.py	2008-02-27 07:17:42 UTC (rev 84318)
+++ zope.psycopgda/trunk/setup.py	2008-02-27 07:51:06 UTC (rev 84319)
@@ -25,7 +25,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.psycopgda',
-      version = '1.2.0dev',
+      version = '1.1.1',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       description='Psycopg Database Adapter for Zope 3',


Property changes on: zope.psycopgda/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.psycopgda.egg-info


Modified: zope.psycopgda/trunk/src/zope/psycopgda/adapter.py
===================================================================
--- zope.psycopgda/trunk/src/zope/psycopgda/adapter.py	2008-02-27 07:17:42 UTC (rev 84318)
+++ zope.psycopgda/trunk/src/zope/psycopgda/adapter.py	2008-02-27 07:51:06 UTC (rev 84319)
@@ -394,7 +394,7 @@
 
     def commit(self):
         try:
-            ZopeConnection.commit(self)
+            zope.rdb.ZopeConnection.commit(self)
         except psycopg.Error, error:
             _handle_psycopg_exception(error)
 
@@ -404,7 +404,7 @@
     def execute(self, operation, parameters=None):
         """See IZopeCursor"""
         try:
-            return ZopeCursor.execute(self, operation, parameters)
+            return zope.rdb.ZopeCursor.execute(self, operation, parameters)
         except psycopg.Error, error:
             _handle_psycopg_exception(error)
 
@@ -412,6 +412,7 @@
         """See IZopeCursor"""
         raise RuntimeError, 'Oos'
         try:
-            return ZopeCursor.execute(self, operation, seq_of_parameters)
+            return zope.rdb.ZopeCursor.execute(
+                self, operation, seq_of_parameters)
         except psycopg.Error, error:
             _handle_psycopg_exception(error)



More information about the Checkins mailing list