From ae45152339f0e9b46a93d5aea74f3bc16e775060 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Fri, 16 Jun 2017 16:50:22 -0600 Subject: [PATCH] Preparing to release cx_Oracle 6 rc 1. --- doc/src/conf.py | 2 +- doc/src/releasenotes.rst | 26 ++++++++++++++++++++++++-- setup.py | 2 +- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index 0fa4c6d1..e55bbc4b 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.0b2' +release = '6.0rc1' # 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 f270b99a..4715aa94 100644 --- a/doc/src/releasenotes.rst +++ b/doc/src/releasenotes.rst @@ -4,8 +4,30 @@ cx_Oracle Release Notes 6.x releases ############ -Version 6.0 (TBD) ------------------ +Version 6.0 rc 1 (June 2017) +---------------------------- + +#) Update to `ODPI-C rc 1 `__. +#) The method :meth:`Cursor.setoutputsize` no longer needs to do anything, + since ODPI-C automatically manages buffer sizes of LONG and LONG RAW + columns. +#) Handle case when both precision and scale are zero, as occurs when + retrieving numeric expressions (`issue 34 + `__). +#) OCI requires that both encoding and nencoding have values or that both + encoding and encoding do not have values. These parameters are used in + functions :meth:`cx_Oracle.connect` and :meth:`cx_Oracle.SessionPool`. The + missing value is set to its default value if one of the values is set and + the other is not (`issue 36 + `__). +#) Permit use of both string and unicode for Python 2.7 for creating session + pools and for changing passwords (`issue 23 + `__). +#) Corrected handling of BFILE LOBs. +#) Add script for dropping test schemas. +#) Documentation improvements. + Version 6.0 beta 2 (May 2017) ----------------------------- diff --git a/setup.py b/setup.py index cb3b5016..c84d5a0e 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from distutils.extension import Extension # define build constants -BUILD_VERSION = "6.0b2" +BUILD_VERSION = "6.0rc1" # define the list of files to be included as documentation for Windows dataFiles = None