Skip to content

Commit 80b2351

Browse files
committed
v4.0.0: Drop support for PowerShell <7.4 and logging overhaul
PowerShell 7.2 LTS and 7.3 are now past end-of-support and are now unsupported. This is an incompatible API change so we're bumping the major version. Please update to PowerShell 7.4 LTS going forward. This release contains a logging overhaul which purposely removes our dependency on Serilog and should lead to improved stability with PowerShell 5.1 (by avoiding a major GAC assembly conflict).
1 parent def0fe4 commit 80b2351

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

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

3+
## v4.0.0
4+
### Monday, November 18, 2024
5+
6+
See more details at the GitHub Release for [v4.0.0](https://github.com/PowerShell/PowerShellEditorServices/releases/tag/v4.0.0).
7+
8+
Drop support for PowerShell <7.4 and logging overhaul
9+
10+
PowerShell 7.2 LTS and 7.3 are now past end-of-support and are now unsupported.
11+
This is an incompatible API change so we're bumping the major version.
12+
Please update to PowerShell 7.4 LTS going forward.
13+
14+
This release contains a logging overhaul which purposely removes our
15+
dependency on Serilog and should lead to improved stability with
16+
PowerShell 5.1 (by avoiding a major GAC assembly conflict).
17+
318
## v3.21.0
419
### Wednesday, October 30, 2024
520

PowerShellEditorServices.Common.props

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

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.21.0'
22+
ModuleVersion = '4.0.0'
2323

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

0 commit comments

Comments
 (0)