Preparing to release cx_Oracle 7.2.3.

This commit is contained in:
Anthony Tuininga 2019-10-01 11:13:06 -06:00
parent 81bb94048d
commit a06497002b
4 changed files with 18 additions and 3 deletions

View File

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

View File

@ -5,6 +5,21 @@
cx_Oracle Release Notes
=======================
Version 7.2.3 (October 2019)
----------------------------
#) Updated embedded ODPI-C to `version 3.2.2
<https://oracle.github.io/odpi/doc/releasenotes.html#
version-3-2-2-october-1-2019>`__.
#) Restored support for setting numeric bind variables with boolean values.
#) Ensured that sharding keys are dedicated to the connection that is acquired
using them in order to avoid possible hangs, crashes or unusual errors.
#) Corrected support for PLS_INTEGER and BINARY_INTEGER types when used in
PL/SQL records
(`ODPI-C issue 112 <https://github.com/oracle/odpi/issues/112>`__).
#) Improved documentation.
Version 7.2.2 (August 2019)
---------------------------

2
odpi

@ -1 +1 @@
Subproject commit da14bf69f2b10e050d7529a73a687df4f6c3bea6
Subproject commit f355af1591ee41799af5ed24f5cc26e4528463f8

View File

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