Skip to content

Commit 7feeaac

Browse files
authored
Merge pull request #285 from DavidVujic/node_16
Add prebuilds for Node.js 16 (current LTS version)
2 parents 7ec6637 + fbf8f64 commit 7feeaac

File tree

8 files changed

+10
-5
lines changed

8 files changed

+10
-5
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
node_js:
3-
- "12"
43
- "14"
4+
- "16"
55
os:
66
- linux
77
- osx

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### v 5.0.0 (2021-12-06)
2+
* feat: add Node.js 16 prebuilds for Windows. Pull request [284](https://github.com/yfinkelstein/node-zookeeper/pull/284) by @miroslavpokorny
3+
* feat: add Node.js 16 prebuilds for Mac OS X (`x64` arch), and drop support for Node.js 12. Pull request [285](https://github.com/yfinkelstein/node-zookeeper/pull/285) by @davidvujic
4+
5+
16
#### v 4.10.1 (2021-11-08)
27
* fix: replace the `tape` unit test library with `ava`. Pull request [282](https://github.com/yfinkelstein/node-zookeeper/pull/282) by @davidvujic
38

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zookeeper",
33
"description": "apache zookeeper client (zookeeper async API v3.4.x - v3.6.x)",
4-
"version": "4.10.1",
4+
"version": "5.0.0",
55
"author": "Yuri Finkelstein <[email protected]>",
66
"license": "MIT",
77
"contributors": [
@@ -64,7 +64,7 @@
6464
"type-declarations": "tsc --outFile ./lib/typedeclarations.d.ts"
6565
},
6666
"engines": {
67-
"node": ">=10.0.0"
67+
"node": ">=14.15.4"
6868
},
6969
"types": "./lib/typedeclarations.d.ts"
7070
}

prebuilds/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Each platform has prebuilds for Node.js 12 and 14.
88
Create prebuilds for Mac OS X:
99

1010
```bash
11-
npx prebuildify --arch x64 --platform darwin --target 12.20.1
1211
npx prebuildify --arch x64 --platform darwin --target 14.15.4
12+
npx prebuildify --arch x64 --platform darwin --target 16.13.1
1313
```
1414

1515
Create prebuilds for Windows 10:
1616

1717
```bash
18-
npx prebuildify --arch x64 --platform win32 --target 12.20.1
1918
npx prebuildify --arch x64 --platform win32 --target 14.15.4
19+
npx prebuildify --arch x64 --platform win32 --target 16.13.1
2020
```

prebuilds/darwin-x64/node.abi72.node

-318 KB
Binary file not shown.

prebuilds/darwin-x64/node.abi93.node

317 KB
Binary file not shown.

prebuilds/win32-x64/node.abi72.node

-267 KB
Binary file not shown.

prebuilds/win32-x64/node.abi93.node

268 KB
Binary file not shown.

0 commit comments

Comments
 (0)