dew/.project/kanban/backlog/DEW-0028.md

31 lines
838 B
Markdown

---
id: DEW-0028
title: Publish packages to pub.dev and tag v1.0.0
type: task
created: 2026-04-25T19:53:27.907063Z
milestones:
- 1.0.0
labels:
- "1.0"
---
Publish all four packages to pub.dev in dependency order, then tag the release.
Order:
1. `cd packages/core && dart pub publish`
2. `cd packages/kanban && dart pub publish`
3. `cd packages/mcp && dart pub publish`
4. `cd packages/cli && dart pub publish`
Wait for each to appear on pub.dev before publishing the next (pub.dev propagation can take a few minutes).
After all four are published:
1. `git checkout main`
2. `git merge develop`
3. `git tag v1.0.0`
4. `git push origin main --tags`
5. Create GitHub release at <https://github.com/artificery-dev/dew/releases> with CHANGELOG.md 1.0.0 section as body.
Prerequisite: DEW-0027 (final validation) must be done first.