mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-01-31 09:24:07 +03:00
Preparing release 2.2.2
This commit is contained in:
parent
557608f715
commit
c3b835929b
|
@ -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
|
||||
|
|
14
NEWS-2.2
14
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
|
||||
---------------------------
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
2
setup.py
2
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')
|
||||
|
|
Loading…
Reference in New Issue
Block a user