Skip to content

Commit 45acd1f

Browse files
committed
Bump version to 0.9.0, update CHANGELOG.md
1 parent 7eabf59 commit 45acd1f

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

Diff for: CHANGELOG.md

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

3+
## 0.9.0
4+
### Thursday, January 19, 2017
5+
6+
These improvements are described in detail in the [vscode-powershell changelog](https://github.com/PowerShell/vscode-powershell/blob/master/CHANGELOG.md#090)
7+
for its 0.9.0 release.
8+
9+
#### Language feature improvements
10+
11+
- Added PowerShell code formatting integration with PSScriptAnalyzer
12+
- Improved PSScriptAnalyzer execution, now runs asynchronously
13+
- Added Document symbol support for .psd1 files
14+
15+
#### Debugging improvements
16+
17+
- Remote session and debugging support via Enter-PSSession (PowerShell v4+)
18+
- "Attach to process/runspace" debugging support via Enter-PSHostProcess and Debug-Runspace (PowerShell v5+)
19+
- Initial `psedit` command support for loading files from remote sessions
20+
- Added language server protocol request for gathering PowerShell host processes for debugging
21+
- Many minor improvements to the debugging experience
22+
23+
#### $psEditor API improvements
24+
25+
- Added `FileContext.Close()` method to close an open file
26+
27+
#### Other fixes and improvements
28+
29+
- Fixed [#339](https://github.com/PowerShell/PowerShellEditorServices/issues/339):
30+
Prompt functions that return something other than string cause the debugger to crash
31+
332
## 0.8.0
433
### Friday, December 16, 2016
534

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 = '0.8.0'
15+
ModuleVersion = '0.9.0'
1616

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

Diff for: 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 = "0.8.0";
37+
string editorServicesModuleVersion = "0.9.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)