Skip to content

Commit 5127e14

Browse files
committed
src/goToolsInformation: mark go-outline as replacedByGopls
Fixes #1020 Change-Id: I68f871f2d39469bd76f4f1ece483d24d518a79db Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/400360 Reviewed-by: Suzy Mueller <[email protected]>
1 parent 8b9a0e7 commit 5127e14

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/goToolsInformation.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const allToolsInformation: { [key: string]: Tool } = {
2727
name: 'go-outline',
2828
importPath: 'github.com/ramya-rao-a/go-outline',
2929
modulePath: 'github.com/ramya-rao-a/go-outline',
30-
replacedByGopls: false, // TODO(github.com/golang/vscode-go/issues/1020): replace with Gopls.
30+
replacedByGopls: true,
3131
isImportant: true,
3232
description: 'Go to symbol in file' // GoDocumentSymbolProvider, used by 'run test' codelens
3333
},
@@ -195,10 +195,10 @@ export const allToolsInformation: { [key: string]: Tool } = {
195195
description: 'Language Server from Google',
196196
usePrereleaseInPreviewMode: true,
197197
minimumGoVersion: semver.coerce('1.13'),
198-
latestVersion: semver.parse('v0.8.0'),
199-
latestVersionTimestamp: moment('2022-03-03', 'YYYY-MM-DD'),
200-
latestPrereleaseVersion: semver.parse('v0.8.0'),
201-
latestPrereleaseVersionTimestamp: moment('2022-03-03', 'YYYY-MM-DD')
198+
latestVersion: semver.parse('v0.8.3'),
199+
latestVersionTimestamp: moment('2022-04-07', 'YYYY-MM-DD'),
200+
latestPrereleaseVersion: semver.parse('v0.8.3'),
201+
latestPrereleaseVersionTimestamp: moment('2022-04-07', 'YYYY-MM-DD')
202202
},
203203
'dlv': {
204204
name: 'dlv',

tools/allTools.ts.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const allToolsInformation: { [key: string]: Tool } = {
2525
name: 'go-outline',
2626
importPath: 'github.com/ramya-rao-a/go-outline',
2727
modulePath: 'github.com/ramya-rao-a/go-outline',
28-
replacedByGopls: false, // TODO(github.com/golang/vscode-go/issues/1020): replace with Gopls.
28+
replacedByGopls: true,
2929
isImportant: true,
3030
description: 'Go to symbol in file' // GoDocumentSymbolProvider, used by 'run test' codelens
3131
},

0 commit comments

Comments
 (0)