Preparing to release cx_Oracle 6.4.1.

This commit is contained in:
Anthony Tuininga 2018-07-09 11:21:02 -06:00
parent e801579d93
commit c832ed10d1
3 changed files with 20 additions and 2 deletions

View File

@ -42,7 +42,7 @@ author = 'Oracle'
# The short X.Y version.
version = '6.4'
# The full version, including alpha/beta/rc tags.
release = '6.4.0'
release = '6.4.1'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:

View File

@ -8,6 +8,24 @@ cx_Oracle Release Notes
.. _releasenotes60:
Version 6.4.1 (July 2018)
-------------------------
#) Update to `ODPI-C 2.4.2
<https://oracle.github.io/odpi/doc/releasenotes.html#
version-2-4-2-july-9-2018>`__.
- Avoid buffer overrun due to improper calculation of length byte when
converting some negative 39 digit numbers from string to the internal
Oracle number format
(`ODPI-C issue 67 <https://github.com/oracle/odpi/issues/67>`__).
#) Prevent error "cx_Oracle.ProgrammingError: positional and named binds
cannot be intermixed" when calling cursor.setinputsizes() without any
parameters and then calling cursor.execute() with named bind parameters
(`issue 199 <https://github.com/oracle/python-cx_Oracle/issues/199>`__).
Version 6.4 (July 2018)
-----------------------

View File

@ -20,7 +20,7 @@ except:
from distutils.extension import Extension
# define build constants
BUILD_VERSION = "6.4"
BUILD_VERSION = "6.4.1"
# setup extra link and compile args
extraLinkArgs = []