From 0edd52059300228b6df8813c9c55191e69f1412d Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Sat, 13 Mar 2010 21:15:50 +0100 Subject: [PATCH] Preparing release 2.0.14 (final) --- ChangeLog | 5 ++++- NEWS | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 962e5b55..b355bd52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-03-13 Federico Di Gregorio + + * Release 2.0.14. + 2010-03-11 Federico Di Gregorio * 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 required. This fixes both a test failure and a segfault. - 2010-02-15 Federico Di Gregorio * Added new Decimal adapter that correctly converts NaN and infinity diff --git a/NEWS b/NEWS index dcad5eb3..6f32ee75 100644 --- a/NEWS +++ b/NEWS @@ -10,7 +10,7 @@ What's new in psycopg 2.0.14 * Bug fixes: - 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 infinity but just NaNs.) - psycopg2.extensions now includes Binary. diff --git a/setup.py b/setup.py index 1305fc32..75915693 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ from distutils.sysconfig import get_python_inc from distutils.ccompiler import get_default_compiler PSYCOPG_VERSION = '2.0.14' -version_flags = ['release-candidate-1', 'dt', 'dec'] +version_flags = ['dt', 'dec'] PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')