Preparing release 2.0.14 (final)

This commit is contained in:
Federico Di Gregorio 2010-03-13 21:15:50 +01:00
parent b5373bd90a
commit 0edd520593
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2010-03-13 Federico Di Gregorio <fog@initd.org>
* Release 2.0.14.
2010-03-11 Federico Di Gregorio <fog@initd.org> 2010-03-11 Federico Di Gregorio <fog@initd.org>
* setup.py: one-liner from Devrim GÜNDÜZ to build with PostgreSQL * setup.py: one-liner from Devrim GÜNDÜZ to build with PostgreSQL
@ -9,7 +13,6 @@
.isfinite() and two different calls to ._isinfinity() and ._isnan() are .isfinite() and two different calls to ._isinfinity() and ._isnan() are
required. This fixes both a test failure and a segfault. required. This fixes both a test failure and a segfault.
2010-02-15 Federico Di Gregorio <fog@initd.org> 2010-02-15 Federico Di Gregorio <fog@initd.org>
* Added new Decimal adapter that correctly converts NaN and infinity * Added new Decimal adapter that correctly converts NaN and infinity

2
NEWS
View File

@ -10,7 +10,7 @@ What's new in psycopg 2.0.14
* Bug fixes: * Bug fixes:
- No loss of precision when using floats anymore. - No loss of precision when using floats anymore.
- decimal.Decimal nan and infinity correctly converted to PostgreSQL - decimal.Decimal "nan" and "infinity" correctly converted to PostgreSQL
numeric NaN values (note that PostgreSQL numeric type does not support numeric NaN values (note that PostgreSQL numeric type does not support
infinity but just NaNs.) infinity but just NaNs.)
- psycopg2.extensions now includes Binary. - psycopg2.extensions now includes Binary.

View File

@ -56,7 +56,7 @@ 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.14' PSYCOPG_VERSION = '2.0.14'
version_flags = ['release-candidate-1', 'dt', 'dec'] version_flags = ['dt', 'dec']
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win') PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')