Compare commits

..

3 Commits

Author SHA1 Message Date
8f4027b136 chore: release version v0.12.4 2019-07-23 14:38:20 +02:00
90835484fe chore: update contributors 2019-07-23 14:38:20 +02:00
8bcd9a880e chore: revert async dep change (#97)
* chore: revert async dep change

* chore: update async to 2.6.3
2019-07-23 13:32:46 +01:00
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,8 @@
<a name="0.12.4"></a>
## [0.12.4](https://github.com/libp2p/js-peer-id/compare/v0.12.3...v0.12.4) (2019-07-23)
<a name="0.12.3"></a>
## [0.12.3](https://github.com/libp2p/js-peer-id/compare/v0.12.2...v0.12.3) (2019-07-11)

View File

@ -1,6 +1,6 @@
{
"name": "peer-id",
"version": "0.12.3",
"version": "0.12.4",
"description": "IPFS Peer Id implementation in Node.js",
"leadMaintainer": "Pedro Teixeira <i@pgte.me>",
"main": "src/index.js",
@ -34,14 +34,14 @@
},
"homepage": "https://github.com/libp2p/js-peer-id",
"devDependencies": {
"aegir": "^18.2.2",
"aegir": "^20.0.0",
"bundlesize": "~0.17.1",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1"
},
"dependencies": {
"libp2p-crypto": "~0.16.1",
"async": "^3.0.1",
"async": "^2.6.3",
"class-is": "^1.1.0",
"multihashes": "~0.4.15"
},
@ -55,6 +55,7 @@
"David Dias <mail@daviddias.me>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Hugo Dias <hugomrdias@gmail.com>",
"Jacob Heun <jacobheun@gmail.com>",
"Maciej Krüger <mkg20001@gmail.com>",
"Michael Garvin <gar+gh@danger.computer>",
"Pedro Teixeira <i@pgte.me>",

View File

@ -9,5 +9,6 @@ PeerId.create((err, id) => {
throw err
}
// eslint-disable-next-line
console.log(JSON.stringify(id.toJSON(), null, 2))
})