From aa395f85b5492c6d651186cd48231262ecb2be2b Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Wed, 8 May 2019 15:03:45 +0200 Subject: [PATCH] chore: release version v3.0.0 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a3631f..241ff01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ + +# [3.0.0](https://github.com/ipld/js-ipld-ethereum/compare/v2.0.3...v3.0.0) (2019-05-08) + + +### Bug Fixes + +* **package:** update cids to version 0.6.0 ([c38363a](https://github.com/ipld/js-ipld-ethereum/commit/c38363a)) +* **package:** update multihashing-async to version 0.6.0 ([4eaa791](https://github.com/ipld/js-ipld-ethereum/commit/4eaa791)) + + +### Features + +* new IPLD Format API ([dc19aa7](https://github.com/ipld/js-ipld-ethereum/commit/dc19aa7)) + + +### BREAKING CHANGES + +* The API is now async/await based + +There are numerous changes, the most significant one is that the API +is no longer callback based, but it using async/await. + +If you want to access the original JavaScript Ethereum object, it is +now stored in a property called `_ethObj`. So if you e.g. called +`deserialized.hash()`, you now have to call +`deserialized._ethObj.hash()`. + +For the full new API please see the [IPLD Formats spec]. + +[IPLD Formats spec]: https://github.com/ipld/interface-ipld-format + + + ## [2.0.3](https://github.com/ipld/js-ipld-ethereum/compare/v2.0.2...v2.0.3) (2019-01-18)