Skip to content

Commit c6746e7

Browse files
committed
Bump version to 1.2.1, update CHANGELOG.md
1 parent 8996745 commit c6746e7

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGELOG.md

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

3+
## 1.2.1
4+
### Thursday, June 1, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [#478](https://github.com/PowerShell/PowerShellEditorServices/issues/478) -
9+
Dynamic comment help snippets now generate parameter fields correctly
10+
when `<#` is typed above a `param()` block.
11+
12+
- [PowerShell/vscode-powershell#808](https://github.com/PowerShell/vscode-powershell/issues/808) -
13+
An extra `PS>` is no longer being written to the Integrated Console for
14+
some users who have custom prompt functions.
15+
16+
- [PowerShell/vscode-powershell#813](https://github.com/PowerShell/vscode-powershell/issues/813) -
17+
Finding references of symbols across the workspace now properly handles
18+
inaccessible folders and file paths
19+
20+
- [PowerShell/vscode-powershell#821](https://github.com/PowerShell/vscode-powershell/issues/821) -
21+
Note properties on PSObjects are now visible in the debugger's Variables
22+
view
23+
324
## 1.2.0
425
### Wednesday, May 31, 2017
526

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.2.0</VersionPrefix>
3+
<VersionPrefix>1.2.1</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.2.0.{build}'
1+
version: '1.2.1.{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.2.0'
15+
ModuleVersion = '1.2.1'
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.2.0";
37+
string editorServicesModuleVersion = "1.2.1";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)