Skip to content

Commit c01145c

Browse files
committed
Bump version to 1.1.0, update CHANGELOG.md
1 parent 840d0d0 commit c01145c

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

CHANGELOG.md

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

3+
## 1.1.0
4+
### Thursday, May 18, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [#452](https://github.com/PowerShell/PowerShellEditorServices/pull/452) -
9+
Added the `powerShell/getCommentHelp` request type for requesting a snippet-style
10+
text edit to add comment-based help to a function defined at a particular location.
11+
12+
- [#455](https://github.com/PowerShell/PowerShellEditorServices/pull/455) -
13+
Added the `powerShell/startDebugger` notification type to notify the editor that it
14+
should activate its debugger because a breakpoint has been hit in the session while
15+
no debugger client was attached.
16+
17+
- [#663](https://github.com/PowerShell/vscode-powershell/issues/663) and [#689](https://github.com/PowerShell/vscode-powershell/issues/689) -
18+
We now write the errors and Write-Output calls that occur while loading profile
19+
scripts so that it's easier to diagnose issues with your profile scripts.
20+
321
## 1.0.0
422
### Wednesday, May 10, 2017
523

PowerShellEditorServices.Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.0.0</VersionPrefix>
3+
<VersionPrefix>1.1.0</VersionPrefix>
44
<Company>Microsoft</Company>
55
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
66
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
version: '1.0.0.{build}'
1+
version: '1.1.0.{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true
55

66
branches:
77
only:
88
- master
9-
- develop
109

1110
environment:
1211
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Don't download unneeded packages

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 = '1.0.0'
15+
ModuleVersion = '1.1.0'
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 = "1.0.0";
37+
string editorServicesModuleVersion = "1.1.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)