Skip to content

Commit 6393b4a

Browse files
committed
Bump version to 0.10.0, update CHANGELOG.md
1 parent 14029ee commit 6393b4a

File tree

5 files changed

+29
-11
lines changed

5 files changed

+29
-11
lines changed

Diff for: CHANGELOG.md

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

3+
## 0.10.0
4+
### Tuesday, March 14, 2017
5+
6+
These improvements are described in detail in the [vscode-powershell changelog](https://github.com/PowerShell/vscode-powershell/blob/master/CHANGELOG.md#0100)
7+
for its 0.10.0 release.
8+
9+
#### Language feature improvements
10+
11+
- Added new terminal-based integrated console
12+
- Added new code formatting settings with additional rules
13+
- Added Get-Credential, SecureString, and PSCredential support
14+
15+
#### Debugging improvements
16+
17+
- Connected primary debugging experience with integrated console
18+
- Added column number breakpoints
19+
- 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)
20+
321
## 0.9.0
422
### Thursday, January 19, 2017
523

Diff for: PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.9.0</VersionPrefix>
3+
<VersionPrefix>0.10.0</VersionPrefix>
44
<VersionSuffix>beta</VersionSuffix>
55
<Company>Microsoft</Company>
66
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>

Diff for: appveyor.yml

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

Diff for: module/PowerShellEditorServices/PowerShellEditorServices.psd1

+1-1
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.9.0'
15+
ModuleVersion = '0.10.0'
1616

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

Diff for: test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

+8-8
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.9.0";
37+
string editorServicesModuleVersion = "0.10.0";
3838

3939
string scriptArgs =
4040
string.Format(
@@ -135,18 +135,18 @@ protected void KillService()
135135
}
136136

137137
protected Task<TResult> SendRequest<TParams, TResult>(
138-
RequestType<TParams, TResult> requestType,
138+
RequestType<TParams, TResult> requestType,
139139
TParams requestParams)
140140
{
141-
return
141+
return
142142
this.protocolClient.SendRequest(
143-
requestType,
143+
requestType,
144144
requestParams);
145145
}
146146

147147
protected Task SendEvent<TParams>(EventType<TParams> eventType, TParams eventParams)
148148
{
149-
return
149+
return
150150
this.protocolClient.SendEvent(
151151
eventType,
152152
eventParams);
@@ -164,7 +164,7 @@ protected void QueueEventsForType<TParams>(EventType<TParams> eventType)
164164
eventType,
165165
(p, ctx) =>
166166
{
167-
return eventQueue.EnqueueAsync(p);
167+
return eventQueue.EnqueueAsync(p);
168168
});
169169
}
170170

@@ -204,7 +204,7 @@ protected async Task<TParams> WaitForEvent<TParams>(
204204
eventTask = eventTaskSource.Task;
205205
}
206206

207-
await
207+
await
208208
Task.WhenAny(
209209
eventTask,
210210
Task.Delay(timeoutMilliseconds));
@@ -257,7 +257,7 @@ protected async Task<Tuple<TParams, RequestContext<TResponse>>> WaitForRequest<T
257257
requestTask = requestTaskSource.Task;
258258
}
259259

260-
await
260+
await
261261
Task.WhenAny(
262262
requestTask,
263263
Task.Delay(timeoutMilliseconds));

0 commit comments

Comments
 (0)