Preparing to release cx_Oracle 8.3.

This commit is contained in:
Anthony Tuininga 2021-11-04 13:20:41 -06:00
parent 29ca919445
commit 45118e0c31
4 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# cx_Oracle version 8.3 (Development)
# cx_Oracle version 8.3
cx_Oracle is a Python extension module that enables access to Oracle
Database. It conforms to the [Python database API 2.0

View File

@ -42,7 +42,7 @@ author = 'Oracle'
# The short X.Y version.
version = '8.3'
# The full version, including alpha/beta/rc tags.
release = '8.3.0-dev'
release = '8.3.0'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:

View File

@ -7,13 +7,15 @@ cx_Oracle Release Notes
For any deprecations, see :ref:`Deprecations <deprecations>`.
Version 8.3 (TBD)
-----------------
Version 8.3 (November 2021)
---------------------------
#) Updated embedded ODPI-C to `version 4.3.0
<https://oracle.github.io/odpi/doc/releasenotes.html#
version-4-3-tbd>`__.
version-4-3-november-4-2021>`__.
#) Added official support for Python 3.10.
#) Support for dequeuing messages from Oracle Transactional Event Queue (TEQ)
queues was restored.
#) Corrected calculation of attribute :data:`MessageProperties.msgid`. Note
that the attribute is now also read only.
#) Binary integer variables now explicitly convert values to integers (since

View File

@ -16,7 +16,7 @@ if sys.version_info[:2] < (3, 6):
pkg_resources.require("setuptools>=40.6.0")
# define build constants
BUILD_VERSION = "8.3.0-dev"
BUILD_VERSION = "8.3.0"
# setup extra link and compile args
extra_link_args = []