diff --git a/CHANGELOG.md b/CHANGELOG.md index 4801ce103f..69876a904e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the "grafana-vscode" extension will be documented in this file. +## v0.0.18 +- Fix support for Grafana Cloud (#87) +- Support library panels (#90) +- Support grizzly dashboards (#91) +- Support HTTP API-style dashboards (#92) + ## v0.0.17 - Add /api/datasource/uid/* proxy endpoint - Remove preferences warning popup diff --git a/package.json b/package.json index 0f4d1e84d9..9316a3a2ca 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "displayName": "Grafana", "description": "Grafana Editor", "icon": "public/grafana_icon.png", - "version": "0.0.17", + "version": "0.0.18", "license": "Apache-2.0", "repository": { "type": "git", diff --git a/src/grafana.ts b/src/grafana.ts index f552a38d01..d3b15b450c 100644 --- a/src/grafana.ts +++ b/src/grafana.ts @@ -125,6 +125,6 @@ export class Resource { break; } - return fs.promises.writeFile(this.filename, content) + return fs.promises.writeFile(this.filename, content); } }