Skip to content

Commit ca71c9e

Browse files
committed
Bump version to 1.3.1, update CHANGELOG.md
1 parent 3d6cd41 commit ca71c9e

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

CHANGELOG.md

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

3+
## 1.3.1
4+
### Friday, June 9, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [PowerShell/vscode-powershell#850](https://github.com/PowerShell/vscode-powershell/issues/850) -
9+
Fixed an issue where lower-cased "describe" blocks were not identified by
10+
the CodeLens feature.
11+
12+
- [PowerShell/vscode-powershell#851](https://github.com/PowerShell/vscode-powershell/issues/851) -
13+
Fixed an issue where the language server would hang when typing out a describe
14+
block.
15+
16+
- [PowerShell/vscode-powershell#852](https://github.com/PowerShell/vscode-powershell/issues/852) -
17+
Fixed an issue where Pester test names would not be detected correctly when
18+
other arguments like -Tags were being used on a Describe block.
19+
320
## 1.3.0
421
### Friday, June 9, 2017
522

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.0</VersionPrefix>
3+
<VersionPrefix>1.3.1</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.0.{build}'
1+
version: '1.3.1.{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.0'
15+
ModuleVersion = '1.3.1'
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.0";
38+
string editorServicesModuleVersion = "1.3.1";
3939

4040
string scriptArgs =
4141
string.Format(

0 commit comments

Comments
 (0)