Skip to content

Commit 2184540

Browse files
authored
Prepare for the 2.2.1-rc1 release of PSReadLine (#3188)
1 parent 3a9ff61 commit 2184540

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

PSReadLine/Changes.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### [2.2.1-rc1] - 2022-01-28
2+
3+
- Update build agent to use `PSMMS2019-Secure` per requirement (#3174, #3187)
4+
- Update the `HelpInfoURI` to point to the latest help content (#3171)
5+
- Update the version of PowerShell nuget packages to 7.2.0 (#3170)
6+
- Update `README.md` with updated links to content helping get set up (#3149, #3152) (Thanks @cgorshing!)
7+
- Make `Ctrl+r` and `Ctrl+s` in `Vi` edit mode work the same way as in `Emacs` edit mode (#3148) (Thanks @davetapley!)
8+
- Make `HistorySearchBackward` and `HistorySearchForward` able to navigate the list view (#3144)
9+
10+
[2.2.1-rc1]: https://github.com/PowerShell/PSReadLine/compare/v2.2.0-beta5...v2.2.1-rc1
11+
112
### [2.2.0-beta5] - 2022-01-05
213

314
- Improve `RecomputeInitialCoords` to be more robust and handle a couple special cases (#3074)

PSReadLine/PSReadLine.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<RootNamespace>Microsoft.PowerShell.PSReadLine</RootNamespace>
66
<AssemblyName>Microsoft.PowerShell.PSReadLine2</AssemblyName>
77
<NoWarn>$(NoWarn);CA1416</NoWarn>
8-
<AssemblyVersion>2.2.0.0</AssemblyVersion>
9-
<FileVersion>2.2.0</FileVersion>
10-
<InformationalVersion>2.2.0-beta5</InformationalVersion>
8+
<AssemblyVersion>2.2.1.0</AssemblyVersion>
9+
<FileVersion>2.2.1</FileVersion>
10+
<InformationalVersion>2.2.1-rc1</InformationalVersion>
1111
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
1212
<TargetFrameworks>net461;net6.0</TargetFrameworks>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

PSReadLine/PSReadLine.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
RootModule = 'PSReadLine.psm1'
33
NestedModules = @("Microsoft.PowerShell.PSReadLine2.dll")
4-
ModuleVersion = '2.2.0'
4+
ModuleVersion = '2.2.1'
55
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

tools/CheckHelp.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ try {
4646
$ProgressPreference = $savedProgressPreference
4747
}
4848

49-
$psReadLineAboutHelpFile = Get-ChildItem $psReadLineHelpDirectory -Include "about_PSReadLine.help.txt" -Recurse | ForEach-Object FullName
49+
## Get the path to the latest 'about_PSReadLine.help.txt' file.
50+
$psReadLineAboutHelpFile = Join-Path $psReadLineHelpDirectory "en-US" "about_PSReadLine.help.txt"
51+
if (-not (Test-Path $psReadLineAboutHelpFile)) {
52+
throw "The file '$psReadLineAboutHelpFile' should have been created by 'Update-Help', but it was not found."
53+
}
5054
$about_topic = Get-Content $psReadLineAboutHelpFile -Raw
5155

5256
#endregion

0 commit comments

Comments
 (0)