From 55cd513bae0514975e865b816d850390077b23d3 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Mon, 7 May 2018 15:21:59 -0600 Subject: [PATCH] Preparing to release cx_Oracle 6.3.1. --- doc/src/conf.py | 2 +- doc/src/releasenotes.rst | 17 +++++++++++++++++ setup.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index d9a9c7b..dbd022a 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ author = 'Oracle' # The short X.Y version. version = '6.3' # The full version, including alpha/beta/rc tags. -release = '6.3.0' +release = '6.3.1' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/doc/src/releasenotes.rst b/doc/src/releasenotes.rst index 0f30d1d..730bba9 100644 --- a/doc/src/releasenotes.rst +++ b/doc/src/releasenotes.rst @@ -8,6 +8,23 @@ cx_Oracle Release Notes .. _releasenotes60: +Version 6.3.1 (May 2018) +------------------------ + +#) Update to `ODPI-C 2.3.2 + `__. + + - Ensure that a call to unregister a subscription only occurs if the + subscription is still registered. + - Ensure that before a statement is executed any buffers used for DML + returning statments are reset. + +#) Ensure that behavior with cx_Oracle.__future__.dml_ret_array_val not + set or False is the same as the behavior in cx_Oracle 6.2 + (`issue 176 `__). + + Version 6.3 (April 2018) ------------------------ diff --git a/setup.py b/setup.py index e8335aa..9796369 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ except: from distutils.extension import Extension # define build constants -BUILD_VERSION = "6.3" +BUILD_VERSION = "6.3.1" # setup extra link and compile args extraLinkArgs = []