Skip to content

Commit 918c176

Browse files
authored
[Ignore] Prepare 1.12.1 (#1865)
1 parent 656305e commit 918c176

File tree

6 files changed

+29
-12
lines changed

6 files changed

+29
-12
lines changed

CHANGELOG.md

+24-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
# vscode-powershell Release History
22

3-
## v1.12.0
4-
### Friday, March 29, 2019
3+
## v1.12.1
4+
### Wednesday, April 10, 2019
5+
6+
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)
57

6-
### Highlights
8+
- [vscode-PowerShell #1865](https://github.com/PowerShell/vscode-powershell/pull/1867) -
9+
Change casing of `powershell.codeformatting` settings for consistency:
10+
- `powershell.codeformatting.WhitespaceInsideBrace` is now `powershell.codeformatting.whitespaceInsideBrace`
11+
- `powershell.codeformatting.WhitespaceAroundPipe` is now `powershell.codeformatting.whitespaceAroundPipe`
12+
- [vscode-PowerShell #1852](https://github.com/PowerShell/vscode-PowerShell/pull/1852) -
13+
Turn `powershell.codeformatting.useCorrectCasing` setting off by default until PSSA issues are fixed (Thanks @bergmeister!)
14+
- [vscode-PowerShell #1837](https://github.com/PowerShell/vscode-PowerShell/pull/1837) -
15+
Do not use -EncodedCommand on Windows
716

8-
* Support for [PSScriptAnalyzer 1.18](https://github.com/PowerShell/PSScriptAnalyzer/releases/tag/1.18.0) 📝
9-
* The ability to debug any runspace in any process 🔎
10-
* Enable attach to process on Linux and macOS 🔎
17+
#### [PowerShellEditorServices](https://github.com/powershell/PowerShellEditorServices)
18+
19+
- [PowerShellEditorServices #906](https://github.com/PowerShell/PowerShellEditorServices/pull/906) -
20+
Fix New-EditorFile with no folder or no files open
21+
- [PowerShellEditorServices #908](https://github.com/PowerShell/PowerShellEditorServices/pull/908) -
22+
Fix crash in CodeLens with UNC paths on Windows (Thanks @rkeithhill!)
23+
- [PowerShellEditorServices #902](https://github.com/PowerShell/PowerShellEditorServices/pull/902) -
24+
Improve path auto-completion (Thanks @rkeithhill!)
25+
- [PowerShellEditorServices #910](https://github.com/PowerShell/PowerShellEditorServices/pull/910) -
26+
Fix UseCorrectCasing to be actually configurable via `powershell.codeFormatting.useCorrectCasing` (Thanks @bergmeister!)
1127

12-
There are a lot more goodies in this version. Checkout the changelog below!
28+
## v1.12.0
29+
### Friday, March 29, 2019
1330

1431
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)
1532

appveyor.yml

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

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.12.0",
4+
"version": "1.12.1",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import utils = require("./utils");
3737

3838
// NOTE: We will need to find a better way to deal with the required
3939
// PS Editor Services version...
40-
const requiredEditorServicesVersion = "1.12.0";
40+
const requiredEditorServicesVersion = "1.12.1";
4141

4242
let logger: Logger;
4343
let sessionManager: SessionManager;

tools/releaseBuild/Image/DockerFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1
2323

2424
# Add an environment variable for build versioning
2525
ENV VSTS_BUILD=1
26-
ENV VSTS_BUILD_VERSION=1.12.0
26+
ENV VSTS_BUILD_VERSION=1.12.1
2727

2828
# Uncomment to debug locally
2929
# RUN Import-Module ./containerFiles/dockerInstall.psm1; `

0 commit comments

Comments
 (0)