Preparing release 2.2.2

This commit is contained in:
Federico Di Gregorio 2010-07-18 12:32:45 +02:00
parent 557608f715
commit c3b835929b
4 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-07-18 Federico Di Gregorio <fog@initd.org>
* Release 2.2.2.
2010-07-09 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* psycopg/cursor_type.c: executemany() propagates exceptions raised by the

View File

@ -1,3 +1,17 @@
What's new in psycopg 2.2.2
---------------------------
* Bux fixes:
- the call to logging.basicConfig() in pool.py has been dropped: it was
messing with some projects using logging (and a library should not
initialize the logging system anyway.)
- psycopg now correctly handles time zones with seconds in the UTC offset.
The old register_tstz_w_secs() function is deprecated and will raise a
warning if called.
- Exceptions raised by the column iterator are propagated.
- Exceptions raised by executemany() interators are propagated.
What's new in psycopg 2.2.1
---------------------------

View File

@ -16,7 +16,7 @@
# their work without bothering about the module dependencies.
ALLOWED_PSYCOPG_VERSIONS = ('2.2.0','2.2.1')
ALLOWED_PSYCOPG_VERSIONS = ('2.2.0','2.2.1','2.2.2')
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.2.2-devel'
PSYCOPG_VERSION = '2.2.2'
version_flags = ['dt', 'dec']
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')