Preparing release 2.0.13

This commit is contained in:
Federico Di Gregorio 2009-10-04 12:53:42 +02:00
parent 8bb617ee76
commit 9bd771cda0
4 changed files with 20 additions and 5 deletions

View File

@ -1,5 +1,7 @@
2009-10-04 Federico Di Gregorio <fog@initd.org>
* Release 2.0.13.
* setup.py: applied patch from Christian Jacobsen to link to static
version of libpq.

19
NEWS
View File

@ -1,5 +1,18 @@
What's new in psycopg 2.0.13
----------------------------
* New features:
- Support for UUID arrays.
- It is now possible to build psycopg linking to a static libpq
library.
* Bug fixes:
- Fixed a deadlock related to using the same connection with
multiple cursors from different threads.
What's new in psycopg 2.0.12
---------------------------
----------------------------
* New features:
- The connection object now has a reset() method that can be used to
@ -16,7 +29,7 @@ What's new in psycopg 2.0.12
What's new in psycopg 2.0.11
---------------------------
----------------------------
* New features:
- DictRow and RealDictRow now use less memory. If you inherit on them
@ -30,7 +43,7 @@ What's new in psycopg 2.0.11
What's new in psycopg 2.0.10
---------------------------
----------------------------
* New features:
- A specialized type-caster that can parse time zones with seconds is

View File

@ -18,7 +18,7 @@
# See the LICENSE file for details.
ALLOWED_PSYCOPG_VERSIONS = ('2.0.7','2.0.8','2.0.9','2.0.10', '2.0.11', '2.0.12')
ALLOWED_PSYCOPG_VERSIONS = ('2.0.7','2.0.8','2.0.9','2.0.10', '2.0.11', '2.0.12', '2.0.13')
import sys
import time

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.0.12'
PSYCOPG_VERSION = '2.0.13'
version_flags = ['dt', 'dec']
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')