diff --git a/CHANGELOG.md b/CHANGELOG.md index e4b678c80..c03fb61ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.6.68 - Coming Soon +## 0.6.68 - 27th November, 2017 * New commands * [Frederik Ring (@m90)](https://github.com/m90) @@ -32,6 +32,10 @@ * Others * [Phil Kates (@philk)](https://github.com/philk) * Fix the formatting issue due to stricter rules in the VS Code apis around configuration objects. [PR 1334](https://github.com/Microsoft/vscode-go/pull/1334). Fixes [Bug 1333](https://github.com/Microsoft/vscode-go/issues/1333). + * [David Marby (@DMarby)](https://github.com/DMarby) + * Fix delve connection issues when verbose build flag is set. [PR 1354](https://github.com/Microsoft/vscode-go/pull/1354) + * [Jan Koehnlein @JanKoehnlein](https://github.com/JanKoehnlein) + * Fix `Open Workspace Settings` action in the prompt to set GOPATH. [PR 1375](https://github.com/Microsoft/vscode-go/pull/1375). Fixes [Bug 1374](https://github.com/Microsoft/vscode-go/issues/1374) * [Ramya Rao (@ramya-rao-a)](https://github.com/ramya-rao-a) * Apply/Clear coverage in active editors of all editor groups rather than just the first one. Fixes [Bug 1343](https://github.com/Microsoft/vscode-go/issues/1343) * Fix the issue of codelens for references showing "0 references" when `guru` fails to provide references. Fixes [Bug 1336](https://github.com/Microsoft/vscode-go/issues/1336) diff --git a/package.json b/package.json index b941bb175..a7c42194e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Go", - "version": "0.6.67", + "version": "0.6.68", "publisher": "lukehoban", "description": "Rich Go language support for Visual Studio Code", "author": { diff --git a/src/goMain.ts b/src/goMain.ts index 03e6a3eb1..45b88ec19 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.68', date: '11/21/2017' }); + // sendTelemetryEvent('beta-testing', { version: '0.6.68', date: '11/21/2017' }); let useLangServer = vscode.workspace.getConfiguration('go')['useLanguageServer']; let langServerFlags: string[] = vscode.workspace.getConfiguration('go')['languageServerFlags'] || [];