Skip to content

Commit a364e4b

Browse files
committed
Bump version to 1.4.0, update CHANGELOG.md
1 parent 7eca46f commit a364e4b

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

CHANGELOG.md

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

3+
## 1.4.0
4+
### Wednesday, June 21, 2017
5+
6+
- [#517](https://github.com/PowerShell/PowerShellEditorServices/pull/517) -
7+
Added new `$psEditor.Workspace.NewFile()` API for creating a new untitled file
8+
in the host editor. Thanks [Doug Finke](https://github.com/dfinke)!
9+
10+
- [#520](https://github.com/PowerShell/PowerShellEditorServices/pull/520) -
11+
Added a new PowerShellEditorServices.VSCode module to contain functionality
12+
that will only appear in Visual Studio Code.
13+
14+
- [#523](https://github.com/PowerShell/PowerShellEditorServices/pull/523) -
15+
Added APIs and cmdlets for creating custom HTML content views in VS Code.
16+
See the *-VSCodeHtmlContentView cmdlets for more information.
17+
18+
- [#516](https://github.com/PowerShell/PowerShellEditorServices/pull/516) -
19+
Code formatting using PSScriptAnalyzer has now been moved server-side to use
20+
the standard textDocument/formatting and textDocument/rangeFormatting message
21+
types
22+
23+
- [#521](https://github.com/PowerShell/PowerShellEditorServices/pull/521) -
24+
Code formatting now accepts 3 code formatting presets, "Stroustrup", "Allman",
25+
and "OTBS" which correspond to the most common PowerShell formatting styles.
26+
27+
- [#518](https://github.com/PowerShell/PowerShellEditorServices/pull/518) -
28+
Added `-DebugServiceOnly` parameter to `Start-EditorServicesHost` which enables
29+
launching an Editor Services session purely for debugging PowerShell code.
30+
31+
- [#519](https://github.com/PowerShell/PowerShellEditorServices/pull/519) -
32+
Added a Diagnostic logging level for the most verbose logging output which
33+
isn't always necessary for investigating issues. The logging of JSON message
34+
bodies has been moved to this logging level.
35+
336
## 1.3.2
437
### Monday, June 12, 2017
538

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.3.2</VersionPrefix>
3+
<VersionPrefix>1.4.0</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.3.2.{build}'
1+
version: '1.4.0.{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.3.2'
15+
ModuleVersion = '1.4.0'
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
@@ -35,7 +35,7 @@ protected async Task<Tuple<int, int>> LaunchService(
3535
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");
3636

3737
// TODO: Need to determine the right module version programmatically!
38-
string editorServicesModuleVersion = "1.3.2";
38+
string editorServicesModuleVersion = "1.4.0";
3939

4040
string scriptArgs =
4141
string.Format(

0 commit comments

Comments
 (0)