Skip to content

Commit

Permalink
Bump version to 0.10.0, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Mar 14, 2017
1 parent 14029ee commit 6393b4a
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 11 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -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
@@ -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
@@ -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
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
Expand Up @@ -34,7 +34,7 @@ public class ServerTestsBase
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 void QueueEventsForType<TParams>(EventType<TParams> eventType)
eventTask = eventTaskSource.Task;
}

await
await
Task.WhenAny(
eventTask,
Task.Delay(timeoutMilliseconds));
Expand Down Expand Up @@ -257,7 +257,7 @@ protected void QueueEventsForType<TParams>(EventType<TParams> eventType)
requestTask = requestTaskSource.Task;
}

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

0 comments on commit 6393b4a

Please sign in to comment.