Skip to content

Commit

Permalink
5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-j-davies committed Sep 5, 2021
1 parent a6b499a commit 9cec40c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

**Changes**
- Improvements to the device paring wizard.
- Bump Zwave JS to 8.2.2
- Bump Zwave JS to 8.2.3

- 5.0.0

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "node-red-contrib-zwave-js",
"version": "5.1.0-beta.3",
"version": "5.1.0",
"license": "MIT",
"description": "An extremely powerful, easy to use, zero dependency and feature rich Z-Wave node for Node Red, based on Z-Wave JS.",
"dependencies": {
"@serialport/bindings": "9.2.0",
"serialport": "9.2.0",
"express": "4.17.1",
"lodash": "4.17.21",
"serialport": "9.2.0",
"winston": "3.3.3",
"winston-transport": "4.4.0",
"zwave-js": "^8.2.2"
"zwave-js": "^8.2.3"
},
"devDependencies": {
"eslint": "7.31.0",
Expand Down
2 changes: 1 addition & 1 deletion zwave-js/zwave-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ module.exports = function (RED) {
Driver.on('all nodes ready', () => {
node.status({ fill: 'green', shape: 'dot', text: 'All nodes ready!' });
UI.status('All nodes ready!');
Send(undefined,"ALL_NODES_READY")
Send(undefined, 'ALL_NODES_READY');
});

Driver.once('driver ready', () => {
Expand Down

0 comments on commit 9cec40c

Please sign in to comment.