Skip to content

Commit 68d4096

Browse files
Merge pull request #578 from PowerShell/rkeithhill/prep-release
Prep for 1.5.1 release.
2 parents 40d718b + ea354f5 commit 68d4096

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.5.1
4+
### Tuesday, November 14, 2017
5+
6+
- [PowerShell/PowerShellEditorServices #574](https://github.com/PowerShell/PowerShellEditorServices/issues/574) -
7+
Do not attempt to set breakpoints on files other than .ps1 and .psm1.
8+
9+
- [PowerShell/PowerShellEditorServices #570](https://github.com/PowerShell/PowerShellEditorServices/issues/570) -
10+
Fixed `Get-Help -ShowWindow` error in the PowerShell Integrated Console. However this fix does not address the issue with
11+
the help window appearing behind VSCode.
12+
13+
- [PowerShell/PowerShellEditorServices #567](https://github.com/PowerShell/PowerShellEditorServices/issues/567) -
14+
Fixed off-by-one error in ValidatePosition method.
15+
16+
- [PowerShell/vscode-powershell #1091](https://github.com/PowerShell/vscode-powershell/issues/1091) -
17+
Fixed crash when editing remote file using psedit by catching PSNotSupportedException.
18+
319
## 1.5.0
420
### Friday, October 27, 2017
521

@@ -689,4 +705,4 @@ Initial release with the following features:
689705
- Go to Definition of cmdlets and variables
690706
- Find References of cmdlets and variables
691707
- Document and workspace symbol discovery
692-
- Local script debugging and basic interactive console support
708+
- Local script debugging and basic interactive console support

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>1.5.0</VersionPrefix>
3+
<VersionPrefix>1.5.1</VersionPrefix>
44
<Company>Microsoft</Company>
55
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
66
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.5.0.{build}'
1+
version: '1.5.1.{build}'
22
image: Visual Studio 2017
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 = '1.5.0'
15+
ModuleVersion = '1.5.1'
1616

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

0 commit comments

Comments
 (0)