Skip to content

Commit 8d719c3

Browse files
Preparing to release cx_Oracle 8.0.0.
1 parent 079927c commit 8d719c3

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cx_Oracle version 8.0 (Development)
1+
# cx_Oracle version 8.0
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

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.0'
4444
# The full version, including alpha/beta/rc tags.
45-
release = '8.0.0-dev'
45+
release = '8.0.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

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
cx_Oracle Release Notes
66
=======================
77

8-
Version 8.0 (TBD)
9-
-----------------
8+
Version 8.0 (June 2020)
9+
-----------------------
1010

11-
#) Dropped support for Python 2.7.
11+
#) Dropped support for Python 2. For those still requiring Python 2, see
12+
:ref:`python2`.
1213
#) Updated embedded ODPI-C to `version 4.0
13-
<https://oracle.github.io/odpi/doc/releasenotes.html#version-4-0-tbd>`__.
14+
<https://oracle.github.io/odpi/doc/releasenotes.html#
15+
version-4-0-june-25-2020>`__.
1416
#) Reworked type management to clarify and simplify code
1517

1618
- Added :ref:`constants <dbtypes>` for all database types. The database
@@ -46,6 +48,8 @@ Version 8.0 (TBD)
4648

4749
#) Added function :meth:`cx_Oracle.init_oracle_client()` in order to enable
4850
programmatic control of the initialization of the Oracle Client library.
51+
#) The default encoding for all character data is now UTF-8 and any character
52+
set specified in the environment variable ``NLS_LANG`` is ignored.
4953
#) Added functions :meth:`SodaCollection.save()`,
5054
:meth:`SodaCollection.saveAndGet()` and :meth:`SodaCollection.truncate()`
5155
available in Oracle Client 20 and higher.

setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from distutils.extension import Extension
2525

2626
# define build constants
27-
BUILD_VERSION = "8.0.0-dev"
27+
BUILD_VERSION = "8.0.0"
2828

2929
# setup extra link and compile args
3030
extraLinkArgs = []
@@ -64,9 +64,7 @@ def run(self):
6464
"Natural Language :: English",
6565
"Operating System :: OS Independent",
6666
"Programming Language :: C",
67-
"Programming Language :: Python",
68-
"Programming Language :: Python :: 2",
69-
"Programming Language :: Python :: 3",
67+
"Programming Language :: Python :: 3 :: Only",
7068
"Topic :: Database"
7169
]
7270

0 commit comments

Comments
 (0)