Skip to content

Commit

Permalink
Preparing to release cx_Oracle 6 rc 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-tuininga committed Jun 16, 2017
1 parent 3987435 commit ae45152
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
26 changes: 24 additions & 2 deletions doc/src/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-----------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae45152

Please sign in to comment.