diff --git a/CHANGELOG.md b/CHANGELOG.md index 5546fa3d9..36241c26f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ -## 0.6.67 - 3rd November, 2017 +## 0.6.67 - 4th November, 2017 * [Nuruddin Ashr (@uudashr)](https://github.com/uudashr) - * Do not show suggestions from internal packages from other projects. Fixes [Bug 1256](https://github.com/Microsoft/vscode-go/issues/1256). + * Do not show suggestions from internal packages of other projects. Fixes [Bug 1256](https://github.com/Microsoft/vscode-go/issues/1256). * [Alexander Kohler (@alexkohler)](https://github.com/alexkohler) * Fix issue with `go.useCodeSnippetsOnFunctionSuggestWithoutType` setting dropping parameters of same type. Fixes [Bug 1279](https://github.com/Microsoft/vscode-go/issues/1279) via [PR 1284](https://github.com/Microsoft/vscode-go/pull/1284) diff --git a/Go-latest.vsix b/Go-latest.vsix index 9b7ce094d..dcd290514 100644 Binary files a/Go-latest.vsix and b/Go-latest.vsix differ diff --git a/package.json b/package.json index c57f0f8cb..0769c14d2 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,9 @@ "type": "git", "url": "https://github.com/Microsoft/vscode-go.git" }, + "keywords": [ + "multi-root ready" + ], "scripts": { "vscode:prepublish": "tsc -p ./", "compile": "tsc -watch -p ./", diff --git a/src/goMain.ts b/src/goMain.ts index cc6620d5d..6d769845c 100644 --- a/src/goMain.ts +++ b/src/goMain.ts @@ -51,7 +51,7 @@ export function activate(ctx: vscode.ExtensionContext): void { "data": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ - //sendTelemetryEvent('beta-testing', { version: '0.6.67', date: '10/18/2017' }); + // sendTelemetryEvent('beta-testing', { version: '0.6.67', date: '10/18/2017' }); let useLangServer = vscode.workspace.getConfiguration('go')['useLanguageServer']; let langServerFlags: string[] = vscode.workspace.getConfiguration('go')['languageServerFlags'] || [];