Skip to content

Commit 84ce09e

Browse files
committed
Bump version to 0.5.0
1 parent d6dc629 commit 84ce09e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# node-oracledb version 0.4
1+
# node-oracledb version 0.5
22

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

55
The Oracle Database Node.js driver powers high performance
66
Node.js applications.
77

8-
Node-oracledb 0.4 supports basic and advanced Oracle features, including:
8+
Node-oracledb 0.5 supports basic and advanced Oracle features, including:
99

1010
- SQL and PL/SQL Execution
1111
- Query results as JavaScript objects or array
@@ -23,7 +23,7 @@ Node-oracledb 0.4 supports basic and advanced Oracle features, including:
2323
- [Runtime Load Balancing](http://docs.oracle.com/database/121/ADFNS/adfns_perf_scale.htm#ADFNS515) (RLB)
2424
- [Transparent Application Failover](http://docs.oracle.com/database/121/ADFNS/adfns_avail.htm#ADFNS534) (TAF)
2525

26-
Node-oracledb 0.4 is a preview release. We are actively working on
26+
Node-oracledb 0.5 is a preview release. We are actively working on
2727
adding features including LOB support and batch fetching / streaming
2828
of large query result sets.
2929

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" : "0.4.2",
3+
"version" : "0.5.0",
44
"description" : "Oracle Database driver by Oracle Corp.",
55
"license" : "Apache 2.0",
66
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/node_js/index.html",

src/njs/src/njsOracle.h

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

4343
/*0.4.1. Keep the version in sync with package.json */
4444
#define NJS_NODE_ORACLEDB_MAJOR 0
45-
#define NJS_NODE_ORACLEDB_MINOR 4
46-
#define NJS_NODE_ORACLEDB_PATCH 2
45+
#define NJS_NODE_ORACLEDB_MINOR 5
46+
#define NJS_NODE_ORACLEDB_PATCH 0
4747

4848
/* Formula: 10000 x majorversion + 100 * minorversion + patchrelease number */
4949
#define NJS_NODE_ORACLEDB_VERSION ( (NJS_NODE_ORACLEDB_MAJOR * 10000) + \

0 commit comments

Comments
 (0)