Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
release:
name: Publish npm and GitHub release
runs-on: ubuntu-latest
environment: npm-release
timeout-minutes: 20
permissions:
contents: write
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.7.3 - Unreleased

- Bound npm trusted publishing to the `npm-release` GitHub environment and restored canonical package repository metadata.
- Reworked the README around a verified install and quickstart path, with deeper command, mapper, provider, and safety details linked to the existing docs.
- Updated transitive Vitest dependencies.
- Updated pnpm, formatter and linter tooling, and GitHub Actions dependencies.
Expand Down
3 changes: 3 additions & 0 deletions docs/release-prep.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ npm pack --dry-run --json --ignore-scripts

## Manual Checks

- Confirm npm Trusted Publisher is bound to GitHub repository
`openclaw/clawpatch`, workflow filename `release.yml`, environment
`npm-release`, and the `npm publish` action.
- Confirm `CHANGELOG.md` has all user-visible, operational, or security-relevant
changes under the next unreleased version.
- Confirm README and docs mention any new mapper behavior, commands, or safety
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "0.7.2",
"description": "Automated code review that lands fixes.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openclaw/clawpatch.git"
},
"bin": {
"clawpatch": "dist/cli.js"
},
Expand Down
Loading