File tree 4 files changed +20
-3
lines changed
4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
# vscode-powershell Release History
2
2
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
+
3
20
## 1.3.0
4
21
### Friday, June 9, 2017
5
22
Original file line number Diff line number Diff line change 1
- version : ' 1.3.0 -insiders-{build}'
1
+ version : ' 1.3.1 -insiders-{build}'
2
2
image : Visual Studio 2017
3
3
clone_depth : 10
4
4
skip_tags : true
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " PowerShell" ,
3
3
"displayName" : " PowerShell" ,
4
- "version" : " 1.3.0 " ,
4
+ "version" : " 1.3.1 " ,
5
5
"publisher" : " ms-vscode" ,
6
6
"description" : " Develop PowerShell scripts in Visual Studio Code!" ,
7
7
"engines" : {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";
32
32
33
33
// NOTE: We will need to find a better way to deal with the required
34
34
// PS Editor Services version...
35
- var requiredEditorServicesVersion = "1.3.0 " ;
35
+ var requiredEditorServicesVersion = "1.3.1 " ;
36
36
37
37
var logger : Logger = undefined ;
38
38
var sessionManager : SessionManager = undefined ;
You can’t perform that action at this time.
0 commit comments