bump snap package to release PR

This commit is contained in:
Dave Conway-Jones 2017-04-15 12:14:34 +01:00
parent 0f7e8385b8
commit 4168fe7845
No known key found for this signature in database
GPG Key ID: 81B04231572A9A2D
2 changed files with 15 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ {
"name" : "node-red-node-snmp", "name" : "node-red-node-snmp",
"version" : "0.0.10", "version" : "0.0.11",
"description" : "A Node-RED node that looks for SNMP oids.", "description" : "A Node-RED node that looks for SNMP oids.",
"dependencies" : { "dependencies" : {
"net-snmp" : "^1.1.19" "net-snmp" : "^1.1.19"
@ -22,6 +22,7 @@
"url": "http://nodered.org" "url": "http://nodered.org"
}, },
"contributors": [ "contributors": [
{ "name": "Mika Karalia" } { "name": "Mika Karalia" },
{ "name": "Bryan Malyn" }
] ]
} }

View File

@ -46,8 +46,8 @@ module.exports = function(RED) {
} }
}); });
this.on("close", function(){ this.on("close", function() {
if (node.session){ if (node.session) {
node.session.close(); node.session.close();
} }
}); });
@ -114,8 +114,8 @@ module.exports = function(RED) {
} }
}); });
this.on("close", function(){ this.on("close", function() {
if (node.session){ if (node.session) {
node.session.close(); node.session.close();
} }
}); });
@ -171,8 +171,8 @@ module.exports = function(RED) {
} }
}); });
this.on("close", function(){ this.on("close", function() {
if (node.session){ if (node.session) {
node.session.close(); node.session.close();
} }
}); });
@ -229,8 +229,8 @@ module.exports = function(RED) {
} }
}); });
this.on("close", function(){ this.on("close", function() {
if (node.session){ if (node.session) {
node.session.close(); node.session.close();
} }
}); });