Skip to content

Commit 87c2095

Browse files
authored
Merge pull request #433 from daviwil/release/0.12.1
Release 0.12.1
2 parents 06fba72 + 6f3c36a commit 87c2095

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

CHANGELOG.md

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

3+
## 0.12.1
4+
### Friday, April 7, 2017
5+
6+
- Fixed [vscode-powershell #645](https://github.com/PowerShell/vscode-powershell/issues/645) -
7+
"Go to Definition" or "Find References" now work in untitled scripts without
8+
crashing the session
9+
- Fixed [vscode-powershell #632](https://github.com/PowerShell/vscode-powershell/issues/632) -
10+
Debugger no longer hangs when launched while PowerShell session is still
11+
initializing
12+
- Fixed [#430](https://github.com/PowerShell/PowerShellEditorServices/issues/430) -
13+
Resolved occasional IntelliSense slowness by preventing the implicit loading
14+
of the PowerShellGet and PackageManagement modules. This change will be reverted
15+
once a bug in PackageManagement is fixed.
16+
- Fixed [#427](https://github.com/PowerShell/PowerShellEditorServices/issues/427) -
17+
Fixed an occasional crash when requesting editor IntelliSense while running
18+
a script in the debugger
19+
- Fixed [#416](https://github.com/PowerShell/PowerShellEditorServices/issues/416) -
20+
Cleaned up errors that would appear in the `$Errors` variable from the use
21+
of `Get-Command` and `Get-Help` in IntelliSense results
22+
323
## 0.12.0
424
### Tuesday, April 4, 2017
525

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.12.0</VersionPrefix>
3+
<VersionPrefix>0.12.1</VersionPrefix>
44
<VersionSuffix>beta</VersionSuffix>
55
<Company>Microsoft</Company>
66
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.12.0.{build}'
1+
version: '0.12.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 = '0.12.0'
15+
ModuleVersion = '0.12.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
@@ -34,7 +34,7 @@ protected async Task<Tuple<int, int>> LaunchService(
3434
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");
3535

3636
// TODO: Need to determine the right module version programmatically!
37-
string editorServicesModuleVersion = "0.12.0";
37+
string editorServicesModuleVersion = "0.12.1";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)