Compare commits

...

6 Commits

Author SHA1 Message Date
109ee51d7b chore: release version v0.5.2 2017-02-09 10:18:38 -08:00
09182b43bf chore: update contributors 2017-02-09 10:18:38 -08:00
a130ab2dc1 chore: ^ to ~ 2017-02-09 10:16:51 -08:00
e24a1e43dc chore: release version v0.5.1 2017-01-28 21:20:21 +00:00
cb7d60ef65 chore: update contributors 2017-01-28 21:20:20 +00:00
a01b9479eb fix: remove unnecessary log 2017-01-28 21:20:16 +00:00
2 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{
"name": "libp2p",
"version": "0.5.0",
"version": "0.5.2",
"description": "JavaScript Skeleton for libp2p bundles",
"main": "src/index.js",
"scripts": {
@ -32,20 +32,20 @@
"bugs": {
"url": "https://github.com/libp2p/js-libp2p/issues"
},
"homepage": "https://github.com/diasdavid/js-libp2p",
"homepage": "https://github.com/libp2p/js-libp2p",
"devDependencies": {
"chai": "^3.5.0",
"aegir": "^9.4.0",
"aegir": "^10.0.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"libp2p-ping": "^0.3.0",
"libp2p-swarm": "^0.26.13",
"libp2p-ping": "~0.3.0",
"libp2p-swarm": "~0.26.14",
"mafmt": "^2.1.6",
"multiaddr": "^2.2.0",
"peer-book": "^0.3.0",
"peer-id": "^0.8.1",
"peer-info": "^0.8.2"
"multiaddr": "^2.2.1",
"peer-book": "~0.3.1",
"peer-id": "~0.8.2",
"peer-info": "~0.8.3"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",

View File

@ -134,7 +134,6 @@ class Node {
if (this.modules.discovery) {
this.modules.discovery.forEach((discovery) => {
console.log(discovery)
setImmediate(() => discovery.stop(() => {}))
})
}