We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f6db9 commit c0e33deCopy full SHA for c0e33de
src/goEnvironmentStatus.ts
@@ -543,9 +543,11 @@ export async function getLatestGoVersions(): Promise<GoEnvironmentOption[]> {
543
});
544
} catch (e) {
545
// hardcode the latest versions of Go in case golang.dl is unavailable
546
+ // TODO(hyangah): consider to remove these hardcoded versions and instead
547
+ // show error notification if necessary.
548
results = [
- new GoEnvironmentOption('go get golang.org/dl/go1.15', 'Go 1.15'),
- new GoEnvironmentOption('go get golang.org/dl/go1.14.7', 'Go 1.14.7')
549
+ new GoEnvironmentOption('go get golang.org/dl/go1.17.1', 'Go 1.17.1'),
550
+ new GoEnvironmentOption('go get golang.org/dl/go1.16.8', 'Go 1.16.8')
551
];
552
}
553
0 commit comments