diff --git a/CHANGELOG.md b/CHANGELOG.md index a4cb04745..67d8fd785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.6.75 - 10th February, 2018 + ## 0.6.74 - 8th February, 2018 * [Nikhil Raman (@cheesedosa)](https://github.com/cheesedosa) diff --git a/Go-latest.vsix b/Go-latest.vsix index 804a37960..0f906f01f 100644 Binary files a/Go-latest.vsix and b/Go-latest.vsix differ diff --git a/package.json b/package.json index 59cd15149..20c6d2955 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Go", - "version": "0.6.74", + "version": "0.6.75", "publisher": "lukehoban", "description": "Rich Go language support for Visual Studio Code", "author": { diff --git a/src/goMain.ts b/src/goMain.ts index 41c40fc06..1692eed24 100644 --- a/src/goMain.ts +++ b/src/goMain.ts @@ -56,7 +56,7 @@ export function activate(ctx: vscode.ExtensionContext): void { "data": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ - sendTelemetryEvent('beta-testing', { version: '0.6.74', date: '01/31/2018' }); + // sendTelemetryEvent('beta-testing', { version: '0.6.75', date: '02/10/2018' }); let useLangServer = vscode.workspace.getConfiguration('go')['useLanguageServer']; let langServerFlags: string[] = vscode.workspace.getConfiguration('go')['languageServerFlags'] || [];