Skip to content

Commit

Permalink
Merge pull request #307 from DavidVujic/release_5_3_1
Browse files Browse the repository at this point in the history
bump version to 5.3.1 + update docs.
  • Loading branch information
DavidVujic committed Feb 12, 2022
2 parents beb21a8 + 77f33a2 commit 8f5f323
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### v 5.3.1 (2022-02-12)
* 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

#### v 5.3.0 (2022-01-09)
* 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
* fix: node-gyp is already included in npm. Pull request [301](https://github.com/yfinkelstein/node-zookeeper/pull/301) by @davidvujic
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Have a look at the code in the [examples](./examples) folder: with __master__, _
* `stat = await exists(path, watch)`
* rejects if node does not exist. There's also a `pathExists` as an alternative.
* `trueOrFalseValue = await pathExists(path, watch)`
* `data = await get(path, watch)`
* `[stat, string|Buffer] = await get(path, watch)`
* `children = await get_children(path, watch)`
* `[children, stat] = await get_children2( path, watch)`
* return value types:
Expand All @@ -128,7 +128,7 @@ Have a look at the code in the [examples](./examples) folder: with __master__, _
* `stat = await w_exists(path, watch_cb)`
* rejects if node does not exist. There's also a `w_pathExists` as an alternative.
* `trueOrFalseValue = await w_pathExists(path, watch)`
* `data = await w_get(path, watch_cb)`
* `[stat, string|Buffer] = await w_get(path, watch_cb)`
* `children = await w_get_children(path, watch_cb)`
* `[children, stat] = await w_get_children2 (path, watch_cb)`
* return value types:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.4.x - v3.7.x)",
"version": "5.3.0",
"version": "5.3.1",
"author": "Yuri Finkelstein <yurif2003@yahoo.com>",
"license": "MIT",
"contributors": [
Expand Down

0 comments on commit 8f5f323

Please sign in to comment.