From 062d76f4a06703e29bdc181614a2205d55293e48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 13:49:29 +0000 Subject: [PATCH] chore(main): release content-claims-cli 1.0.0 --- .github/release-please-manifest.json | 3 ++- packages/cli/CHANGELOG.md | 33 ++++++++++++++++++++++++++++ packages/cli/package.json | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 packages/cli/CHANGELOG.md diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 8a86dc8..c299ed3 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,4 +1,5 @@ { "packages/core": "5.1.0", - "packages/infra": "1.2.1" + "packages/infra": "1.2.1", + "packages/cli": "1.0.0" } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000..52b33e7 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,33 @@ +# Changelog + +## 1.0.0 (2024-07-02) + + +### ⚠ BREAKING CHANGES + +* Client read interface and client claim types now use multihashes. Relation claim has been removed in favour of upcoming dag-index claim. +* allow specify parts in relation part inclusion + +### Features + +* `--expire` flag support for cli ([#29](https://github.com/storacha-network/content-claims/issues/29)) ([e01d609](https://github.com/storacha-network/content-claims/commit/e01d609c8ab29ae3adc1ef8720ae79bf59d5ffc7)) +* add `assert/equals` ([#22](https://github.com/storacha-network/content-claims/issues/22)) ([bddd948](https://github.com/storacha-network/content-claims/commit/bddd948db5e1628d20b4d31796690b40b654a720)) +* add index claim ([#66](https://github.com/storacha-network/content-claims/issues/66)) ([0bc19c9](https://github.com/storacha-network/content-claims/commit/0bc19c9108cf43d7c45390d6a1257eced81420ed)) +* add simple CLI ([a9e13ac](https://github.com/storacha-network/content-claims/commit/a9e13ac8f52d3ac674f7bed8b5708933082c772e)) +* allow specify parts in relation part inclusion ([dda837f](https://github.com/storacha-network/content-claims/commit/dda837f7177fc66ec2ab0acd126900f442e4637a)) +* **cli:** add descendant command ([f0581ae](https://github.com/storacha-network/content-claims/commit/f0581ae33e5a5aa7c6c88383be8b952e7155907e)) +* client claim reader ([5395620](https://github.com/storacha-network/content-claims/commit/5395620926a7c6da325a3b617d0fd9d8bba09bac)) +* export decode claim function ([#12](https://github.com/storacha-network/content-claims/issues/12)) ([17018dc](https://github.com/storacha-network/content-claims/commit/17018dc9de8b14937fff9e5e4cf47bc5c0d55cb7)) +* publish content claims by multihash ([#61](https://github.com/storacha-network/content-claims/issues/61)) ([151f4a1](https://github.com/storacha-network/content-claims/commit/151f4a1461b8060fe33f6e5c1622bc6b02165c28)) +* upgrade to latest ucanto ([#30](https://github.com/storacha-network/content-claims/issues/30)) ([1323df1](https://github.com/storacha-network/content-claims/commit/1323df1a3c034805c2d08733be7349991971c68e)) + + +### Bug Fixes + +* add linting and fix type errors ([#33](https://github.com/storacha-network/content-claims/issues/33)) ([5450a8b](https://github.com/storacha-network/content-claims/commit/5450a8bc207fb75b73a25ceed8d5091d0f95be65)) +* add missing repo URL ([7991d7c](https://github.com/storacha-network/content-claims/commit/7991d7cbb77f84c96285bb776feb22994d67c8e8)) +* offset ([31a4578](https://github.com/storacha-network/content-claims/commit/31a4578c13093fdf958890fe20bf7b8fcc625df4)) +* relation claim cration in CLI ([382c61e](https://github.com/storacha-network/content-claims/commit/382c61e45f504e1fe084d574006d13f008a389f9)) +* revert descendant claim ([1eada28](https://github.com/storacha-network/content-claims/commit/1eada2857b088e6aec81f9ecd5d5a9630597cbd6)) +* upgrade ucanto libs ([#55](https://github.com/storacha-network/content-claims/issues/55)) ([a8b4546](https://github.com/storacha-network/content-claims/commit/a8b4546c69a656e965cf39b1008b75eb6a006bf1)) +* walk must be array when passed to client ([#25](https://github.com/storacha-network/content-claims/issues/25)) ([531e780](https://github.com/storacha-network/content-claims/commit/531e780eefc2e26bdf8fc1f9bb2897954b6eb903)) diff --git a/packages/cli/package.json b/packages/cli/package.json index 7e6aba1..a5211e0 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@web3-storage/content-claims-cli", - "version": "0.0.0", + "version": "1.0.0", "description": "CLI for generating and submitting content claims.", "main": "bin.js", "type": "module",