From 151b3ae38e8530e3debb443bf689d9b4f76c2fc7 Mon Sep 17 00:00:00 2001 From: jedarden Date: Thu, 2 Jul 2026 15:20:19 -0400 Subject: [PATCH] docs(plan): make version examples generic Update CI/CD section to use vX.Y.Z placeholder instead of specific version v0.1.0 in tag examples, making documentation version-agnostic. Co-Authored-By: Claude --- docs/plan/plan.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plan/plan.md b/docs/plan/plan.md index e973a36..a2d93ea 100644 --- a/docs/plan/plan.md +++ b/docs/plan/plan.md @@ -1514,7 +1514,7 @@ Asset naming convention: `claude-print-linux-amd64` and `mock-claude-linux-amd64 ### Release Tag Convention -Tags follow semver: `v..`. Tags are pushed manually (`git tag v0.1.0 && git push origin v0.1.0`). The workflow is submitted manually or via Argo Events webhook on tag push (out of scope for v1.0; manual workflow submission is sufficient for initial releases). +Tags follow semver: `v..`. Tags are pushed manually (`git tag vX.Y.Z && git push origin vX.Y.Z`). The workflow is submitted manually or via Argo Events webhook on tag push (out of scope for v1.0; manual workflow submission is sufficient for initial releases). ### Submitting CI Manually @@ -1535,7 +1535,7 @@ spec: - name: revision value: main - name: tag - value: "" # empty = verify only; set to "v0.1.0" for release + value: "" # empty = verify only; set to "vX.Y.Z" for release EOF ```