Skip to content

Commit 70c7f73

Browse files
committed
Bump version to 0.7.2, update CHANGELOG.md
1 parent 3308878 commit 70c7f73

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# PowerShell Editor Services Release History
22

3+
## 0.7.2
4+
### Friday, September 2, 2016
5+
6+
- Fixed #284: PowerShellContext.AbortException crashes when called more than once
7+
- Fixed #285: PSScriptAnalyzer settings are not being passed to Invoke-ScriptAnalyzer
8+
- Fixed #287: Language service crashes when invalid path chars are used in dot-sourced script reference
9+
310
## 0.7.1
411
### Tuesday, August 23, 2016
512

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ clone_depth: 10
55
skip_tags: true
66

77
environment:
8-
core_version: '0.7.1'
8+
core_version: '0.7.2'
99
prerelease_name: '-beta'
1010

1111
branches:

module/PowerShellEditorServices/PowerShellEditorServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.7.1'
15+
ModuleVersion = '0.7.2'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected async Task<Tuple<int, int>> LaunchService(
3434
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");
3535

3636
// TODO: Need to determine the right module version programmatically!
37-
string editorServicesModuleVersion = "0.7.1";
37+
string editorServicesModuleVersion = "0.7.2";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)