diff --git a/tools/issue-mgmt/CloseDupIssues.ps1 b/tools/issue-mgmt/CloseDupIssues.ps1 index 28dad7d0..c29ffcd0 100644 --- a/tools/issue-mgmt/CloseDupIssues.ps1 +++ b/tools/issue-mgmt/CloseDupIssues.ps1 @@ -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.3 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.3) from PowerShell Gallery. +Please upgrade to the [2.3.4 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.4) 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. "@ @@ -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.3 version of PSReadLine](https://www.powershellgallery.com/packages/PSReadLine/2.3.3). +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). To upgrade, simply run `Install-Module PSReadLine -AllowPrerelease -Force` from your PowerShell console. --------