Skip to content

Commit dafae03

Browse files
[Ignore] Prep for 2.0.0-preview.1 release (#861)
* Prep for 2.0.0-preview.1 release * powershell modules only deal with Version types * suffix * update date * spaces * mini-announcement * address feedback
1 parent a0e2237 commit dafae03

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

CHANGELOG.md

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

3+
## v2.0.0-preview.1
4+
### Wednesday, January 23, 2019
5+
6+
#### Preview builds of PowerShell Editor Services are now available
7+
8+
#### What the first preview contains
9+
10+
The v2.0.0-preview.1 version of the extension is built on .NET Standard (enabling support for both Windows PowerShell and PowerShell Core from one assembly)
11+
12+
It also contains PSReadLine support in the integrated console for Windows behind a feature flag. PSReadLine provides a consistent and rich interactive experience, including syntax coloring and multi-line editing and history, in the PowerShell console, in Cloud Shell, and now in VSCode terminal. For more information on the benefits of PSReadLine, check out their [documentation](https://docs.microsoft.com/en-us/powershell/module/psreadline/about/about_psreadline?view=powershell-6).
13+
14+
To enable PSReadLine support in the Preview version on Windows, please add the following flag to your `Start-EditorServices.ps1` call:
15+
16+
```
17+
-FeatureFlags @('PSReadLine')
18+
```
19+
20+
HUGE thanks to @SeeminglyScience for all his amazing work getting PSReadLine working in PowerShell Editor Services!
21+
22+
#### Breaking Changes
23+
24+
Due to the above changes, this version of the PowerShell Editor Services only works with Windows PowerShell 5.1 and PowerShell Core 6.
25+
26+
- [PowerShellEditorServices #792](https://github.com/PowerShell/PowerShellEditorServices/pull/792) -
27+
Add Async suffix to async methods (Thanks @dee-see!)
28+
- [PowerShellEditorServices #775](https://github.com/PowerShell/PowerShellEditorServices/pull/775) -
29+
Removed ShowOnlineHelp Message (Thanks @corbob!)
30+
- [PowerShellEditorServices #769](https://github.com/PowerShell/PowerShellEditorServices/pull/769) -
31+
Set Runspaces to use STA when running in Windows PowerShell
32+
- [PowerShellEditorServices #741](https://github.com/PowerShell/PowerShellEditorServices/pull/741) -
33+
Migrate to netstandard2.0 and PSStandard
34+
- [PowerShellEditorServices #672](https://github.com/PowerShell/PowerShellEditorServices/pull/672) -
35+
PSReadLine integration (Thanks @SeeminglyScience!)
36+
337
## v1.10.2
438
### Tuesday, December 18, 2018
539

PowerShellEditorServices.Common.props

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>2.0.0</VersionPrefix>
4+
<VersionSuffix>preview.1</VersionSuffix>
45
<Company>Microsoft</Company>
56
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
67
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

0 commit comments

Comments
 (0)