Skip to content

Commit 6721703

Browse files
committed
Bump version
1 parent 69267af commit 6721703

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# node-oracledb version 1.12
1+
# node-oracledb version 1.13
22

33
## <a name="about"></a> About node-oracledb
44

doc/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# node-oracledb 1.12: Documentation for the Oracle Database Node.js Add-on
1+
# node-oracledb 1.13: Documentation for the Oracle Database Node.js Add-on
22

33
*Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.*
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oracledb",
3-
"version": "1.12.3",
3+
"version": "1.13.0",
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# define DPI_ORACLE
2727

2828
#define DPI_MAJOR_VERSION 1
29-
#define DPI_MINOR_VERSION 12
30-
#define DPI_PATCH_LEVEL 3
29+
#define DPI_MINOR_VERSION 13
30+
#define DPI_PATCH_LEVEL 0
3131

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

src/njs/src/njsOracle.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ using namespace v8;
6969

7070
/* Keep the version in sync with package.json */
7171
#define NJS_NODE_ORACLEDB_MAJOR 1
72-
#define NJS_NODE_ORACLEDB_MINOR 12
73-
#define NJS_NODE_ORACLEDB_PATCH 3
72+
#define NJS_NODE_ORACLEDB_MINOR 13
73+
#define NJS_NODE_ORACLEDB_PATCH 0
7474

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

0 commit comments

Comments
 (0)