Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/issue-mgmt/CloseDupIssues.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class issue
$repo_name = "PowerShell/PSReadLine"
$root_url = "https://github.com/PowerShell/PSReadLine/issues"
$msg_upgrade = @"
Please upgrade to the [2.3.4 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.4) from PowerShell Gallery.
Please upgrade to the [2.3.5 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.5) from PowerShell Gallery.
See the [upgrading section](https://github.com/PowerShell/PSReadLine#upgrading) for instructions. Please let us know if you run into the same issue with the latest version.
"@

Expand Down Expand Up @@ -46,7 +46,7 @@ foreach ($item in $issues)
$body -match 'PSReadLine: 2\.2\.0-beta[12]')
{
$comment = @'
This issue was fixed in 2.2.0-beta3 version of PSReadLine. You can fix this by upgrading to the latest [2.3.4 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.4).
This issue was fixed in 2.2.0-beta3 version of PSReadLine. You can fix this by upgrading to the latest [2.3.5 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.5).
To upgrade, simply run `Install-Module PSReadLine -AllowPrerelease -Force` from your PowerShell console.

--------
Expand Down