Skip to content

Commit 4dfeafc

Browse files
Merge pull request #1508 from PowerShell/release/v2.4.5
Bump version to `v2.4.5`
2 parents dfcbf0e + 3a97dce commit 4dfeafc

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.vsts-ci/templates/release-general.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ steps:
2121
alwaysCopy: true # So publishing works
2222
certificateId: 'CP-230012' # Authenticode certificate
2323
useMinimatch: true # This enables the use of globbing
24+
shouldSign: true # We always want to sign
2425
pattern: |
2526
# PowerShellEditorServices Script
2627
PowerShellEditorServices/*.{ps1,psd1,psm1,ps1xml}
@@ -39,6 +40,7 @@ steps:
3940
alwaysCopy: true # So publishing works
4041
certificateId: 'CP-231522' # Third-party certificate
4142
useMinimatch: true # This enables the use of globbing
43+
shouldSign: true # We always want to sign
4244
pattern: |
4345
**/MediatR.dll
4446
**/Nerdbank.Streams.dll

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# PowerShell Editor Services Release History
22

3+
## v2.4.5
4+
### Wednesday, June 23, 2021
5+
6+
- 👷🐛 [PowerShellEditorServices #1509](https://github.com/PowerShell/PowerShellEditorServices/issues/1509) Fix signing of files in release.
7+
38
## v2.4.4
49
### Wednesday, June 16, 2021
510

PowerShellEditorServices.Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>2.4.4</VersionPrefix>
3+
<VersionPrefix>2.4.5</VersionPrefix>
44
<VersionSuffix></VersionSuffix>
55
<Company>Microsoft</Company>
66
<Copyright>© Microsoft Corporation.</Copyright>

module/PowerShellEditorServices/PowerShellEditorServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RootModule = if ($PSEdition -eq 'Core')
1919
}
2020

2121
# Version number of this module.
22-
ModuleVersion = '2.4.4'
22+
ModuleVersion = '2.4.5'
2323

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

test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,10 +952,9 @@ public async Task CanSendCompletionAndCompletionResolveRequestAsync()
952952
}
953953

954954
[Trait("Category", "LSP")]
955-
[SkippableFact]
955+
[SkippableFact(Skip = "This test is too flaky right now.")]
956956
public async Task CanSendCompletionResolveWithModulePrefixRequestAsync()
957957
{
958-
Skip.If(IsLinux, "This depends on the help system, which is flaky on Linux.");
959958
await PsesLanguageClient
960959
.SendRequest<EvaluateRequestArguments>(
961960
"evaluate",

0 commit comments

Comments
 (0)