diff --git a/MANIFEST.in b/MANIFEST.in index 468a489a..f03b87d1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,6 +9,8 @@ recursive-include doc README TODO HACKING SUCCESS COPYING* ChangeLog-1.x pep-024 recursive-include doc *.txt *.html *.css *.js Makefile recursive-include doc/src *.rst *.py *.css Makefile prune doc/src/_build +recursive-include doc/html * +prune doc/html/_sources recursive-include scripts *.py *.sh include scripts/maketypes.sh scripts/buildtypes.py include AUTHORS README INSTALL LICENSE ChangeLog diff --git a/NEWS b/NEWS index cc5fd4c8..933b00af 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,24 @@ What's new in psycopg 2.0.14 ---------------------------- -* It seems we're now good citizens of the free software ecosystem - and that big big big companies and people ranting on the - pgsql-hackers mailing list we'll now not dislike us. +* New features: + - Support for adapting tuples to PostgreSQL arrays is now enabled by + default and does not require importing psycopg2.extensions anymore. + - "can't adapt" error message now includes full type information. + - Thank to Daniele Varazzo (piro) psycopg2's source package now includes + full documentation in HTML and plain text format. + +* Bug fixes: + - No loss of precision when using floats anymore. + - 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. + +* It seems we're good citizens of the free software ecosystem and that big + big big companies and people ranting on the pgsql-hackers mailing list + we'll now not dislike us. *g* (See LICENSE file for the details.) + What's new in psycopg 2.0.13 ---------------------------- diff --git a/ZPsycopgDA/DA.py b/ZPsycopgDA/DA.py index 62358fd1..78b589c9 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.0.7','2.0.8','2.0.9','2.0.10', '2.0.11', '2.0.12', '2.0.13') +ALLOWED_PSYCOPG_VERSIONS = ('2.0.14',) import sys import time diff --git a/setup.py b/setup.py index 784e08ed..97d08acd 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.0.13' +PSYCOPG_VERSION = '2.0.14' version_flags = ['dt', 'dec'] PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')