File tree 4 files changed +5
-3
lines changed
4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## node-oracledb v1.13.1 (DD Mon YYYY)
4
+
3
5
## node-oracledb v1.13.0 (15 Mar 2017)
4
6
5
7
- Added support for fetching BLOBs as Buffers, using ` fetchAsBuffer ` and ` fetchInfo ` .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " oracledb" ,
3
- "version" : " 1.13.0 " ,
3
+ "version" : " 1.13.1 " ,
4
4
"description" : " Oracle Database driver by Oracle Corp." ,
5
5
"license" : " Apache-2.0" ,
6
6
"homepage" : " http://www.oracle.com/technetwork/database/database-technologies/scripting-languages/node_js/" ,
Original file line number Diff line number Diff line change 27
27
28
28
#define DPI_MAJOR_VERSION 1
29
29
#define DPI_MINOR_VERSION 13
30
- #define DPI_PATCH_LEVEL 0
30
+ #define DPI_PATCH_LEVEL 1
31
31
32
32
#ifndef DPIEXCEPTION_ORACLE
33
33
# include <dpiException.h>
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ using namespace v8;
70
70
/* Keep the version in sync with package.json */
71
71
#define NJS_NODE_ORACLEDB_MAJOR 1
72
72
#define NJS_NODE_ORACLEDB_MINOR 13
73
- #define NJS_NODE_ORACLEDB_PATCH 0
73
+ #define NJS_NODE_ORACLEDB_PATCH 1
74
74
75
75
/* Used for Oracledb.version */
76
76
#define NJS_NODE_ORACLEDB_VERSION ( (NJS_NODE_ORACLEDB_MAJOR * 10000 ) + \
You can’t perform that action at this time.
0 commit comments