Skip to content

Commit 294ce71

Browse files
committed
Bump version to 1.2.0, update CHANGELOG.md
1 parent f27da68 commit 294ce71

File tree

5 files changed

+29
-4
lines changed

5 files changed

+29
-4
lines changed

CHANGELOG.md

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

3+
## 1.2.0
4+
### Wednesday, May 31, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [#462](https://github.com/PowerShell/PowerShellEditorServices/issues/462) -
9+
Fixed crash when getting signature help for functions and scripts
10+
using invalid parameter attributes
11+
12+
- [PowerShell/vscode-powershell#763](https://github.com/PowerShell/vscode-powershell/issues/763) -
13+
Dynamic comment-based help snippets now work inside functions
14+
15+
- [PowerShell/vscode-powershell#710](https://github.com/PowerShell/vscode-powershell/issues/710) -
16+
Variable definitions can now be found across the workspace
17+
18+
- [PowerShell/vscode-powershell#771](https://github.com/PowerShell/vscode-powershell/issues/771) -
19+
Improved dynamic comment help snippet performance in scripts with many functions
20+
21+
- [PowerShell/vscode-powershell#774](https://github.com/PowerShell/vscode-powershell/issues/774) -
22+
Pressing Enter now causes custom prompt functions to be fully evaluated
23+
24+
- [PowerShell/vscode-powershell#770](https://github.com/PowerShell/vscode-powershell/issues/770) -
25+
Fixed issue where custom prompt function might be written twice when
26+
starting the integrated console
27+
328
## 1.1.0
429
### Thursday, May 18, 2017
530

PowerShellEditorServices.Common.props

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

appveyor.yml

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

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 = '1.1.0'
15+
ModuleVersion = '1.2.0'
1616

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

test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

+1-1
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.1.0";
37+
string editorServicesModuleVersion = "1.2.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)