Preparing release 2.2.1

This commit is contained in:
Federico Di Gregorio 2010-05-17 21:51:25 +02:00
parent 069695b4ae
commit 23391a3c55
4 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2010-05-17 Federico Di Gregorio <fog@initd.org>
* Release 2.2.1.
* Builds again on Windows.
2010-05-16 Federico Di Gregorio <fog@initd.org>
* Release 2.2.0.

View File

@ -1,3 +1,10 @@
What's new in psycopg 2.2.1
---------------------------
* Bux fixes:
- psycopg now builds again on MS Windows.
What's new in psycopg 2.2.0
---------------------------

View File

@ -16,7 +16,7 @@
# their work without bothering about the module dependencies.
ALLOWED_PSYCOPG_VERSIONS = ('2.2.0',)
ALLOWED_PSYCOPG_VERSIONS = ('2.2.0','2.2.1')
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.2.0'
PSYCOPG_VERSION = '2.2.1'
version_flags = ['dt', 'dec']
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')