mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-26 02:43:43 +03:00
Preparing release 2.0.13
This commit is contained in:
parent
8bb617ee76
commit
9bd771cda0
|
@ -1,5 +1,7 @@
|
||||||
2009-10-04 Federico Di Gregorio <fog@initd.org>
|
2009-10-04 Federico Di Gregorio <fog@initd.org>
|
||||||
|
|
||||||
|
* Release 2.0.13.
|
||||||
|
|
||||||
* setup.py: applied patch from Christian Jacobsen to link to static
|
* setup.py: applied patch from Christian Jacobsen to link to static
|
||||||
version of libpq.
|
version of libpq.
|
||||||
|
|
||||||
|
|
19
NEWS
19
NEWS
|
@ -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
|
What's new in psycopg 2.0.12
|
||||||
---------------------------
|
----------------------------
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
- The connection object now has a reset() method that can be used to
|
- 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
|
What's new in psycopg 2.0.11
|
||||||
---------------------------
|
----------------------------
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
- DictRow and RealDictRow now use less memory. If you inherit on them
|
- 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
|
What's new in psycopg 2.0.10
|
||||||
---------------------------
|
----------------------------
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
- A specialized type-caster that can parse time zones with seconds is
|
- A specialized type-caster that can parse time zones with seconds is
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# See the LICENSE file for details.
|
# 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 sys
|
||||||
import time
|
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.sysconfig import get_python_inc
|
||||||
from distutils.ccompiler import get_default_compiler
|
from distutils.ccompiler import get_default_compiler
|
||||||
|
|
||||||
PSYCOPG_VERSION = '2.0.12'
|
PSYCOPG_VERSION = '2.0.13'
|
||||||
version_flags = ['dt', 'dec']
|
version_flags = ['dt', 'dec']
|
||||||
|
|
||||||
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')
|
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user