From b2b15d6e3517a31f454078c5393bea0f8229a3ed Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Wed, 30 Aug 2017 12:57:17 -0600 Subject: [PATCH] Preparing to release 6.0.2. --- doc/src/conf.py | 2 +- doc/src/releasenotes.rst | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index 2d25494a..ac98c5aa 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -42,7 +42,7 @@ # The short X.Y version. version = '6.0' # The full version, including alpha/beta/rc tags. -release = '6.0.1' +release = '6.0.2' # 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 2c8d7814..cea79ce6 100644 --- a/doc/src/releasenotes.rst +++ b/doc/src/releasenotes.rst @@ -8,6 +8,31 @@ cx_Oracle Release Notes .. _releasenotes60: +Version 6.0.2 (August 2017) +--------------------------- + +#) Update to `ODPI-C 2.0.2 + `__. + + - Don't prevent connection from being explicitly closed when a fatal error + has taken place (`issue 67 + `__). + - Correct handling of objects when dynamic binding is performed. + - Process deregistration events without an error. + - Eliminate memory leak when creating objects. + +#) Added missing type check to prevent coercion of decimal to float + (`issue 68 `__). +#) On Windows, sizeof(long) = 4, not 8, which meant that integers between 10 + and 18 digits were not converted to Python correctly + (`issue 70 `__). +#) Eliminate memory leak when repeatedly executing the same query. +#) Eliminate segfault when attempting to reuse a REF cursor that has been + closed. +#) Updated documentation. + + Version 6.0.1 (August 2017) ---------------------------