dew/.project/kanban/backlog/DEW-0028.md
Chris Hendrickson 49c6e995a8 fix: tolerate non-string YAML list elements when parsing tickets
YAML values like '1.0' (unquoted) parse as double, not String.
Changed parseStringList to use string interpolation ('$e') instead
of 'e as String', so numeric YAML scalars in labels/milestones
don't crash ticket parsing.

Also quote all '1.0' label values in existing ticket files so they
are unambiguously strings in YAML.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-25 16:05:01 -04:00

834 B

id title type created milestones labels
DEW-0028 Publish packages to pub.dev and tag v1.0.0 task 2026-04-25T19:53:27.907063Z
1.0.0
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.