diff --git a/ChangeLog b/ChangeLog index bb0b111c..7de5154c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-07-18 Federico Di Gregorio + + * Release 2.2.2. + 2010-07-09 Daniele Varrazzo * psycopg/cursor_type.c: executemany() propagates exceptions raised by the diff --git a/NEWS-2.2 b/NEWS-2.2 index f9c38621..1bf7b20b 100644 --- a/NEWS-2.2 +++ b/NEWS-2.2 @@ -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 --------------------------- diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index 7fe00f57..b4f0c6fe 100644 --- a/ZPsycopgDA/DA.py +++ b/ZPsycopgDA/DA.py @@ -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 diff --git a/setup.py b/setup.py index 2fec5ea2..5520bd9b 100644 --- a/setup.py +++ b/setup.py @@ -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')