From 45118e0c31397c7b475c22aa3156f361f8608419 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Thu, 4 Nov 2021 13:20:41 -0600 Subject: [PATCH] Preparing to release cx_Oracle 8.3. --- README.md | 2 +- doc/src/conf.py | 2 +- doc/src/release_notes.rst | 8 +++++--- setup.py | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f34f4fb..346711a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/doc/src/conf.py b/doc/src/conf.py index ebd07c8..d4ef72c 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -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: diff --git a/doc/src/release_notes.rst b/doc/src/release_notes.rst index 467e186..25e335a 100644 --- a/doc/src/release_notes.rst +++ b/doc/src/release_notes.rst @@ -7,13 +7,15 @@ cx_Oracle Release Notes For any deprecations, see :ref:`Deprecations `. -Version 8.3 (TBD) ------------------ +Version 8.3 (November 2021) +--------------------------- #) Updated embedded ODPI-C to `version 4.3.0 `__. + 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 diff --git a/setup.py b/setup.py index d791ee7..016706f 100644 --- a/setup.py +++ b/setup.py @@ -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 = []