Skip to content

Commit ca98a66

Browse files
committed
Bump version to 4.2.0 and prepare for release
1 parent 17d539f commit ca98a66

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

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

3-
## node-oracledb v4.2.0 (DD MON YYYY)
3+
## node-oracledb v4.2.0 (24 Jan 2020)
44

55
- Added support for binding using the node-oracledb [Database Type
66
Constants](https://oracle.github.io/node-oracledb/doc/api.html#oracledbconstantsdbtype)
@@ -33,7 +33,7 @@
3333
- Avoid intermediate conversion from the database national character set to the
3434
database character set when querying NCLOB columns as String.
3535

36-
- Fixed various execution failures with Node.js 13.2 due to Node.js NULL pointer behavior change ([ODPI-C
36+
- Fixed various execution failures with Node.js 13.2 due to a Node.js NULL pointer behavior change ([ODPI-C
3737
change](https://github.com/oracle/odpi/commit/7693865bb6a98568546aa319cc0fdb9e208cf9d4)).
3838

3939
- Fixed connection pooling so sharded `pool.getConnection()` requests respect

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ have been made by the community.
4343

4444
## <a name="license"></a> License
4545

46-
Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
46+
Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
4747

4848
You may not use the identified files except in compliance with the Apache
4949
License, Version 2.0 (the "License.")

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": "4.2.0-dev",
3+
"version": "4.2.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/njsModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define NJS_NODE_ORACLEDB_MAJOR 4
4343
#define NJS_NODE_ORACLEDB_MINOR 2
4444
#define NJS_NODE_ORACLEDB_PATCH 0
45-
#define NJS_NODE_ORACLEDB_SUFFIX "-dev"
45+
#define NJS_NODE_ORACLEDB_SUFFIX ""
4646

4747
// define stringified version and driver name
4848
#define NJS_STR_HELPER(x) #x

0 commit comments

Comments
 (0)