From 8d4607ebbde66325c3a560c1ea16f5108d113fd6 Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Tue, 18 Oct 2005 14:20:27 +0000 Subject: [PATCH] Releasing 2.0 beta 5. --- ChangeLog | 6 +++++- NEWS | 4 ++-- setup.cfg | 12 ++++++------ setup.py | 2 +- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index e8a00672..b1d8e560 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2005-10-18 Federico Di Gregorio +2005-10-19 Federico Di Gregorio + + * Releasing 2.0 beta 5. + +2005-10-18 Federico Di Gregorio * NOTIFY is back end working. diff --git a/NEWS b/NEWS index 8696484c..e22c989e 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/setup.cfg b/setup.cfg index f703e752..3596b75c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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= diff --git a/setup.py b/setup.py index 140ecaa3..ac56bb41 100644 --- a/setup.py +++ b/setup.py @@ -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