Skip to content

Commit 7545e76

Browse files
committed
Bump version to 0.12.0, update CHANGELOG.md
1 parent cfd4959 commit 7545e76

File tree

5 files changed

+31
-4
lines changed

5 files changed

+31
-4
lines changed

Diff for: CHANGELOG.md

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

3+
## 0.12.0
4+
### Tuesday, April 4, 2017
5+
6+
#### Fixes and improvements
7+
8+
- Added [#408](https://github.com/PowerShell/PowerShellEditorServices/pull/408) -
9+
Enabled debugging of untitled script files
10+
11+
- Added [#405](https://github.com/PowerShell/PowerShellEditorServices/pull/405) -
12+
Script column number is now reported in the top stack frame when the debugger
13+
stops to aid in displaying a column indicator in Visual Studio Code
14+
15+
- Fixed [#411](https://github.com/PowerShell/PowerShellEditorServices/issues/411) -
16+
Commands executed internally now interrupt the integrated console's command
17+
prompt
18+
19+
- Fixed [#409](https://github.com/PowerShell/PowerShellEditorServices/pull/409) -
20+
PowerShell session now does not crash when a breakpoint is hit outside of
21+
debug mode
22+
23+
- Fixed [#614](https://github.com/PowerShell/vscode-powershell/issues/614) -
24+
Auto variables are now populating correctly in the debugger. **NOTE**: There is
25+
a known issue where all of a script's variables begin to show up in the
26+
Auto list after running a script for the first time. This is caused by
27+
a change in 0.11.0 where we now dot-source all debugged scripts. We will
28+
provide an option for this behavior in the future
29+
330
## 0.11.0
431
### Wednesday, March 22, 2017
532

Diff for: PowerShellEditorServices.Common.props

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

Diff for: appveyor.yml

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

Diff for: 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.11.0'
15+
ModuleVersion = '0.12.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

Diff for: 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.11.0";
37+
string editorServicesModuleVersion = "0.12.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)