Skip to content

Commit 72a56ef

Browse files
committed
Bump version to 1.3.1, update CHANGELOG.md
1 parent 8c9c2bb commit 72a56ef

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

Diff for: CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# vscode-powershell Release History
22

3+
## 1.3.1
4+
### Friday, June 9, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [#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+
- [#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+
- [#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

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.3.0-insiders-{build}'
1+
version: '1.3.1-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

Diff for: src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";
3232

3333
// NOTE: We will need to find a better way to deal with the required
3434
// PS Editor Services version...
35-
var requiredEditorServicesVersion = "1.3.0";
35+
var requiredEditorServicesVersion = "1.3.1";
3636

3737
var logger: Logger = undefined;
3838
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)