Skip to content

Commit 22dc8c1

Browse files
Preparing to release cx_Oracle 6 rc 2.
1 parent 852aed3 commit 22dc8c1

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
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.0rc1'
45+
release = '6.0rc2'
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: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ cx_Oracle Release Notes
44
6.x releases
55
############
66

7+
Version 6.0 rc 2 (July 2017)
8+
----------------------------
9+
10+
#) Update to `ODPI-C rc 2 <https://oracle.github.io/odpi/doc/releasenotes.html
11+
#version-2-0-0-rc-2-july-20-2017>`__.
12+
13+
- Provide improved error message when OCI environment cannot be created,
14+
such as when the oraaccess.xml file cannot be processed properly.
15+
- On Windows, convert system message to Unicode first, then to UTF-8;
16+
otherwise, the error message returned could be in a mix of encodings
17+
(`issue 40 <https://github.com/oracle/python-cx_Oracle/issues/40>`__).
18+
- Corrected support for binding decimal values in object attribute values
19+
and collection element values.
20+
- Corrected support for binding PL/SQL boolean values to PL/SQL
21+
procedures with Oracle client 11.2.
22+
23+
#) Define exception classes on the connection object in addition to at module
24+
scope in order to simplify error handling in multi-connection environments,
25+
as specified in the Python DB API.
26+
#) Ensure the correct encoding is used for setting variable values.
27+
#) Corrected handling of CLOB/NCLOB when using different encodings.
28+
#) Corrected handling of timestamp with time zone attributes on objects.
29+
#) Ensure that the array position passed to var.getvalue() does not exceed the
30+
number of elements allocated in the array.
31+
#) Reworked test suite and samples so that they are independent of each other
32+
and so that the SQL scripts used to create/drop schemas are easily adjusted
33+
to use different schema names, if desired.
34+
#) Updated DB API test suite stub to support Python 3.
35+
#) Added additional test cases and samples.
36+
#) Documentation improvements.
37+
38+
739
Version 6.0 rc 1 (June 2017)
840
----------------------------
941

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.0rc1"
23+
BUILD_VERSION = "6.0rc2"
2424

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

0 commit comments

Comments
 (0)