Skip to content

Commit 8f5f323

Browse files
authored
Merge pull request #307 from DavidVujic/release_5_3_1
bump version to 5.3.1 + update docs.
2 parents beb21a8 + 77f33a2 commit 8f5f323

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### v 5.3.1 (2022-02-12)
2+
* fix: get and w_get returns an array of [stat, string|Buffer]. Pull request [306](https://github.com/yfinkelstein/node-zookeeper/pull/306) by @davidvujic
3+
14
#### v 5.3.0 (2022-01-09)
25
* feat: Add Mac OS X M1 prebuild for Node.js 16.13.1. Pull request [302](https://github.com/yfinkelstein/node-zookeeper/pull/302) by @davidvujic
36
* fix: node-gyp is already included in npm. Pull request [301](https://github.com/yfinkelstein/node-zookeeper/pull/301) by @davidvujic

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Have a look at the code in the [examples](./examples) folder: with __master__, _
107107
* `stat = await exists(path, watch)`
108108
* rejects if node does not exist. There's also a `pathExists` as an alternative.
109109
* `trueOrFalseValue = await pathExists(path, watch)`
110-
* `data = await get(path, watch)`
110+
* `[stat, string|Buffer] = await get(path, watch)`
111111
* `children = await get_children(path, watch)`
112112
* `[children, stat] = await get_children2( path, watch)`
113113
* return value types:
@@ -128,7 +128,7 @@ Have a look at the code in the [examples](./examples) folder: with __master__, _
128128
* `stat = await w_exists(path, watch_cb)`
129129
* rejects if node does not exist. There's also a `w_pathExists` as an alternative.
130130
* `trueOrFalseValue = await w_pathExists(path, watch)`
131-
* `data = await w_get(path, watch_cb)`
131+
* `[stat, string|Buffer] = await w_get(path, watch_cb)`
132132
* `children = await w_get_children(path, watch_cb)`
133133
* `[children, stat] = await w_get_children2 (path, watch_cb)`
134134
* return value types:

package.json

+1-1
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.7.x)",
4-
"version": "5.3.0",
4+
"version": "5.3.1",
55
"author": "Yuri Finkelstein <[email protected]>",
66
"license": "MIT",
77
"contributors": [

0 commit comments

Comments
 (0)