diff --git a/PSReadLine/Changes.txt b/PSReadLine/Changes.txt
index 9f949b61..0b99add8 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 c52fab08..f67e29e4 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 f0068012..0690e85c 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'