Make sure that everything says version 3.2.

This commit is contained in:
D'Arcy J.M. Cain 2001-06-20 11:20:34 +00:00
parent 54e374c9e6
commit 588463a449
3 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ Version 3.2
- Add WIN32 support (gerhard@bigfoot.de)
- Fix some DB-API quoting problems (niall.smart@ebeon.com)
- Moved development into PostgreSQL development tree.
- Added NUMERICOID to list of returned types.
Version 3.1
- Fix some quoting functions. In particular handle NULLs better.

View File

@ -64,7 +64,7 @@ based on the PyGres95 code written by Pascal Andre, andre@chimay.via.ecp.fr.
I changed the version to 2.0 and updated the code for Python 1.5 and
PostgreSQL 6.2.1. While I was at it I upgraded the code to use full ANSI
style prototypes and changed the order of arguments to connect. The latest
version of PyGreSQL works with PostgreSQL 6.5 and Python 1.5.2.
version of PyGreSQL works with PostgreSQL 7.1.2 and Python 2.0.
1.2. Distribution files

View File

@ -46,7 +46,7 @@
#define NUMERICOID 1700
static PyObject *PGError;
static const char *PyPgVersion = "3.1";
static const char *PyPgVersion = "3.2";
/* taken from fileobject.c */
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))