Skip to content

Commit ebe5d63

Browse files
authored
chore(release): bump pseudoversion (#312)
## Why? Get back into the pattern of releasing based on commit-level psuedoversion rather than manual release tags. ## What? Rolling pseudoversion prefix forward to avoid Go resolving it as a downgrade when we update this in the monorepo. ## Test Plan - Deploy in our repo - Go now should treat this as an upgrade
1 parent e1b7c7b commit ebe5d63

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tag-go-pseudoversion.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Tags each new commit on the default branch with a Go pseudo-version so downstream
22
# monorepos can pin any merged commit in go.mod:
33
#
4-
# require github.com/uber/submitqueue v0.0.0-20250602143045-abcdef123456
4+
# require github.com/uber/submitqueue v0.3.0-20250602143045-abcdef123456
55
#
6-
# Format matches https://go.dev/ref/mod#pseudo-versions (v0.0.0-yyyymmddhhmmss-rev, UTC).
6+
# Format matches https://go.dev/ref/mod#pseudo-versions (v0.3.0-yyyymmddhhmmss-rev, UTC).
77

88
name: Tag Go pseudo-version
99

@@ -35,7 +35,7 @@ jobs:
3535
TS="$(git show -s --format=%ct "${SHA}")"
3636
WHEN="$(date -u -d "@${TS}" +%Y%m%d%H%M%S)"
3737
REV="$(git rev-parse --short=12 "${SHA}")"
38-
TAG="v0.0.0-${WHEN}-${REV}"
38+
TAG="v0.3.0-${WHEN}-${REV}"
3939
4040
echo "Computed tag: ${TAG} for ${SHA}"
4141

0 commit comments

Comments
 (0)