Skip to content

Commit aa893b2

Browse files
prep for 1.6.0 release (#628)
* prep for 1.6.0 release. * add numbers
1 parent b057bb7 commit aa893b2

File tree

4 files changed

+72
-3
lines changed

4 files changed

+72
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.6.0
4+
### Thursday, February 22, 2018
5+
6+
#### Fixes and Improvements
7+
8+
- [PowerShell/vscode-powershell #863](https://github.com/PowerShell/vscode-powershell/issues/863) -
9+
Eliminate duplicate dgb prompt.
10+
11+
- [PowerShell/PowerShellEditorServices #626](https://github.com/PowerShell/PowerShellEditorServices/pull/626) -
12+
Switch to w3c log file timestamp format.
13+
14+
- [PowerShell/vscode-powershell #907](https://github.com/PowerShell/vscode-powershell/issues/907) -
15+
Track tempIntegratedConsole launch param, do not exit when session ends.
16+
17+
- [PowerShell/vscode-powershell #1159](https://github.com/PowerShell/vscode-powershell/issues/1159) -
18+
Fix PSES crash on debug start when function breakpoint defined.
19+
20+
- [PowerShell/PowerShellEditorServices #586](https://github.com/PowerShell/PowerShellEditorServices/issues/586) -
21+
Add build.ps1 to follow consistent guidelines.
22+
23+
- [PowerShell/PowerShellEditorServices #414](https://github.com/PowerShell/PowerShellEditorServices/issues/414) -
24+
Enable piping text to `psedit` to open a new untitled buffer.
25+
26+
- [PowerShell/PowerShellEditorServices #413](https://github.com/PowerShell/PowerShellEditorServices/issues/413) -
27+
Enable piping multiple file paths through `psedit` to open those files.
28+
29+
- [PowerShell/vscode-powershell #1185](https://github.com/PowerShell/vscode-powershell/issues/1185) -
30+
Fix `PowerShell: Expand Alias` command in macOS.
31+
32+
- [PowerShell/PowerShellEditorServices #612](https://github.com/PowerShell/PowerShellEditorServices/issues/612),
33+
[PowerShell/vscode-powershell](https://github.com/PowerShell/vscode-powershell/issues/908) -
34+
Fix macOS/linux crash with "too many open files".
35+
36+
- [PowerShell/PowerShellEditorServices #528](https://github.com/PowerShell/PowerShellEditorServices/issues/528) -
37+
Change psedit to Open-EditorFile and alias psedit to it.
38+
39+
- [PowerShell/PowerShellEditorServices #597](https://github.com/PowerShell/PowerShellEditorServices/issues/597),
40+
[PowerShell/vscode-powershell #789](https://github.com/PowerShell/vscode-powershell/issues/789) -
41+
Fix remote editing in PSCore by fixing *-Content calls in psedit scripts and setting ComputerName default.
42+
43+
- [PowerShell/PowerShellEditorServices #598](https://github.com/PowerShell/PowerShellEditorServices/pull/598) -
44+
Improve error logging for exec of pscommands.
45+
46+
- [PowerShell/PowerShellEditorServices #594](https://github.com/PowerShell/PowerShellEditorServices/pull/594) -
47+
Fixed markdown typo to correct the link to the contributing guidelines. Thanks to [dee-see](https://github.com/dee-see)!
48+
49+
- [PowerShell/vscode-powershell #987](https://github.com/PowerShell/vscode-powershell/issues/987),
50+
[PowerShell/vscode-powershell #1107](https://github.com/PowerShell/vscode-powershell/issues/1107),
51+
[PowerShell/PowerShellEditorServices #554](https://github.com/PowerShell/PowerShellEditorServices/issues/554),
52+
[PowerShell/vscode-powershell #1146](https://github.com/PowerShell/vscode-powershell/issues/1146),
53+
[PowerShell/vscode-powershell #1119](https://github.com/PowerShell/vscode-powershell/issues/1119),
54+
[PowerShell/vscode-powershell #120](https://github.com/PowerShell/vscode-powershell/issues/120) -
55+
Fix debugger step through on Unix platforms.
56+
57+
- [PowerShell/PowerShellEditorServices #590](https://github.com/PowerShell/PowerShellEditorServices/pull/590) -
58+
Add .Save() to FileContext API.
59+
60+
- [PowerShell/PowerShellEditorServices #588](https://github.com/PowerShell/PowerShellEditorServices/pull/588) -
61+
Fix bad pssa settings path crashes PSES.
62+
63+
- [PowerShell/PowerShellEditorServices #582](https://github.com/PowerShell/PowerShellEditorServices/issues/582) -
64+
Fix Very Large String crashes PS Editor Services.
65+
66+
- [PowerShell/vscode-powershell #1114](https://github.com/PowerShell/vscode-powershell/issues/1114) -
67+
Fix breakpoint on nonexisting file.
68+
69+
- [PowerShell/vscode-powershell #1014](https://github.com/PowerShell/vscode-powershell/issues/1014) -
70+
Fix crash of PSES on startup when workspace folder has [] in path.
71+
372
## 1.5.1
473
### Tuesday, November 14, 2017
574

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.1</VersionPrefix>
3+
<VersionPrefix>1.6.0</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.1.{build}'
1+
version: '1.6.0.{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.1'
15+
ModuleVersion = '1.6.0'
1616

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

0 commit comments

Comments
 (0)