summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Di Gregorio <fog@initd.org>2007-01-19 03:40:27 +0000
committerFederico Di Gregorio <fog@initd.org>2007-01-19 03:40:27 +0000
commit288342879124def9c52f163a9930397282f09c26 (patch)
tree88386ad47c724b7b22a7f21596231c29446ec90e
parentb074dd4d8b72c495e9896faa907f34f6a0595da1 (diff)
downloadpsycopg2-288342879124def9c52f163a9930397282f09c26.tar.gz
Lets do a beta release.
-rw-r--r--ChangeLog12
-rw-r--r--ZPsycopgDA/DA.py3
-rw-r--r--setup.cfg2
-rw-r--r--setup.py2
4 files changed, 11 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index c0d3a52..e8b7f88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
* 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
in the PostgreSQL -> Python encoding conversion table.
- * lib/extras.py: merged DictCursor from #143 and renamed it RealDictCursor
- because allows access by cursor keys _only_. Also cleaned up a little bit
- the implementation of both DictCursor and RealDictCursor by introducing
- DictCursorBase.
+ * lib/extras.py: merged DictCursor from #143 and renamed it
+ RealDictCursor because allows access by cursor keys _only_.
+ Also cleaned up a little bit the implementation of both DictCursor
+ and RealDictCursor by introducing DictCursorBase.
* psycopg/pqpath.cs: new checks for NULL values (meaning an
exception was raised) in all method calls (fixes #134).
diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py
index a418765..3aeb84d 100644
--- a/ZPsycopgDA/DA.py
+++ b/ZPsycopgDA/DA.py
@@ -18,8 +18,7 @@
# See the LICENSE file for details.
-ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2', '2.0.3', '2.0.4', '2.0.5',
- '2.0.6')
+ALLOWED_PSYCOPG_VERSIONS = ('2.0.5', '2.0.6b1')
import sys
import time
diff --git a/setup.cfg b/setup.cfg
index f7d6d03..ce6b7fa 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[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_DISPLAY_SIZE enable display size calculation (a little slower)
# HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.4
diff --git a/setup.py b/setup.py
index 20975e5..664018f 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.5.1'
+PSYCOPG_VERSION = '2.0.6b1'
version_flags = []
# to work around older distutil limitations