Lets do a beta release.

This commit is contained in:
Federico Di Gregorio 2007-01-19 03:40:27 +00:00
parent b074dd4d8b
commit 2883428791
4 changed files with 11 additions and 8 deletions

View File

@ -1,13 +1,17 @@
2007-01-19 Federico Di Gregorio <fog@initd.org>
* Release 2.0.6 beta 1.
2007-01-16 Federico Di Gregorio <fog@initd.org> 2007-01-16 Federico Di Gregorio <fog@initd.org>
* psycopg/connection_type.c: .set_client_encoding() now converts the * psycopg/connection_type.c: .set_client_encoding() now converts the
argument to upper case to make sure it has the same case of the entries argument to upper case to make sure it has the same case of the entries
in the PostgreSQL -> Python encoding conversion table. in the PostgreSQL -> Python encoding conversion table.
* lib/extras.py: merged DictCursor from #143 and renamed it RealDictCursor * lib/extras.py: merged DictCursor from #143 and renamed it
because allows access by cursor keys _only_. Also cleaned up a little bit RealDictCursor because allows access by cursor keys _only_.
the implementation of both DictCursor and RealDictCursor by introducing Also cleaned up a little bit the implementation of both DictCursor
DictCursorBase. and RealDictCursor by introducing DictCursorBase.
* psycopg/pqpath.cs: new checks for NULL values (meaning an * psycopg/pqpath.cs: new checks for NULL values (meaning an
exception was raised) in all method calls (fixes #134). exception was raised) in all method calls (fixes #134).

View File

@ -18,8 +18,7 @@
# See the LICENSE file for details. # See the LICENSE file for details.
ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2', '2.0.3', '2.0.4', '2.0.5', ALLOWED_PSYCOPG_VERSIONS = ('2.0.5', '2.0.6b1')
'2.0.6')
import sys import sys
import time import time

View File

@ -1,5 +1,5 @@
[build_ext] [build_ext]
define=PSYCOPG_DEBUG,PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,PSYCOPG_NEW_BOOLEAN,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3 define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,PSYCOPG_NEW_BOOLEAN,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
# PSYCOPG_EXTENSIONS enables extensions to PEP-249 (you really want this) # PSYCOPG_EXTENSIONS enables extensions to PEP-249 (you really want this)
# PSYCOPG_DISPLAY_SIZE enable display size calculation (a little slower) # PSYCOPG_DISPLAY_SIZE enable display size calculation (a little slower)
# HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.4 # HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.4

View File

@ -52,7 +52,7 @@ from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc from distutils.sysconfig import get_python_inc
from distutils.ccompiler import get_default_compiler from distutils.ccompiler import get_default_compiler
PSYCOPG_VERSION = '2.0.5.1' PSYCOPG_VERSION = '2.0.6b1'
version_flags = [] version_flags = []
# to work around older distutil limitations # to work around older distutil limitations