From a48be65e1e0b4eedf1e21595946085de7185b332 Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Tue, 9 Jan 2018 15:34:33 -0800 Subject: [PATCH] Prepping for 0.6.72 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/goMain.ts | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2d5de980..92ed713b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.6.72 - 9th January, 2018 + +* [Ramya Rao (@ramya-rao-a)](https://github.com/ramya-rao-a) + * Fix the issue that got introduced in the previous release, where formatter reverts changes unless `goreturns` is updated. Fixes [Bug 1447](https://github.com/Microsoft/vscode-go/issues/1447) + * `~`, `$workspaceRoot` and `$workspaceFolder` are now supported in the `go.goroot` setting +* [Ben Wood @(benclarkwood)](benclarkwood) + * Collapse single line imports into an import block when auto-completing symbols from unimported packages or when using the `Go: Add Import` command. Fixes [Bug 374](https://github.com/Microsoft/vscode-go/issues/374) with [PR 500](https://github.com/Microsoft/vscode-go/pull/500) + ## 0.6.71 - 5th January, 2018 * [Ramya Rao (@ramya-rao-a)](https://github.com/ramya-rao-a) diff --git a/package.json b/package.json index b7b757cfa..d3dfcf0ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Go", - "version": "0.6.71", + "version": "0.6.72", "publisher": "lukehoban", "description": "Rich Go language support for Visual Studio Code", "author": { diff --git a/src/goMain.ts b/src/goMain.ts index 5fa2c5573..cad1b42a1 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.72', date: '01/09/2018' }); + // sendTelemetryEvent('beta-testing', { version: '0.6.72', date: '01/09/2018' }); let useLangServer = vscode.workspace.getConfiguration('go')['useLanguageServer']; let langServerFlags: string[] = vscode.workspace.getConfiguration('go')['languageServerFlags'] || [];