Skip to content

Commit b33ce83

Browse files
committed
[release] src/goMain: correct showGoWelcomePage hard-coded version string
Remove the 'v' prefix. Change-Id: I251055122f07c94a154f59bbda0cc7520db5cfd4 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/289698 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Robert Findley <[email protected]> (cherry picked from commit f2fcdb1) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/289677 TryBot-Result: kokoro <[email protected]> Reviewed-by: Rebecca Stambler <[email protected]>
1 parent 7b70563 commit b33ce83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goMain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ function showGoWelcomePage(ctx: vscode.ExtensionContext) {
580580
const showVersions: string[] = ['0.22.0'];
581581
// TODO(hyangah): use the content hash instead of hard-coded string.
582582
// https://github.com/golang/vscode-go/issue/1179
583-
let goExtensionVersion = 'v0.22.0';
583+
let goExtensionVersion = '0.22.0';
584584
let goExtensionVersionKey = 'go.extensionVersion';
585585
if (isInPreviewMode()) {
586586
goExtensionVersion = '0.0.0';

0 commit comments

Comments
 (0)