From 74a479087f41c0daa77089bed6fff2a8a47d10e8 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Thu, 2 Jul 2020 11:21:44 -0600 Subject: [PATCH] Update ODPI-C to development version to include patch for issue #459; bump version to 8.1 for further development. --- README.md | 2 +- doc/src/conf.py | 4 ++-- doc/src/release_notes.rst | 12 ++++++++++++ odpi | 2 +- setup.py | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8f8a74b..3dab9c9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# cx_Oracle version 8.0 +# cx_Oracle version 8.1 (Development) cx_Oracle is a Python extension module that enables access to Oracle Database. It conforms to the [Python database API 2.0 diff --git a/doc/src/conf.py b/doc/src/conf.py index ebdc717..e0e4cbf 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -40,9 +40,9 @@ author = 'Oracle' # other places throughout the built documents. # # The short X.Y version. -version = '8.0' +version = '8.1' # The full version, including alpha/beta/rc tags. -release = '8.0.0' +release = '8.1.0-dev' # 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/release_notes.rst b/doc/src/release_notes.rst index 0eec917..90f091e 100644 --- a/doc/src/release_notes.rst +++ b/doc/src/release_notes.rst @@ -5,6 +5,18 @@ cx_Oracle Release Notes ======================= +Version 8.1 (TBD) +----------------- + +#) Updated embedded ODPI-C to `version 4.1.0 + `__. + + - up to 40 digits can be represented in an unconstrained Oracle number so + allow for that possibility + (`issue 459 `__). + + Version 8.0 (June 2020) ----------------------- diff --git a/odpi b/odpi index 9b8206d..102004f 160000 --- a/odpi +++ b/odpi @@ -1 +1 @@ -Subproject commit 9b8206d2d6baf8add270038c6b425c1ef450d309 +Subproject commit 102004f908ff3bd5a870ce0551e4cf6e5d79064b diff --git a/setup.py b/setup.py index d855654..81cac0b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ except: from distutils.extension import Extension # define build constants -BUILD_VERSION = "8.0.0" +BUILD_VERSION = "8.1.0-dev" # setup extra link and compile args extraLinkArgs = []