Bump version in preparation for new changes being made.

This commit is contained in:
Anthony Tuininga 2021-05-21 21:36:30 -06:00
parent 94e9489e25
commit 31d94e7bf1
4 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# cx_Oracle version 8.2 # cx_Oracle version 8.3 (Development)
cx_Oracle is a Python extension module that enables access to Oracle cx_Oracle is a Python extension module that enables access to Oracle
Database. It conforms to the [Python database API 2.0 Database. It conforms to the [Python database API 2.0
@ -7,7 +7,7 @@ of exclusions. See the
[homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a [homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a
feature list. feature list.
cx_Oracle 8.2 has been tested with Python versions 3.6 through 3.9. You can use cx_Oracle 8.3 has been tested with Python versions 3.6 through 3.9. You can use
cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle's cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle's
standard client-server version interoperability allows connection to both older standard client-server version interoperability allows connection to both older
and newer databases. For example Oracle 19c client libraries can connect to and newer databases. For example Oracle 19c client libraries can connect to

View File

@ -40,9 +40,9 @@ author = 'Oracle'
# other places throughout the built documents. # other places throughout the built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '8.2' version = '8.3'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '8.2.0' release = '8.3.0-dev'
# 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:

View File

@ -7,6 +7,10 @@ cx_Oracle Release Notes
For any deprecations, see :ref:`Deprecations <deprecations>`. For any deprecations, see :ref:`Deprecations <deprecations>`.
Version 8.3 (TBD)
-----------------
Version 8.2 (May 2021) Version 8.2 (May 2021)
---------------------- ----------------------

View File

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