Skip to content

Commit dabbb48

Browse files
committed
1 parent 9d11252 commit dabbb48

File tree

6 files changed

+40
-7
lines changed

6 files changed

+40
-7
lines changed

packages/ipfs-unixfs-exporter/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.0.2](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@3.0.2) (2020-08-05)
7+
8+
9+
### Bug Fixes
10+
11+
* replace node buffers with uint8arrays ([#69](https://github.com/ipfs/js-ipfs-unixfs/issues/69)) ([8a5aed2](https://github.com/ipfs/js-ipfs-unixfs/commit/8a5aed2ca76de16778ff37822c058531d4fcdcb5)), closes [#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)
12+
13+
14+
15+
16+
617
## [3.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@3.0.1) (2020-07-28)
718

819
**Note:** Version bump only for package ipfs-unixfs-exporter

packages/ipfs-unixfs-exporter/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-exporter",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "JavaScript implementation of the UnixFs exporter used by IPFS",
55
"leadMaintainer": "Alex Potsides <[email protected]>",
66
"main": "src/index.js",
@@ -38,7 +38,7 @@
3838
"abort-controller": "^3.0.0",
3939
"aegir": "^25.0.0",
4040
"detect-node": "^2.0.4",
41-
"ipfs-unixfs-importer": "^3.0.1",
41+
"ipfs-unixfs-importer": "^3.0.2",
4242
"ipld": "^0.27.0",
4343
"ipld-dag-pb": "^0.20.0",
4444
"ipld-in-memory": "^6.0.0",
@@ -54,7 +54,7 @@
5454
"cids": "^1.0.0",
5555
"err-code": "^2.0.0",
5656
"hamt-sharding": "^1.0.0",
57-
"ipfs-unixfs": "^2.0.1",
57+
"ipfs-unixfs": "^2.0.2",
5858
"ipfs-utils": "^2.3.1",
5959
"it-last": "^1.0.1",
6060
"multihashing-async": "^2.0.0"

packages/ipfs-unixfs-importer/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.0.2](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@3.0.2) (2020-08-05)
7+
8+
9+
### Bug Fixes
10+
11+
* replace node buffers with uint8arrays ([#69](https://github.com/ipfs/js-ipfs-unixfs/issues/69)) ([8a5aed2](https://github.com/ipfs/js-ipfs-unixfs/commit/8a5aed2ca76de16778ff37822c058531d4fcdcb5)), closes [#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)
12+
13+
14+
15+
16+
617
## [3.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@3.0.1) (2020-07-28)
718

819
**Note:** Version bump only for package ipfs-unixfs-importer

packages/ipfs-unixfs-importer/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs-importer",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "JavaScript implementation of the UnixFs importer used by IPFS",
55
"leadMaintainer": "Alex Potsides <[email protected]>",
66
"main": "src/index.js",
@@ -38,7 +38,7 @@
3838
"aegir": "^25.0.0",
3939
"cids": "^1.0.0",
4040
"detect-node": "^2.0.4",
41-
"ipfs-unixfs-exporter": "^3.0.1",
41+
"ipfs-unixfs-exporter": "^3.0.2",
4242
"ipld": "^0.27.0",
4343
"ipld-in-memory": "^6.0.0",
4444
"it-buffer-stream": "^1.0.2",
@@ -52,7 +52,7 @@
5252
"bl": "^4.0.0",
5353
"err-code": "^2.0.0",
5454
"hamt-sharding": "^1.0.0",
55-
"ipfs-unixfs": "^2.0.1",
55+
"ipfs-unixfs": "^2.0.2",
5656
"ipfs-utils": "^2.3.1",
5757
"ipld-dag-pb": "^0.20.0",
5858
"it-all": "^1.0.1",

packages/ipfs-unixfs/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.2](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@2.0.2) (2020-08-05)
7+
8+
9+
### Bug Fixes
10+
11+
* replace node buffers with uint8arrays ([#69](https://github.com/ipfs/js-ipfs-unixfs/issues/69)) ([8a5aed2](https://github.com/ipfs/js-ipfs-unixfs/commit/8a5aed2ca76de16778ff37822c058531d4fcdcb5)), closes [#66](https://github.com/ipfs/js-ipfs-unixfs/issues/66)
12+
13+
14+
15+
16+
617
## [2.0.1](https://github.com/ipfs/js-ipfs-unixfs/compare/[email protected]@2.0.1) (2020-07-28)
718

819
**Note:** Version bump only for package ipfs-unixfs

packages/ipfs-unixfs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-unixfs",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
55
"leadMaintainer": "Alex Potsides <[email protected]>",
66
"main": "src/index.js",

0 commit comments

Comments
 (0)