Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
chore: release version v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Feb 12, 2018
1 parent 9399fac commit 5b91091
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
<a name="0.2.0"></a>
# [0.2.0](https://github.com/ipld/js-ipld-git/compare/v0.1.1...v0.2.0) (2018-02-12)


### Bug Fixes

* use binary blobs directly ([334f2f0](https://github.com/ipld/js-ipld-git/commit/334f2f0))


### BREAKING CHANGES

* Everyone calling the functions of `resolve` need to
pass in the binary data instead of an IPFS block.

So if your input is an IPFS block, the code changes from

resolver.resolve(block, path, (err, result) => {…}

to

resolver.resolve(block.data, path, (err, result) => {…}



<a name="0.1.1"></a>
## [0.1.1](https://github.com/ipld/js-ipld-git/compare/v0.1.0...v0.1.1) (2017-11-07)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipld-git",
"version": "0.1.1",
"version": "0.2.0",
"description": "JavaScript Implementation of Git IPLD format",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit 5b91091

Please sign in to comment.