Skip to content

Commit aad543d

Browse files
committed
added release checklist
1 parent 0a06ec5 commit aad543d

5 files changed

Lines changed: 15 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This changelog is **pre-release** and intended to track historical work and ongo
44

55
It does **not** declare v1.0 shipped.
66

7-
## Unreleased — v1.0 stabilization work in progress
7+
## 1.0.0 — Prepared for release
88

99
### Stable local tracing
1010

docs/RELEASE-CHECKLIST.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This document does **not** declare v1.0 shipped. Publish steps are placeholders
1212

1313
## Versioning requirements
1414

15-
- [ ] Decide version bump type (patch/minor/major) and rationale
15+
- [ ] Decide version bump type (patch/minor/major) and rationale (target: **v1.0.0**)
1616
- [ ] Ensure any breaking changes (if any) are explicitly documented
1717
- [ ] Do not ship breaking trace schema changes in a minor/patch release
1818

@@ -70,6 +70,10 @@ After `pnpm build`:
7070
- [ ] `node packages/cli/dist/index.cjs export minimal-success --dir fixtures/traces --format openinference --validate`
7171
- [ ] `node packages/cli/dist/index.cjs diff minimal-success minimal-error --dir fixtures/traces`
7272

73+
## Manual interactive TUI check (maintainer-only)
74+
75+
- [ ] `node packages/cli/dist/index.cjs view <runId> --tui`
76+
7377
## npm pack dry run
7478

7579
- [ ] `npm pack --dry-run` and confirm only intended files are included (dist + README + LICENSE)
@@ -78,9 +82,14 @@ After `pnpm build`:
7882

7983
These steps are intentionally not automated by this document:
8084

85+
- [ ] `pnpm install --frozen-lockfile`
86+
- [ ] `pnpm run prepublish:checks`
87+
- [ ] `npm pack --dry-run`
8188
- [ ] Create a release branch/tag (if used)
8289
- [ ] Generate changesets (if used)
83-
- [ ] Publish to npm (intentional action)
90+
- [ ] Publish to npm (intentional action): `npm publish --access public`
91+
- [ ] Tag: `git tag v1.0.0`
92+
- [ ] GitHub release: `gh release create v1.0.0`
8493
- [ ] Create GitHub release notes (if used)
8594

8695
## Post-release checks

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-inspect",
3-
"version": "0.1.2",
3+
"version": "1.0.0",
44
"license": "MIT",
55
"type": "module",
66
"description": "Local-first execution-tree debugger for TypeScript AI agents",

packages/langchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-inspect/langchain",
3-
"version": "0.1.2",
3+
"version": "1.0.0",
44
"license": "MIT",
55
"type": "module",
66
"private": false,

packages/tui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agent-inspect/tui",
3-
"version": "0.1.2",
3+
"version": "1.0.0",
44
"license": "MIT",
55
"type": "module",
66
"private": false,

0 commit comments

Comments
 (0)