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>
834 B
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 |
|
|
Publish all four packages to pub.dev in dependency order, then tag the release.
Order:
cd packages/core && dart pub publishcd packages/kanban && dart pub publishcd packages/mcp && dart pub publishcd 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:
git checkout maingit merge developgit tag v1.0.0git push origin main --tags- 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.