From 480940fc2d23874e2500834fcdb1498732e2941a Mon Sep 17 00:00:00 2001 From: Pranay Agarwal Date: Mon, 4 Jun 2018 21:55:01 -0700 Subject: [PATCH] Release prep --- CHANGELOG.md | 4 ++++ README.md | 19 +++++++------------ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e09abfd..c978e5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ See the full list of recent releases and features added on the [Github releases page](https://github.com/PranayAgarwal/vscode-hack/releases). +## v0.8.4 - 2018-06-04 +- Syntax highlighting for `.hhconfig` file +- Added support for showing related messages for an error when running in non-LSP mode + ## v0.8.3 - 2018-05-30 - Fixed bug in debug launch mode to correctly recognize extra args passed to HHVM diff --git a/README.md b/README.md index b25840f..c7108bb 100644 --- a/README.md +++ b/README.md @@ -8,21 +8,15 @@ It is published in the Visual Studio Marketplace [here](https://marketplace.visu ## Latest releases -## v0.8.3 -- Fixed bug in debug launch mode to correctly recognize extra args passed to HHVM - -## v0.8.2 -- Documents are now recognized as Hack if they start with a shebang pointing to an HHVM executable (e.g. `#!/usr/bin/hhvm`), regardless of extension -- Debugger bug fixes (configuration snippet templates are copied correctly, stop debug session from getting stuck on bad socket connection) - -## v0.8.1 +## v0.8 +- **HHVM Debugger (Alpha version)** — Launch scripts or attach to an HHVM server straight from VS Code. See the [debugger doc](https://github.com/PranayAgarwal/vscode-hack/blob/master/docs/debugging.md) for details on setup and usage. _This is a very early release. Please file any bugs at the Issues page._ +- Hack coverage check works again. A new icon in the editor status bar shows % coverage for the file and can be clicked to highlight uncovered areas. (Can be disabled by setting `"hack.enableCoverageCheck": false`) - Updated Hack language syntax to the latest version - Removed some unnecessary PHP snippets - Fixed file path mapping in typechecker requests & responses to use the correct scheme (thanks [@fredemmott](https://github.com/fredemmott) for the thorough investigation) - -## v0.8.0 -- **HHVM Debugger (Alpha version)** — Launch scripts or attach to an HHVM server straight from VS Code. See the [debugger doc](https://github.com/PranayAgarwal/vscode-hack/blob/master/docs/debugging.md) for details on setup and usage. _This is a very early release. Please file any bugs at the Issues page._ -- Hack coverage check works again. A new icon in the editor status bar shows % coverage for the file and can be clicked to highlight uncovered areas. (Can be disabled by setting `"hack.enableCoverageCheck": false`) +- Documents are now recognized as Hack if they start with a shebang pointing to an HHVM executable (e.g. `#!/usr/bin/hhvm`), regardless of extension +- Syntax highlighting for `.hhconfig` file +- Added support for showing related messages for an error when running in non-LSP mode See the full list of releases and features added on the [Github releases page](https://github.com/PranayAgarwal/vscode-hack/releases) as well as the project [changelog](https://github.com/PranayAgarwal/vscode-hack/blob/master/CHANGELOG.md). @@ -37,6 +31,7 @@ See the full list of releases and features added on the [Github releases page](h * Go To/Peek Definition * Find All References * Hack Coverage Check +* [Debugger Support](https://github.com/PranayAgarwal/vscode-hack/blob/master/docs/debugging.md) ![Hack for Visual Studio Code](https://cloud.githubusercontent.com/assets/341507/19377806/d7838da0-919d-11e6-9873-f5a6aa48aea4.gif) diff --git a/package-lock.json b/package-lock.json index 5a84a27..4e95535 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-hack", - "version": "0.8.3", + "version": "0.8.4", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -527,7 +527,7 @@ }, "event-stream": { "version": "3.3.4", - "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", "dev": true, "requires": { diff --git a/package.json b/package.json index 071006d..ca2f70d 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-hack", - "version": "0.8.3", + "version": "0.8.4", "publisher": "pranayagarwal", "engines": { "vscode": "^1.22.0"