Skip to content

Commit d1541a9

Browse files
committed
Bump version to 1.4.1, update CHANGELOG.md
1 parent 9517088 commit d1541a9

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# PowerShell Editor Services Release History
22

3+
## 1.4.1
4+
### Thursday, June 22, 2017
5+
6+
- [PowerShell/PowerShellEditorServices#529](https://github.com/PowerShell/PowerShellEditorServices/issues/529) -
7+
Fixed an issue with loading the PowerShellEditorServices module in PowerShell Core 6.0.0-beta3
8+
39
## 1.4.0
410
### Wednesday, June 21, 2017
511

PowerShellEditorServices.Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.4.0</VersionPrefix>
3+
<VersionPrefix>1.4.1</VersionPrefix>
44
<Company>Microsoft</Company>
55
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
66
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.4.0.{build}'
1+
version: '1.4.1.{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

module/PowerShellEditorServices/PowerShellEditorServices.psd1

Lines changed: 1 addition & 1 deletion
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.4.0'
15+
ModuleVersion = '1.4.1'
1616

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

test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

Lines changed: 1 addition & 1 deletion
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.4.0";
38+
string editorServicesModuleVersion = "1.4.1";
3939

4040
string scriptArgs =
4141
string.Format(

0 commit comments

Comments
 (0)