From 22dc8c1daab44eeaf6a33db84ecf285521bcd9eb Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Mon, 24 Jul 2017 10:35:41 -0600 Subject: [PATCH] Preparing to release cx_Oracle 6 rc 2. --- doc/src/conf.py | 2 +- doc/src/releasenotes.rst | 32 ++++++++++++++++++++++++++++++++ setup.py | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index e55bbc4b..bdcc1f2d 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ # The short X.Y version. version = '6.0' # The full version, including alpha/beta/rc tags. -release = '6.0rc1' +release = '6.0rc2' # 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 4715aa94..08628231 100644 --- a/doc/src/releasenotes.rst +++ b/doc/src/releasenotes.rst @@ -4,6 +4,38 @@ cx_Oracle Release Notes 6.x releases ############ +Version 6.0 rc 2 (July 2017) +---------------------------- + +#) Update to `ODPI-C rc 2 `__. + + - Provide improved error message when OCI environment cannot be created, + such as when the oraaccess.xml file cannot be processed properly. + - On Windows, convert system message to Unicode first, then to UTF-8; + otherwise, the error message returned could be in a mix of encodings + (`issue 40 `__). + - Corrected support for binding decimal values in object attribute values + and collection element values. + - Corrected support for binding PL/SQL boolean values to PL/SQL + procedures with Oracle client 11.2. + +#) Define exception classes on the connection object in addition to at module + scope in order to simplify error handling in multi-connection environments, + as specified in the Python DB API. +#) Ensure the correct encoding is used for setting variable values. +#) Corrected handling of CLOB/NCLOB when using different encodings. +#) Corrected handling of timestamp with time zone attributes on objects. +#) Ensure that the array position passed to var.getvalue() does not exceed the + number of elements allocated in the array. +#) Reworked test suite and samples so that they are independent of each other + and so that the SQL scripts used to create/drop schemas are easily adjusted + to use different schema names, if desired. +#) Updated DB API test suite stub to support Python 3. +#) Added additional test cases and samples. +#) Documentation improvements. + + Version 6.0 rc 1 (June 2017) ---------------------------- diff --git a/setup.py b/setup.py index c84d5a0e..3f65dbe0 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from distutils.extension import Extension # define build constants -BUILD_VERSION = "6.0rc1" +BUILD_VERSION = "6.0rc2" # define the list of files to be included as documentation for Windows dataFiles = None