Skip to content

Commit ed4cd20

Browse files
Bump PSReadLine from 2.0.1 to 2.0.2 (PowerShell#12909)
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Dongbo Wang <dongbow@microsoft.com>
1 parent 22aaf9f commit ed4cd20

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Modules/PSGalleryModules.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackageReference Include="PowerShellGet" Version="2.2.4" />
77
<PackageReference Include="PackageManagement" Version="1.4.7" />
88
<PackageReference Include="Microsoft.PowerShell.Archive" Version="1.2.5" />
9-
<PackageReference Include="PSReadLine" Version="2.0.1" />
9+
<PackageReference Include="PSReadLine" Version="2.0.2" />
1010
<PackageReference Include="ThreadJob" Version="2.0.3" />
1111
<PackageReference Include="PSDesiredStateConfiguration" Version="2.0.5" />
1212
</ItemGroup>

test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Describe "PSReadLine" -tags "CI" {
1212
Import-Module PSReadLine
1313
$module = Get-Module PSReadLine
1414
$module.Name | Should -BeExactly 'PSReadLine'
15-
$module.Version | Should -BeExactly '2.0.1'
15+
$module.Version | Should -BeExactly '2.0.2'
1616
}
1717

1818
It "Should be installed to `$PSHOME" {
1919
$module = Get-Module (Join-Path -Path $PSHOME -ChildPath "Modules" -AdditionalChildPath "PSReadLine") -ListAvailable
2020
$module.Name | Should -BeExactly 'PSReadLine'
21-
$module.Version | Should -BeExactly '2.0.1'
21+
$module.Version | Should -BeExactly '2.0.2'
2222
$module.Path | Should -Be (Join-Path -Path $PSHOME -ChildPath "Modules/PSReadLine/PSReadLine.psd1")
2323
}
2424

0 commit comments

Comments
 (0)