Skip to content

Commit 010a1c8

Browse files
authored
Merge pull request #389 from daviwil/release/0.10.1
Release 0.10.1
2 parents 657c76b + abf78d7 commit 010a1c8

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

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

3+
## 0.10.1
4+
### Thursday, March 16, 2017
5+
6+
#### Fixes and improvements
7+
8+
- Fixed [#387](https://github.com/PowerShell/PowerShellEditorServices/issues/387) -
9+
Write-(Warning, Verbose, Debug) are missing message prefixes and foreground colors
10+
- Fixed [#382](https://github.com/PowerShell/PowerShellEditorServices/issues/382) -
11+
PSHostUserInterface implementation should set SupportsVirtualTerminal to true
12+
- Fixed [#192](https://github.com/PowerShell/PowerShellEditorServices/issues/192) -
13+
System-wide ExecutionPolicy of Bypass causes host process crash
14+
315
## 0.10.0
416
### Tuesday, March 14, 2017
517

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.10.0.{build}'
1+
version: '0.10.1.{build}'
22
image: Visual Studio 2017 RC
33
clone_depth: 10
44
skip_tags: true

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.10.0'
15+
ModuleVersion = '0.10.1'
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.10.0";
37+
string editorServicesModuleVersion = "0.10.1";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)