@@ -150,8 +150,8 @@ version 2.0.
150150 - Install a C Compiler with support for C++ 11 (such as Xcode,
151151 GCC 4.8, Visual Studio 2015, or similar)
152152
153- - Run `npm install oracle/node-oracledb.git#v3.1.0 `, or add
154- `oracle/node-oracledb.git#v3.1.0 ` to your `package.json`
153+ - Run `npm install oracle/node-oracledb.git#v3.1.1 `, or add
154+ `oracle/node-oracledb.git#v3.1.1 ` to your `package.json`
155155 dependencies. Substitute your desired [GitHub tag][40].
156156
157157- Add Oracle 18, 12, or 11.2 client libraries to your operating
@@ -1030,19 +1030,19 @@ export CC=gcc
10301030```
10311031
10321032Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1033- example ` v3.1.0 ` , and use the ` npm ` package manager (which is
1033+ example ` v3.1.1 ` , and use the ` npm ` package manager (which is
10341034included in Node.js) to install it.
10351035
10361036If you have the ` git ` utility, you can install with:
10371037
10381038```
1039- npm install oracle/node-oracledb.git#v3.1.0
1039+ npm install oracle/node-oracledb.git#v3.1.1
10401040```
10411041
10421042Otherwise install using:
10431043
10441044```
1045- npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0 /oracledb-src-3.1.0 .tgz
1045+ npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1 /oracledb-src-3.1.1 .tgz
10461046```
10471047
10481048#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1150,19 +1150,19 @@ export MAKE=gmake
11501150```
11511151
11521152Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1153- example ` v3.1.0 ` , and use the ` npm ` package manager (which is
1153+ example ` v3.1.1 ` , and use the ` npm ` package manager (which is
11541154included in Node.js) to install it.
11551155
11561156If you have the ` git ` utility, you can install with:
11571157
11581158```
1159- npm install oracle/node-oracledb.git#v3.1.0
1159+ npm install oracle/node-oracledb.git#v3.1.1
11601160```
11611161
11621162Otherwise install using:
11631163
11641164```
1165- npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0 /oracledb-src-3.1.0 .tgz
1165+ npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1 /oracledb-src-3.1.1 .tgz
11661166```
11671167
11681168#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1269,12 +1269,12 @@ The `git` utility is required for this method.
12691269
12701270Build node-oracledb from source code by changing the package specifier
12711271so that ` npm ` downloads from GitHub instead of from npmjs.com. For
1272- example, to install the code from the GitHub tag 'v3.1.0 ', add
1273- ` oracle/node-oracledb#v3.1.0 ` to your ` package.json ` dependencies, or
1272+ example, to install the code from the GitHub tag 'v3.1.1 ', add
1273+ ` oracle/node-oracledb#v3.1.1 ` to your ` package.json ` dependencies, or
12741274use the command:
12751275
12761276```
1277- npm install oracle/node-oracledb#v3.1.0
1277+ npm install oracle/node-oracledb#v3.1.1
12781278```
12791279
12801280This will download, compile and install node-oracledb.
@@ -1288,7 +1288,7 @@ Users without `git`, or with older versions of `npm` such as included in
12881288Node.js 6, may alternatively need to use pre-bundled source code:
12891289
12901290```
1291- npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.0 /oracledb-src-3.1.0 .tgz
1291+ npm install https://github.com/oracle/node-oracledb/releases/download/v3.1.1 /oracledb-src-3.1.1 .tgz
12921292```
12931293
12941294Note it may take some time before compilation begins due to the slow
@@ -1320,7 +1320,7 @@ installing.
13201320#### <a name =" nogithubaccess " ></a > 3.10.3 Compiling node-oracledb without GitHub Access
13211321
13221322Some companies block access to github.com so compiling source code
1323- from GitHub with ` npm install oracle/node-oracledb.git#v3.1.0 ` will
1323+ from GitHub with ` npm install oracle/node-oracledb.git#v3.1.1 ` will
13241324fail.
13251325
13261326Oracle has a mirror of the GitHub repository source code that can be
@@ -1418,7 +1418,7 @@ See [Node.js for Oracle Linux][46] for details.
14181418You can host node-oracledb packages locally.
14191419
14201420Download the node-oracledb package from npm, for example from
1421- ` https://registry.npmjs.com/oracledb/-/oracledb-3.1.0 .tgz `
1421+ ` https://registry.npmjs.com/oracledb/-/oracledb-3.1.1 .tgz `
14221422Alternatively, if you want to build your own binaries and
14231423node-oracledb package, the maintainer scripts in
14241424[ /package] ( https://github.com/oracle/node-oracledb/tree/master/package )
@@ -1427,19 +1427,19 @@ can be used. See
14271427for details.
14281428
14291429If you make the package accessible on your local web server, for
1430- example at https://www.example.com/oracledb-3.1.0 .tgz , then your
1430+ example at https://www.example.com/oracledb-3.1.1 .tgz , then your
14311431install command would be:
14321432
14331433```
1434- npm install https://www.example.com/oracledb-3.1.0 .tgz
1434+ npm install https://www.example.com/oracledb-3.1.1 .tgz
14351435```
14361436
14371437or your ` package.json ` would contain:
14381438
14391439```
14401440. . .
14411441 "dependencies": {
1442- "oracledb": "https://www.example.com/oracledb-3.1.0 .tgz"
1442+ "oracledb": "https://www.example.com/oracledb-3.1.1 .tgz"
14431443 },
14441444. . .
14451445```
0 commit comments