Skip to content

Commit 15467aa

Browse files
committed
Bump version to 1.0.0, update CHANGELOG.md
1 parent b2e4598 commit 15467aa

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

CHANGELOG.md

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

3+
## 1.0.0
4+
### Wednesday, May 10, 2017
5+
6+
We are excited to announce that we've reached version 1.0! For more information,
7+
please see the [official announcement](https://blogs.msdn.microsoft.com/powershell/2017/05/10/announcing-powershell-for-visual-studio-code-1-0/)
8+
on the PowerShell Team Blog.
9+
10+
#### Fixes and improvements
11+
12+
- Upgraded our Language Server Protocol support to [protocol version 3](https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md).
13+
14+
- Added basic module-wide function references support which searches all of the
15+
PowerShell script files within the current workspace for references and
16+
definitions.
17+
18+
- Fixed [vscode-powershell #698](https://github.com/PowerShell/vscode-powershell/issues/698) -
19+
When debugging scripts in the integrated console, the cursor position should now
20+
be stable after stepping through your code! Please let us know if you see any
21+
other cases where this issue appears.
22+
23+
- Fixed [vscode-powershell #626](https://github.com/PowerShell/vscode-powershell/issues/626) -
24+
Fixed an issue where debugging a script in one VS Code window would cause that script's
25+
output to be written to a different VS Code window in the same process.
26+
27+
- Fixed [vscode-powershell #618](https://github.com/PowerShell/vscode-powershell/issues/618) -
28+
Pressing enter on an empty command line in the Integrated Console no longer adds the
29+
empty line to the command history.
30+
31+
- Fixed [vscode-powershell #617](https://github.com/PowerShell/vscode-powershell/issues/617) -
32+
Stopping the debugger during a prompt for a mandatory script parameter no
33+
longer crashes the language server.
34+
35+
- Fixed [#428](https://github.com/PowerShell/PowerShellEditorServices/issues/428) -
36+
Debugger no longer hangs when you stop debugging while an input or choice prompt is
37+
active in the integrated console.
38+
339
## 0.12.1
440
### Friday, April 7, 2017
541

PowerShellEditorServices.Common.props

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.12.1</VersionPrefix>
4-
<VersionSuffix>beta</VersionSuffix>
3+
<VersionPrefix>1.0.0</VersionPrefix>
54
<Company>Microsoft</Company>
65
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
76
<PackageTags>PowerShell;editor;development;language;debugging</PackageTags>

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.12.1.{build}'
1+
version: '1.0.0.{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.1'
15+
ModuleVersion = '1.0.0'
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.1";
37+
string editorServicesModuleVersion = "1.0.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)