Preparing to release cx_Oracle 6 rc 1.

This commit is contained in:
Anthony Tuininga 2017-06-16 16:50:22 -06:00
parent 398743569f
commit ae45152339
3 changed files with 26 additions and 4 deletions

View File

@ -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:

View File

@ -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 <https://oracle.github.io/odpi/doc/releasenotes.html
#version-2-0-0-rc-1-june-16-2017>`__.
#) 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
<https://github.com/oracle/python-cx_Oracle/issues/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
<https://github.com/oracle/python-cx_Oracle/issues/36>`__).
#) Permit use of both string and unicode for Python 2.7 for creating session
pools and for changing passwords (`issue 23
<https://github.com/oracle/python-cx_Oracle/issues/23>`__).
#) Corrected handling of BFILE LOBs.
#) Add script for dropping test schemas.
#) Documentation improvements.
Version 6.0 beta 2 (May 2017)
-----------------------------

View File

@ -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