You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build the version scheme foundation and CI compute logic for all branch contexts.
Scope: version computation for vnext, main, and main-bump. No release triggering or publishing — those are Phase 2.B (#533) and Phase 3 (#509) respectively.
Version scheme
Warning
Not finalized yet, still TBD
Each of the 12 packages in packages/* carries <major>.<minor>.<patch> in its own pyproject.toml. Rules:
<major> and <minor> are git-controlled. Bumped manually by a human-authored commit per the classification table. Per-package independent.
<patch> in pyproject.toml is seed/informational only. CI computes the actual published <patch> at build time (see p2-version-compute).
packages/overture-schema is the canonical schema package.
Tasks
p2-version-scheme
Audit and establish baseline <major>.<minor> versions for all 12 packages.
Document version bump rules per the classification table.
p2-version-compute
Reusable CI composite action: given (package, branch context), returns version string to publish.
Context
Output version
vnext
<last-published>+dev.<run_number> (PEP 440 local) — highest version for that pkg in CA release repo. Falls back to <major>.<minor>.0+dev.<run_number> if never published.
main
<major>.<minor>.<next-patch> — highest existing <patch> for that <major>.<minor> in CA release repo + 1. Falls back to <major>.<minor>.0.
main-bump
<major>.<minor>.0 (patch resets to 0)
Definition of done
Baseline <major>.<minor> versions established for all 12 packages
p2-version-compute composite action implemented + tested for all contexts (vnext, main, main-bump)
Goal
Build the version scheme foundation and CI compute logic for all branch contexts.
Scope: version computation for
vnext,main, andmain-bump. No release triggering or publishing — those are Phase 2.B (#533) and Phase 3 (#509) respectively.Version scheme
Warning
Not finalized yet, still TBD
Each of the 12 packages in
packages/*carries<major>.<minor>.<patch>in its ownpyproject.toml. Rules:<major>and<minor>are git-controlled. Bumped manually by a human-authored commit per the classification table. Per-package independent.<patch>inpyproject.tomlis seed/informational only. CI computes the actual published<patch>at build time (seep2-version-compute).packages/overture-schemais the canonical schema package.Tasks
p2-version-scheme<major>.<minor>versions for all 12 packages.p2-version-computeReusable CI composite action: given (package, branch context), returns version string to publish.
vnext<last-published>+dev.<run_number>(PEP 440 local) — highest version for that pkg in CA release repo. Falls back to<major>.<minor>.0+dev.<run_number>if never published.main<major>.<minor>.<next-patch>— highest existing<patch>for that<major>.<minor>in CA release repo + 1. Falls back to<major>.<minor>.0.main-bump<major>.<minor>.0(patch resets to 0)Definition of done
<major>.<minor>versions established for all 12 packagesp2-version-computecomposite action implemented + tested for all contexts (vnext,main,main-bump)