Update ODPI-C to development version to include patch for issue #459; bump

version to 8.1 for further development.
This commit is contained in:
Anthony Tuininga 2020-07-02 11:21:44 -06:00
parent 10e5c258fe
commit 74a479087f
5 changed files with 17 additions and 5 deletions

View File

@ -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

View File

@ -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:

View File

@ -5,6 +5,18 @@
cx_Oracle Release Notes
=======================
Version 8.1 (TBD)
-----------------
#) Updated embedded ODPI-C to `version 4.1.0
<https://oracle.github.io/odpi/doc/releasenotes.html#
version-4-1-0-tbd>`__.
- up to 40 digits can be represented in an unconstrained Oracle number so
allow for that possibility
(`issue 459 <https://github.com/oracle/python-cx_Oracle/issues/459>`__).
Version 8.0 (June 2020)
-----------------------

2
odpi

@ -1 +1 @@
Subproject commit 9b8206d2d6baf8add270038c6b425c1ef450d309
Subproject commit 102004f908ff3bd5a870ce0551e4cf6e5d79064b

View File

@ -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 = []