From 98d5610f7210924b79f553d982e10a9bd64dd52f Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 22 Oct 2025 12:12:04 -0700 Subject: [PATCH] Prepare for the v2.4.5 release of PSReadLine --- PSReadLine/Changes.txt | 8 ++++++++ PSReadLine/PSReadLine.csproj | 6 +++--- PSReadLine/PSReadLine.psd1 | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/PSReadLine/Changes.txt b/PSReadLine/Changes.txt index 9f949b617..0b99add82 100644 --- a/PSReadLine/Changes.txt +++ b/PSReadLine/Changes.txt @@ -1,3 +1,11 @@ +### [2.4.5] - 2025-10-22 + +- Replace `DOTNET_SKIP_FIRST_TIME_EXPERIENCE` with `DOTNET_NOLOGO` (#4916) (Thanks @xtqqczze!) +- Add the `ScreenReaderModeEnabled` property to formatting (#4970) +- Fix a null reference exception when showing parameter help (#4971) + +[2.4.5]: https://github.com/PowerShell/PSReadLine/compare/v2.4.4-beta4...v2.4.5 + ### [2.4.4-beta4] - 2025-08-28 - Fix `IsMutexPresent()` to avoid incorrect use of `GetLastWin32Error()` (#4910) diff --git a/PSReadLine/PSReadLine.csproj b/PSReadLine/PSReadLine.csproj index c52fab081..f67e29e4c 100644 --- a/PSReadLine/PSReadLine.csproj +++ b/PSReadLine/PSReadLine.csproj @@ -5,9 +5,9 @@ Microsoft.PowerShell.PSReadLine Microsoft.PowerShell.PSReadLine $(NoWarn);CA1416 - 2.4.4.0 - 2.4.4 - 2.4.4-beta4 + 2.4.5.0 + 2.4.5 + 2.4.5 true netstandard2.0 true diff --git a/PSReadLine/PSReadLine.psd1 b/PSReadLine/PSReadLine.psd1 index f0068012a..0690e85cc 100644 --- a/PSReadLine/PSReadLine.psd1 +++ b/PSReadLine/PSReadLine.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'PSReadLine.psm1' NestedModules = @("Microsoft.PowerShell.PSReadLine.dll") -ModuleVersion = '2.4.4' +ModuleVersion = '2.4.5' GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation'