Skip to content

Commit

Permalink
Bump version to 1.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbj committed Dec 20, 2016
1 parent 72b9484 commit 0f31ccd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## node-oracledb v1.12.2 Development (DD Mon YYYY)

## node-oracledb v1.12.1 Development (16 Dec 2016)

- Added support for fetching CLOBs as Strings, using `fetchAsString` and `fetchInfo`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oracledb",
"version": "1.12.1",
"version": "1.12.2",
"description": "Oracle Database driver by Oracle Corp.",
"license": "Apache-2.0",
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/",
Expand Down
2 changes: 1 addition & 1 deletion src/dpi/include/dpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#define DPI_MAJOR_VERSION 1
#define DPI_MINOR_VERSION 12
#define DPI_PATCH_LEVEL 1
#define DPI_PATCH_LEVEL 2

#ifndef DPIEXCEPTION_ORACLE
# include <dpiException.h>
Expand Down
2 changes: 1 addition & 1 deletion src/njs/src/njsOracle.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ using namespace v8;
/* Keep the version in sync with package.json */
#define NJS_NODE_ORACLEDB_MAJOR 1
#define NJS_NODE_ORACLEDB_MINOR 12
#define NJS_NODE_ORACLEDB_PATCH 1
#define NJS_NODE_ORACLEDB_PATCH 2

/* Used for Oracledb.version */
#define NJS_NODE_ORACLEDB_VERSION ( (NJS_NODE_ORACLEDB_MAJOR * 10000) + \
Expand Down

0 comments on commit 0f31ccd

Please sign in to comment.