Bump version

This commit is contained in:
Christopher Jones 2017-06-23 08:31:35 +10:00
parent fb89b289b5
commit 1234216407
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,13 @@
# Change Log # Change Log
## node-oracledb v2.0.14 Development (DD Mon YYYY)
Note: 2.0.14-Development is a work in progress
- Fixed crash with LOB out binds in DML RETURNING statements when the
number of rows returned exceeds the number of rows originally
allocated internally.
## node-oracledb v2.0.13 Development (19 Jun 2017) ## node-oracledb v2.0.13 Development (19 Jun 2017)
- Node-oracledb now uses the [ODPI-C](https://github.com/oracle/odpi) - Node-oracledb now uses the [ODPI-C](https://github.com/oracle/odpi)

View File

@ -1,6 +1,6 @@
{ {
"name": "oracledb", "name": "oracledb",
"version": "2.0.13", "version": "2.0.14",
"description": "Oracle Database driver by Oracle Corp.", "description": "Oracle Database driver by Oracle Corp.",
"license": "Apache-2.0", "license": "Apache-2.0",
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/", "homepage": "http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/",

View File

@ -69,7 +69,7 @@ using namespace v8;
// Keep the version in sync with package.json // Keep the version in sync with package.json
#define NJS_NODE_ORACLEDB_MAJOR 2 #define NJS_NODE_ORACLEDB_MAJOR 2
#define NJS_NODE_ORACLEDB_MINOR 0 #define NJS_NODE_ORACLEDB_MINOR 0
#define NJS_NODE_ORACLEDB_PATCH 13 #define NJS_NODE_ORACLEDB_PATCH 14
// define stringified version and driver name // define stringified version and driver name
#define NJS_STR_HELPER(x) #x #define NJS_STR_HELPER(x) #x