Skip to content

Commit 4c39342

Browse files
Merge pull request #2126 from PowerShell/release
Release `v3.16.0`
2 parents 27b279e + 3698e54 commit 4c39342

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

CHANGELOG.md

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

3+
## v3.16.0
4+
### Wednesday, January 03, 2024
5+
6+
- 🐛 📟 [vscode-powershell #4854](https://github.com/PowerShell/PowerShellEditorServices/pull/2125) - Update shell integration script to fix command decorations.
7+
- ✨ 🚨 [PowerShellEditorServices #2124](https://github.com/PowerShell/PowerShellEditorServices/pull/2124) - Test end-to-end with PowerShell Daily.
8+
- ✨ 👷 [PowerShellEditorServices #2114](https://github.com/PowerShell/PowerShellEditorServices/pull/2114) - Add PowerShell 7.4 SDK and `net8.0` framework.
9+
- ✨ 🚨 [PowerShellEditorServices #2110](https://github.com/PowerShell/PowerShellEditorServices/pull/2110) - Switch to GitHub Actions for all CI.
10+
311
## v3.15.0
412
### Thursday, December 07, 2023
513

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>3.15.0</VersionPrefix>
3+
<VersionPrefix>3.16.0</VersionPrefix>
44
<VersionSuffix></VersionSuffix>
55
<Company>Microsoft</Company>
66
<Copyright>© Microsoft Corporation.</Copyright>

PowerShellEditorServices.build.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ Task TestE2EPowerShell -If (-not $script:IsNix) Build, SetupHelpForTests, {
241241
# TODO: See https://github.com/PowerShell/vscode-powershell/issues/3886
242242
# Inheriting the module path for powershell.exe breaks things!
243243
$originalModulePath = $env:PSModulePath
244+
$env:PSModulePath = ""
244245
Invoke-BuildExec { & dotnet $script:dotnetTestArgs $script:NetFramework.PS74 }
245246
} finally {
246247
$env:PSModulePath = $originalModulePath
@@ -280,6 +281,7 @@ Task TestE2EPowerShellCLM -If (-not $script:IsNix) Build, SetupHelpForTests, {
280281
# TODO: See https://github.com/PowerShell/vscode-powershell/issues/3886
281282
# Inheriting the module path for powershell.exe breaks things!
282283
$originalModulePath = $env:PSModulePath
284+
$env:PSModulePath = ""
283285
Invoke-BuildExec { & dotnet $script:dotnetTestArgs $script:NetFramework.PS74 }
284286
} finally {
285287
[System.Environment]::SetEnvironmentVariable("__PSLockdownPolicy", $null, [System.EnvironmentVariableTarget]::Machine)

module/PowerShellEditorServices/PowerShellEditorServices.psd1

+1-1
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 = '3.15.0'
22+
ModuleVersion = '3.16.0'
2323

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

0 commit comments

Comments
 (0)