Skip to content

Commit 5e73ab0

Browse files
committed
Bump version to 3.1
1 parent 9dade40 commit 5e73ab0

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Change Log
22

3-
## node-oracledb v3.1.0 (DD Mon YYYY)
4-
5-
This release is currently under development.
3+
## node-oracledb v3.1.0 (22 Jan 2019)
64

75
- Support tagging of pooled connections when releasing them to the
86
connection pool. When using Oracle Client libraries 12.2 or later,
@@ -73,6 +71,9 @@ This release is currently under development.
7371
pooled connections to be unnecessarily dropped by
7472
`connection.close()`. (ODPI-C change).
7573

74+
- Fixed a memory leak under certain cirumstances when pooled
75+
connections are released back to the pool. (ODPI-C change)
76+
7677
- Display correct error message for SODA `createIndex()` when no
7778
parameter is passed.
7879

README.md

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

33
The node-oracledb add-on for Node.js powers high performance Oracle
44
Database applications.

doc/api.md

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

33
*Copyright (c) 2015, 2019, 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": "3.1.0-dev",
3+
"version": "3.1.0",
44
"description": "A Node.js module for Oracle Database access",
55
"license": "Apache-2.0",
66
"homepage": "http://oracle.github.io/node-oracledb/",

src/njsOracle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ using namespace v8;
7272
#define NJS_NODE_ORACLEDB_MAJOR 3
7373
#define NJS_NODE_ORACLEDB_MINOR 1
7474
#define NJS_NODE_ORACLEDB_PATCH 0
75-
#define NJS_NODE_ORACLEDB_SUFFIX "-dev"
75+
#define NJS_NODE_ORACLEDB_SUFFIX
7676

7777
// define stringified version and driver name
7878
#define NJS_STR_HELPER(x) #x

0 commit comments

Comments
 (0)