Skip to content

Release 0.10.0 #379

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# PowerShell Editor Services Release History

## 0.10.0
### Tuesday, March 14, 2017

These improvements are described in detail in the [vscode-powershell changelog](https://github.com/PowerShell/vscode-powershell/blob/master/CHANGELOG.md#0100)
for its 0.10.0 release.

#### Language feature improvements

- Added new terminal-based integrated console
- Added new code formatting settings with additional rules
- Added Get-Credential, SecureString, and PSCredential support

#### Debugging improvements

- Connected primary debugging experience with integrated console
- Added column number breakpoints
- Added support for step-in debugging of remote ScriptBlocks with [PowerShell Core 6.0.0-alpha.17](https://github.com/PowerShell/PowerShell/releases/tag/v6.0.0-alpha.17)

## 0.9.0
### Thursday, January 19, 2017

Expand Down
2 changes: 1 addition & 1 deletion PowerShellEditorServices.Common.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.9.0</VersionPrefix>
<VersionPrefix>0.10.0</VersionPrefix>
<VersionSuffix>beta</VersionSuffix>
<Company>Microsoft</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '0.9.0.{build}'
version: '0.10.0.{build}'
image: Visual Studio 2017 RC
clone_depth: 10
skip_tags: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PowerShellEditorServices.psm1'

# Version number of this module.
ModuleVersion = '0.9.0'
ModuleVersion = '0.10.0'

# ID used to uniquely identify this module
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'
Expand Down
16 changes: 8 additions & 8 deletions test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected async Task<Tuple<int, int>> LaunchService(
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");

// TODO: Need to determine the right module version programmatically!
string editorServicesModuleVersion = "0.9.0";
string editorServicesModuleVersion = "0.10.0";

string scriptArgs =
string.Format(
Expand Down Expand Up @@ -135,18 +135,18 @@ protected void KillService()
}

protected Task<TResult> SendRequest<TParams, TResult>(
RequestType<TParams, TResult> requestType,
RequestType<TParams, TResult> requestType,
TParams requestParams)
{
return
return
this.protocolClient.SendRequest(
requestType,
requestType,
requestParams);
}

protected Task SendEvent<TParams>(EventType<TParams> eventType, TParams eventParams)
{
return
return
this.protocolClient.SendEvent(
eventType,
eventParams);
Expand All @@ -164,7 +164,7 @@ protected void QueueEventsForType<TParams>(EventType<TParams> eventType)
eventType,
(p, ctx) =>
{
return eventQueue.EnqueueAsync(p);
return eventQueue.EnqueueAsync(p);
});
}

Expand Down Expand Up @@ -204,7 +204,7 @@ protected async Task<TParams> WaitForEvent<TParams>(
eventTask = eventTaskSource.Task;
}

await
await
Task.WhenAny(
eventTask,
Task.Delay(timeoutMilliseconds));
Expand Down Expand Up @@ -257,7 +257,7 @@ protected async Task<Tuple<TParams, RequestContext<TResponse>>> WaitForRequest<T
requestTask = requestTaskSource.Task;
}

await
await
Task.WhenAny(
requestTask,
Task.Delay(timeoutMilliseconds));
Expand Down