Skip to content

Commit

Permalink
Preparing to release ODPI-C 2.0.0-rc.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-tuininga committed Jul 20, 2017
1 parent 6c9bdf9 commit 05b3073
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ODPI-C version 2.0.0-rc.1
# ODPI-C version 2.0.0-rc.2

Oracle Database Programming Interface for C (ODPI-C) is an open source
library of C code that simplifies the use of common
Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
version = '2.0'

# the full version, including alpha/beta/rc tags
release = '2.0.0-rc.1'
release = '2.0.0-rc.2'

# the theme to use for HTML pages
html_theme = 'oracle'
Expand Down
29 changes: 29 additions & 0 deletions doc/src/releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
ODPI-C Release notes
====================

Version 2.0.0-rc.2 (July 20, 2017)
----------------------------------

#) Improved error messages when initial OCI environment cannot be created.
#) On Windows, convert system message to Unicode first, then to UTF-8;
otherwise, the error message returned could be in a mix of encodings.
#) Added support for converting from text to number in object attributes and
collection element values.
#) Added checks on all pointers to ensure they are not NULL.
#) Added checks on all pointer/length combinations to ensure that they are not
NULL and non-zero at the same time.
#) Ensure that the thread specific errors are freed properly.
#) Corrected handling of connections using DRCP.
#) Corrected issue where error getting a pooled connection was masked by
error "DPI-1002: invalid OCI handle".
#) PL/SQL boolean values are not supported until Oracle Client 12.1 so raise
an unsupported error if an attempt is made to use them in Oracle Client
11.2.
#) Allow the parameter numQueryColumns to be null in :func:`dpiStmt_execute()`
as a convenience to those who do not require that information.
#) Added url fragment and whether a 32-bit or 64-bit library is expected to
error "DPI-1047: Oracle Client library cannot be loaded" in order to
improve the help provided.
#) Added prefix "ODPI: " to start of all debug messages to aid in
differentiating between them and other messages in log files.
#) Added additional test cases.
#) Documentation improvements.


Version 2.0.0-rc.1 (June 16, 2017)
----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion include/dpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#define DPI_MAJOR_VERSION 2
#define DPI_MINOR_VERSION 0
#define DPI_PATCH_LEVEL 0
#define DPI_VERSION_SUFFIX "-rc.1"
#define DPI_VERSION_SUFFIX "-rc.2"

#define DPI_STR_HELPER(x) #x
#define DPI_STR(x) DPI_STR_HELPER(x)
Expand Down

0 comments on commit 05b3073

Please sign in to comment.