Skip to content

Commit 46a3d70

Browse files
Preparing to release cx_Oracle 8.2.
1 parent cd21e92 commit 46a3d70

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cx_Oracle version 8.2 (Development)
1+
# cx_Oracle version 8.2
22

33
cx_Oracle is a Python extension module that enables access to Oracle
44
Database. It conforms to the [Python database API 2.0
@@ -7,7 +7,7 @@ of exclusions. See the
77
[homepage](https://oracle.github.io/python-cx_Oracle/index.html) for a
88
feature list.
99

10-
cx_Oracle 8 has been tested with Python versions 3.6 through 3.9. You can use
10+
cx_Oracle 8.2 has been tested with Python versions 3.6 through 3.9. You can use
1111
cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle's
1212
standard client-server version interoperability allows connection to both older
1313
and newer databases. For example Oracle 19c client libraries can connect to

doc/src/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# The short X.Y version.
4343
version = '8.2'
4444
# The full version, including alpha/beta/rc tags.
45-
release = '8.2.0-dev'
45+
release = '8.2.0'
4646

4747
# There are two options for replacing |today|: either, you set today to some
4848
# non-false value, then it is used:

doc/src/release_notes.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ cx_Oracle Release Notes
77

88
For any deprecations, see :ref:`Deprecations <deprecations>`.
99

10-
Version 8.2 (TBD)
11-
-----------------
10+
Version 8.2 (May 2021)
11+
----------------------
1212

1313
#) Updated embedded ODPI-C to `version 4.2.0
1414
<https://oracle.github.io/odpi/doc/releasenotes.html#
15-
version-4-2-tbd>`__.
15+
version-4-2-may-18-2021>`__.
1616
#) Threaded mode is now always enabled when creating connection pools with
1717
:meth:`cx_Oracle.SessionPool()`. Any `threaded` parameter value is ignored.
1818
#) Added :meth:`SessionPool.reconfigure()` to support pool reconfiguration.
@@ -24,7 +24,7 @@ Version 8.2 (TBD)
2424
pool. In addition, the attribute
2525
:data:`SessionPool.max_sessions_per_shard` was added in order to permit
2626
making adjustments after the pool has been created. They are usable when
27-
using Oracle Client version 18.4 and higher.
27+
using Oracle Client version 18.3 and higher.
2828
#) Added parameter `stmtcachesize` to :meth:`cx_Oracle.connect()` and
2929
:meth:`cx_Oracle.SessionPool()` in order to permit specifying the size of
3030
the statement cache during the creation of pools and standalone
@@ -41,7 +41,8 @@ Version 8.2 (TBD)
4141
significantly improves the performance of methods
4242
:meth:`SodaDatabase.createCollection()` (when not specifying a value for
4343
the metadata parameter) and :meth:`SodaDatabase.openCollection()`. Caching
44-
is available when using Oracle Client version 19.11 and higher.
44+
is available when using Oracle Client version 21.3 and higher (or Oracle
45+
Client 19 from 19.11).
4546
#) Added support for supplying hints to SODA operations. A new non-terminal
4647
method :meth:`~SodaOperation.hint()` was added and a `hint` parameter was
4748
added to the methods :meth:`SodaCollection.insertOneAndGet()`,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
pkg_resources.require("setuptools>=40.6.0")
1717

1818
# define build constants
19-
BUILD_VERSION = "8.2.0-dev"
19+
BUILD_VERSION = "8.2.0"
2020

2121
# setup extra link and compile args
2222
extra_link_args = []

0 commit comments

Comments
 (0)