Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release content-claims-cli 1.0.0 #45

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"packages/core": "5.1.0",
"packages/infra": "1.2.1"
"packages/infra": "1.2.1",
"packages/cli": "1.0.0"
}
33 changes: 33 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down