From 14805a531144f623c7cc51c7713135ceca758cd2 Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Mon, 31 Jul 2006 00:22:13 +0000 Subject: [PATCH] Preparing release 2.0.3. --- ChangeLog | 2 ++ NEWS | 5 +++++ ZPsycopgDA/DA.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 20aa7c58..104728eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-07-31 Federico Di Gregorio + * Release 2.0.3. + * psycopg/cursor_type.c: applied patch from jbellis (#113) to allow column selection in .copy_from(). diff --git a/NEWS b/NEWS index 5c9aa8d1..7c7aaad1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +What's new in psycopg 2.0.3 +--------------------------- + +* Fixed various buglets and a memory leak (see ChangeLog for details) + What's new in psycopg 2.0.2 --------------------------- diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index d2c9b92d..c0bd8e9e 100644 --- a/ZPsycopgDA/DA.py +++ b/ZPsycopgDA/DA.py @@ -18,7 +18,7 @@ # See the LICENSE file for details. -ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2') +ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2', '2.0.3') import sys import time diff --git a/setup.py b/setup.py index dd4a001f..3160fe30 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,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.0.2' +PSYCOPG_VERSION = '2.0.3' version_flags = [] # to work around older distutil limitations