Releasing 2.0 beta 5.

This commit is contained in:
Federico Di Gregorio 2005-10-18 14:20:27 +00:00
parent ec31179c9e
commit 8d4607ebbd
4 changed files with 14 additions and 10 deletions

View File

@ -1,4 +1,8 @@
2005-10-18 Federico Di Gregorio <fog@initd.org>
2005-10-19 Federico Di Gregorio <fog@initd.org>
* Releasing 2.0 beta 5.
2005-10-18 Federico Di Gregorio <fog@initd.org>
* NOTIFY is back end working.

4
NEWS
View File

@ -1,5 +1,5 @@
What's new in psycopg 2.0 rc 1
------------------------------
What's new in psycopg 2.0 beta 5
--------------------------------
* First (and probably last) release candidate.

View File

@ -3,17 +3,17 @@ define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
# PSYCOPG_DEBUG can be added to enable verbose debug information
# PSYCOPG_OWN_QUOTING can be added above but it is deprecated
# set to 1 to use Python datatime objects for date/time representation
# Set to 1 to use Python datatime objects for default date/time representation
use_pydatetime=1
# include_dirs is the preferred method for locating postgresql headers,
# "include_dirs" is the preferred method for locating postgresql headers,
# but some extra checks on sys.platform will still be done in setup.py.
# the next line is the default as used on psycopg author Debian system:
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/8.0
# uncomment next line on Mandrake 10.x (and comment previous one):
# The next line is the default as used on psycopg author Debian laptop:
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/server
# Uncomment next line on Mandrake 10.x (and comment previous one):
#include_dirs=.:/usr/include/pgsql/8.0:/usr/include/pgsql/8.0/server
# if postgresql is installed somewhere weird (i.e., not in your runtime library
# If postgresql is installed somewhere weird (i.e., not in your runtime library
# path like /usr/lib), just add the right path in "library_dir" any extra
# libraries required to link in "libraries".
#library_dirs=

View File

@ -55,7 +55,7 @@ from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc
from distutils.ccompiler import get_default_compiler
PSYCOPG_VERSION = '2.0rc1'
PSYCOPG_VERSION = '2.0b5'
version_flags = []
# to work around older distutil limitations