diff --git a/ChangeLog b/ChangeLog index cbeb111c..8dba00c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-09-16 Federico Di Gregorio + + * Release 2.0.8. + 2008-07-26 Federico Di Gregorio * psycopg/connection_type.c: merged get_backend_pid() method diff --git a/NEWS b/NEWS index a7840e07..ef469f72 100644 --- a/NEWS +++ b/NEWS @@ -1,18 +1,17 @@ What's new in psycopg 2.0.8 --------------------------- -* The connection object now has a get_backend_pid() method that - returns the current PostgreSQL connection backend process PID. +* New features: + - The connection object now has a get_backend_pid() method that + returns the current PostgreSQL connection backend process PID. + - The PostgreSQL large object API has been exposed through the + Cursor.lobject() method. -* The PostgreSQL large object API has been exposed through the - Cursor.lobject() method. - -* Some fixes to ZPsycopgDA have been merged from the Debian package. - -* A memory leak was fixed in Cursor.executemany(). - -* A double free was fixed in pq_complete_error(), that caused crashes - under some error conditions. +* Bug fixes: + - Some fixes to ZPsycopgDA have been merged from the Debian package. + - A memory leak was fixed in Cursor.executemany(). + - A double free was fixed in pq_complete_error(), that caused crashes + under some error conditions. What's new in psycopg 2.0.7 --------------------------- diff --git a/setup.cfg b/setup.cfg index 26c5693f..da79b776 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [build_ext] -define=PSYCOPG_EXTENSIONS,PSYCOPG_NEW_BOOLEAN,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3,PSYCOPG_DEBUG +define=PSYCOPG_EXTENSIONS,PSYCOPG_NEW_BOOLEAN,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3 + # PSYCOPG_EXTENSIONS enables extensions to PEP-249 (you really want this) # PSYCOPG_DISPLAY_SIZE enable display size calculation (a little slower) # HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.4