Preparing release 2.0.14

This commit is contained in:
Federico Di Gregorio 2010-02-21 01:26:43 +01:00
parent 4712ad1550
commit fd6d3185b4
4 changed files with 22 additions and 5 deletions

View File

@ -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

21
NEWS
View File

@ -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
----------------------------

View File

@ -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

View File

@ -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')