Skip to content

Commit 7c2c9db

Browse files
committed
release(skeet): avoid saying "release candidate"
There is nothing wrong with release candidates, they are great: Once enough people have tested a release candidate, it can be confidently switched to a full release. So what is wrong about calling Git for Windows' -rc versions (or for that matter, Git's -rc versions "release candidates" is that, well, they are _not at all candidates_ to be turned into full releases. So let's call them what they are: previews. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 806c17d commit 7c2c9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
const [, baseVersion, rc ] = ver.match(/^(.*)-rc(\d+)$/) || [ver]
143143
const skeet =
144144
rc
145-
? `The ${nth(Number.parseInt(rc) + 1)} release candidate of Git for Windows ${baseVersion} is available, please test! ${releaseURL}`
145+
? `The ${nth(Number.parseInt(rc) + 1)} preview of Git for Windows ${baseVersion} is available, please test! ${releaseURL}`
146146
: `Git for Windows ${baseVersion} is available! ${releaseURL}`
147147
const blueskyLink = `https://bsky.app/intent/compose?text=${encodeURIComponent(skeet)}`
148148

0 commit comments

Comments
 (0)