diff --git a/CHANGELOG.md b/CHANGELOG.md index 1191a8f..f237a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.0.0](https://github.com/web3-storage/ipfs-car/compare/v0.9.2...v1.0.0) (2023-03-20) + + +### ⚠ BREAKING CHANGES + +* The programmatic API has changed significantly, see the README for new streaming API. The CLI "commands" like `--pack` have changed to `pack` (i.e. without dashes) but are largely very similar. In the CLI, CAR files written to stdout or piped to another program (i.e. not written to disk using `--output`) will not have a root CID in the CAR header. Minimum Node.js version for the CLI has changed to 18. + +### Features + +* streaming CAR packing ([#148](https://github.com/web3-storage/ipfs-car/issues/148)) ([5f5c466](https://github.com/web3-storage/ipfs-car/commit/5f5c466e5184c885cfde20061c4e0721a7d35411)) + ## [0.9.2](https://github.com/web3-storage/ipfs-car/compare/v0.9.1...v0.9.2) (2023-02-15) diff --git a/package-lock.json b/package-lock.json index 868c950..fbc2f54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ipfs-car", - "version": "0.9.2", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index fea887a..c4b2bf9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-car", - "version": "0.9.2", + "version": "1.0.0", "description": "Convert files to content-addressed archives (.car) and back", "type": "module", "main": "index.js",