Skip to content

Commit 7c1a54e

Browse files
committed
Bump version to 1.13.1
1 parent 7929bb3 commit 7c1a54e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Change Log
22

3+
## node-oracledb v1.13.1 (DD Mon YYYY)
4+
35
## node-oracledb v1.13.0 (15 Mar 2017)
46

57
- Added support for fetching BLOBs as Buffers, using `fetchAsBuffer` and `fetchInfo`.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oracledb",
3-
"version": "1.13.0",
3+
"version": "1.13.1",
44
"description": "Oracle Database driver by Oracle Corp.",
55
"license": "Apache-2.0",
66
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/",

src/dpi/include/dpi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#define DPI_MAJOR_VERSION 1
2929
#define DPI_MINOR_VERSION 13
30-
#define DPI_PATCH_LEVEL 0
30+
#define DPI_PATCH_LEVEL 1
3131

3232
#ifndef DPIEXCEPTION_ORACLE
3333
# include <dpiException.h>

src/njs/src/njsOracle.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ using namespace v8;
7070
/* Keep the version in sync with package.json */
7171
#define NJS_NODE_ORACLEDB_MAJOR 1
7272
#define NJS_NODE_ORACLEDB_MINOR 13
73-
#define NJS_NODE_ORACLEDB_PATCH 0
73+
#define NJS_NODE_ORACLEDB_PATCH 1
7474

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

0 commit comments

Comments
 (0)