mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 18:33:44 +03:00
Preparing release 2.0.3.
This commit is contained in:
parent
50e85bba65
commit
14805a5311
|
@ -1,5 +1,7 @@
|
||||||
2006-07-31 Federico Di Gregorio <fog@initd.org>
|
2006-07-31 Federico Di Gregorio <fog@initd.org>
|
||||||
|
|
||||||
|
* Release 2.0.3.
|
||||||
|
|
||||||
* psycopg/cursor_type.c: applied patch from jbellis (#113) to
|
* psycopg/cursor_type.c: applied patch from jbellis (#113) to
|
||||||
allow column selection in .copy_from().
|
allow column selection in .copy_from().
|
||||||
|
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -1,3 +1,8 @@
|
||||||
|
What's new in psycopg 2.0.3
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
* Fixed various buglets and a memory leak (see ChangeLog for details)
|
||||||
|
|
||||||
What's new in psycopg 2.0.2
|
What's new in psycopg 2.0.2
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# See the LICENSE file for details.
|
# See the LICENSE file for details.
|
||||||
|
|
||||||
|
|
||||||
ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2')
|
ALLOWED_PSYCOPG_VERSIONS = ('2.0.1', '2.0.2', '2.0.3')
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -52,7 +52,7 @@ from distutils.command.build_ext import build_ext
|
||||||
from distutils.sysconfig import get_python_inc
|
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.2'
|
PSYCOPG_VERSION = '2.0.3'
|
||||||
version_flags = []
|
version_flags = []
|
||||||
|
|
||||||
# to work around older distutil limitations
|
# to work around older distutil limitations
|
||||||
|
|
Loading…
Reference in New Issue
Block a user