Changed in 0.9.4:
 o Added support for bulk data loads using COPY... FROM STDIN support (db.bulkload)
 o Unknwon column types are returned as buffer objects now instead
   of (possibly incomplete) Python strings
 o Added set import compatibility for Python 2.3 (several folks sent the same patch)

Changes in 0.9.3:
 o Object instances that have a __pgquote__ method can also be used as bind paramaters
 o Object instances can define a __binary__ attribute to be passed in as binary strings
 o added fetchone_dict(), fetchall_dict() and fetchmany_dict() cursor methods
 o updated the transaction creation code to automatically create transactions only when needed

Changes in 0.9.2:
 o fetchall now correctly returns an empty list when no results are produced from a select
 o fixed bug that affected bind parameters passing when multiple params are used in a query

Changes in version 0.9.1:
 o Rename cursor.messages attribute to cursor.notices
 o Renamed db.messages attributw to db.notices
 o Added db.setnotices(True|False) as a way of enabling/disabling collection
   of server notices
 o the Python module did not import the Db API mandated exceptions from its C counterpart

Version 0.9.0:
 o Initial public release
