Skip to content

Commit 1f633fd

Browse files
committed
Bump version to 0.7.2, update CHANGELOG.md
1 parent 825513a commit 1f633fd

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# vscode-powershell Release History
22

3+
## 0.7.2
4+
### Friday, September 2, 2016
5+
6+
- Fixed #243: Debug adapter process has terminated unexpectedly
7+
- Fixed #264: Add check for OpenSSL on OS X before starting the language service
8+
- Fixed #271: PSScriptAnalyzer settings path isn't being passed along
9+
- Fixed #273: Debugger crashes after multiple runs
10+
- Fixed #274: Extension crashes on Ctrl+Hover
11+
312
## 0.7.1
413
### Tuesday, August 23, 2016
514

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "0.7.1",
4+
"version": "0.7.2",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import net = require('net');
2525

2626
// NOTE: We will need to find a better way to deal with the required
2727
// PS Editor Services version...
28-
var requiredEditorServicesVersion = "0.7.1";
28+
var requiredEditorServicesVersion = "0.7.2";
2929

3030
var powerShellProcess: cp.ChildProcess = undefined;
3131
var languageServerClient: LanguageClient = undefined;

0 commit comments

Comments
 (0)