Skip to content

Commit ae45152

Browse files
Preparing to release cx_Oracle 6 rc 1.
1 parent 3987435 commit ae45152

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

doc/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# The short X.Y version.
4343
version = '6.0'
4444
# The full version, including alpha/beta/rc tags.
45-
release = '6.0b2'
45+
release = '6.0rc1'
4646

4747
# There are two options for replacing |today|: either, you set today to some
4848
# non-false value, then it is used:

doc/src/releasenotes.rst

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,30 @@ cx_Oracle Release Notes
44
6.x releases
55
############
66

7-
Version 6.0 (TBD)
8-
-----------------
7+
Version 6.0 rc 1 (June 2017)
8+
----------------------------
9+
10+
#) Update to `ODPI-C rc 1 <https://oracle.github.io/odpi/doc/releasenotes.html
11+
#version-2-0-0-rc-1-june-16-2017>`__.
12+
#) The method :meth:`Cursor.setoutputsize` no longer needs to do anything,
13+
since ODPI-C automatically manages buffer sizes of LONG and LONG RAW
14+
columns.
15+
#) Handle case when both precision and scale are zero, as occurs when
16+
retrieving numeric expressions (`issue 34
17+
<https://github.com/oracle/python-cx_Oracle/issues/34>`__).
18+
#) OCI requires that both encoding and nencoding have values or that both
19+
encoding and encoding do not have values. These parameters are used in
20+
functions :meth:`cx_Oracle.connect` and :meth:`cx_Oracle.SessionPool`. The
21+
missing value is set to its default value if one of the values is set and
22+
the other is not (`issue 36
23+
<https://github.com/oracle/python-cx_Oracle/issues/36>`__).
24+
#) Permit use of both string and unicode for Python 2.7 for creating session
25+
pools and for changing passwords (`issue 23
26+
<https://github.com/oracle/python-cx_Oracle/issues/23>`__).
27+
#) Corrected handling of BFILE LOBs.
28+
#) Add script for dropping test schemas.
29+
#) Documentation improvements.
30+
931

1032
Version 6.0 beta 2 (May 2017)
1133
-----------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from distutils.extension import Extension
2121

2222
# define build constants
23-
BUILD_VERSION = "6.0b2"
23+
BUILD_VERSION = "6.0rc1"
2424

2525
# define the list of files to be included as documentation for Windows
2626
dataFiles = None

0 commit comments

Comments
 (0)