Bump version to 0.5.0

This commit is contained in:
Christopher Jones 2015-05-04 10:58:57 -07:00
parent d6dc629c85
commit 84ce09ef68
3 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
# node-oracledb version 0.4
# node-oracledb version 0.5
## <a name="about"></a> 1. About node-oracledb
The Oracle Database Node.js driver powers high performance
Node.js applications.
Node-oracledb 0.4 supports basic and advanced Oracle features, including:
Node-oracledb 0.5 supports basic and advanced Oracle features, including:
- SQL and PL/SQL Execution
- Query results as JavaScript objects or array
@ -23,7 +23,7 @@ Node-oracledb 0.4 supports basic and advanced Oracle features, including:
- [Runtime Load Balancing](http://docs.oracle.com/database/121/ADFNS/adfns_perf_scale.htm#ADFNS515) (RLB)
- [Transparent Application Failover](http://docs.oracle.com/database/121/ADFNS/adfns_avail.htm#ADFNS534) (TAF)
Node-oracledb 0.4 is a preview release. We are actively working on
Node-oracledb 0.5 is a preview release. We are actively working on
adding features including LOB support and batch fetching / streaming
of large query result sets.

View File

@ -1,6 +1,6 @@
{
"name" : "oracledb",
"version" : "0.4.2",
"version" : "0.5.0",
"description" : "Oracle Database driver by Oracle Corp.",
"license" : "Apache 2.0",
"homepage": "http://www.oracle.com/technetwork/database/database-technologies/node_js/index.html",

View File

@ -42,8 +42,8 @@ using namespace v8;
/*0.4.1. Keep the version in sync with package.json */
#define NJS_NODE_ORACLEDB_MAJOR 0
#define NJS_NODE_ORACLEDB_MINOR 4
#define NJS_NODE_ORACLEDB_PATCH 2
#define NJS_NODE_ORACLEDB_MINOR 5
#define NJS_NODE_ORACLEDB_PATCH 0
/* Formula: 10000 x majorversion + 100 * minorversion + patchrelease number */
#define NJS_NODE_ORACLEDB_VERSION ( (NJS_NODE_ORACLEDB_MAJOR * 10000) + \