Skip to content

Commit db267b5

Browse files
committed
Bump version to 0.7.1, update CHANGELOG.md
1 parent acafb4c commit db267b5

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# PowerShell Editor Services Release History
22

3+
## 0.7.1
4+
### Tuesday, August 23, 2016
5+
6+
- Fixed PowerShell/vscode-powerShell#246: Restore default PSScriptAnalyzer ruleset
7+
- Fixed PowerShell/vscode-powershell#248: Extension fails to load on Windows 7 with PowerShell v3
8+
39
## 0.7.0
410
### Thursday, August 18, 2016
511

appveyor.yml

+1-1
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.0'
8+
core_version: '0.7.1'
99
prerelease_name: '-beta'
1010

1111
branches:

module/PowerShellEditorServices/PowerShellEditorServices.psd1

+3-3
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.0'
15+
ModuleVersion = '0.7.1'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'
@@ -33,7 +33,7 @@ Copyright = '(c) 2016 Microsoft. All rights reserved.'
3333
# PowerShellVersion = ''
3434

3535
# Name of the Windows PowerShell host required by this module
36-
#PowerShellHostName = ''
36+
# PowerShellHostName = ''
3737

3838
# Minimum version of the Windows PowerShell host required by this module
3939
# PowerShellHostVersion = ''
@@ -72,7 +72,7 @@ FunctionsToExport = @('Start-EditorServicesHost')
7272
CmdletsToExport = @()
7373

7474
# Variables to export from this module
75-
VariablesToExport = '*'
75+
VariablesToExport = @()
7676

7777
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
7878
AliasesToExport = @()

test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

+11-8
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,19 @@ 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";
3738

3839
string scriptArgs =
39-
"\"" + scriptPath + "\" " +
40-
"-EditorServicesVersion \"0.7.0\" " +
41-
"-HostName \\\"PowerShell Editor Services Test Host\\\" " +
42-
"-HostProfileId \"Test.PowerShellEditorServices\" " +
43-
"-HostVersion \"1.0.0\" " +
44-
"-BundledModulesPath \\\"" + modulePath + "\\\" " +
45-
"-LogLevel \"Verbose\" " +
46-
"-LogPath \"" + logPath + "\" ";
40+
string.Format(
41+
"\"" + scriptPath + "\" " +
42+
"-EditorServicesVersion \"{0}\" " +
43+
"-HostName \\\"PowerShell Editor Services Test Host\\\" " +
44+
"-HostProfileId \"Test.PowerShellEditorServices\" " +
45+
"-HostVersion \"1.0.0\" " +
46+
"-BundledModulesPath \\\"" + modulePath + "\\\" " +
47+
"-LogLevel \"Verbose\" " +
48+
"-LogPath \"" + logPath + "\" ",
49+
editorServicesModuleVersion);
4750

4851
if (waitForDebugger)
4952
{

0 commit comments

Comments
 (0)