diff --git a/CHANGELOG.md b/CHANGELOG.md index 999acbb..0b000fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [8.0.0](https://github.com/web3-storage/dagula/compare/v7.3.0...v8.0.0) (2024-05-14) + + +### ⚠ BREAKING CHANGES + +* The `Blockstore` interface now includes a `stream` method that returns a `ReadableStream` and a `stat` method that returns info (byte size). + +### Features + +* add block streaming interface ([#44](https://github.com/web3-storage/dagula/issues/44)) ([2236fe4](https://github.com/web3-storage/dagula/commit/2236fe431ff566870b7d2d939ee9ba0a93d894d2)) + + +### Bug Fixes + +* remove only test ([#42](https://github.com/web3-storage/dagula/issues/42)) ([ca858fb](https://github.com/web3-storage/dagula/commit/ca858fb43fa55f7f29339c5e48f81dd8e9fbd51c)) + ## [7.3.0](https://github.com/web3-storage/dagula/compare/v7.2.2...v7.3.0) (2024-01-17) diff --git a/package-lock.json b/package-lock.json index 7914351..8fb08a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dagula", - "version": "7.3.0", + "version": "8.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dagula", - "version": "7.3.0", + "version": "8.0.0", "license": "Apache-2.0 OR MIT", "dependencies": { "@chainsafe/libp2p-noise": "^11.0.0", diff --git a/package.json b/package.json index 12b3a58..cb4ec00 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dagula", - "version": "7.3.0", + "version": "8.0.0", "description": "Suck a DAG out of a peer in the IPFS network.", "main": "index.js", "type": "module",