diff --git a/doc/src/conf.py b/doc/src/conf.py index 0fa4c6d..e55bbc4 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ author = 'Oracle' # 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 f270b99..4715aa9 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 cb3b501..c84d5a0 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ except: 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