Skip to content

Commit

Permalink
Bump version to 1.3.1, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Jun 9, 2017
1 parent 3d6cd41 commit ca71c9e
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# PowerShell Editor Services Release History

## 1.3.1
### Friday, June 9, 2017

#### Fixes and improvements

- [PowerShell/vscode-powershell#850](https://github.com/PowerShell/vscode-powershell/issues/850) -
Fixed an issue where lower-cased "describe" blocks were not identified by
the CodeLens feature.

- [PowerShell/vscode-powershell#851](https://github.com/PowerShell/vscode-powershell/issues/851) -
Fixed an issue where the language server would hang when typing out a describe
block.

- [PowerShell/vscode-powershell#852](https://github.com/PowerShell/vscode-powershell/issues/852) -
Fixed an issue where Pester test names would not be detected correctly when
other arguments like -Tags were being used on a Describe block.

## 1.3.0
### Friday, June 9, 2017

Expand Down
2 changes: 1 addition & 1 deletion PowerShellEditorServices.Common.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.3.0</VersionPrefix>
<VersionPrefix>1.3.1</VersionPrefix>
<Company>Microsoft</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '1.3.0.{build}'
version: '1.3.1.{build}'
image: Visual Studio 2017
clone_depth: 10
skip_tags: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PowerShellEditorServices.psm1'

# Version number of this module.
ModuleVersion = '1.3.0'
ModuleVersion = '1.3.1'

# ID used to uniquely identify this module
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'
Expand Down
2 changes: 1 addition & 1 deletion test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected async Task<Tuple<int, int>> LaunchService(
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");

// TODO: Need to determine the right module version programmatically!
string editorServicesModuleVersion = "1.3.0";
string editorServicesModuleVersion = "1.3.1";

string scriptArgs =
string.Format(
Expand Down

0 comments on commit ca71c9e

Please sign in to comment.