Skip to content

Commit 8e8c933

Browse files
committed
Version 1.0.23: Add node.js v10 support
Change-Id: I98489c9b962e25bcc5ec677e860edcadbca5746e
1 parent 7c43ba0 commit 8e8c933

18 files changed

+47
-17
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Versions supported:
2121
<tr><td>1.0.9</td><td>6.x, 7.x</td></tr>
2222
<tr><td>1.0.19</td><td>8.x</td></tr>
2323
<tr><td>1.0.22</td><td>9.x</td></tr>
24+
<tr><td>1.0.23</td><td>10.x</td></tr>
2425
</table>
2526

2627
## Getting Started

build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
var db = null;
55
var exec = require('child_process').exec;

examples/app1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
// This sample code is provided AS IS, without warranty or liability of any kind.
55
//

examples/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# ***************************************************************************
2-
# Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
# Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
# ***************************************************************************
44
These examples are intended to be used with the SQL Anywhere node.js driver.

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
var db = null;
55
var driver_file = "sqlanywhere"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "SQL ANYWHERE",
33
"name": "sqlanywhere",
44
"description": "SQL Anywhere JavaScript Driver.",
5-
"version": "1.0.22",
5+
"version": "1.0.23",
66
"repository": {
77
"url": "https://github.com/sqlanywhere/node-sqlanywhere"
88
},

src/h/connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
using namespace v8;
55
using namespace node;

src/h/errors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
#define JS_ERR_INVALID_OBJECT -2001
55
#define JS_ERR_INVALID_ARGUMENTS -2002

src/h/nodever_cover.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
#include <node_version.h>
55

src/h/sacapi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ***************************************************************************
2-
// Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
2+
// Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
33
// ***************************************************************************
44
//
55
// Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)