Preparing to release cx_Oracle 7.1.1.
This commit is contained in:
parent
e3d3764f5f
commit
9023609232
|
@ -42,7 +42,7 @@ author = 'Oracle'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '7.1'
|
version = '7.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '7.1.0'
|
release = '7.1.1'
|
||||||
|
|
||||||
# There are two options for replacing |today|: either, you set today to some
|
# There are two options for replacing |today|: either, you set today to some
|
||||||
# non-false value, then it is used:
|
# non-false value, then it is used:
|
||||||
|
|
|
@ -8,6 +8,18 @@ cx_Oracle Release Notes
|
||||||
|
|
||||||
.. _releasenotes70:
|
.. _releasenotes70:
|
||||||
|
|
||||||
|
Version 7.1.1 (February 2019)
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
#) Updated to `ODPI-C 3.1.2
|
||||||
|
<https://oracle.github.io/odpi/doc/releasenotes.html#
|
||||||
|
version-3-1-2-february-19-2019>`__.
|
||||||
|
#) Corrected code for freeing CQN message objects when multiple queries are
|
||||||
|
registered
|
||||||
|
(`ODPI-C issue 96 <https://github.com/oracle/odpi/issues/96>`__).
|
||||||
|
#) Improved error messages and installation documentation.
|
||||||
|
|
||||||
|
|
||||||
Version 7.1 (February 2019)
|
Version 7.1 (February 2019)
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -20,7 +20,7 @@ except:
|
||||||
from distutils.extension import Extension
|
from distutils.extension import Extension
|
||||||
|
|
||||||
# define build constants
|
# define build constants
|
||||||
BUILD_VERSION = "7.1.0"
|
BUILD_VERSION = "7.1.1"
|
||||||
|
|
||||||
# setup extra link and compile args
|
# setup extra link and compile args
|
||||||
extraLinkArgs = []
|
extraLinkArgs = []
|
||||||
|
|
Loading…
Reference in New Issue