Skip to content

Commit ab65df4

Browse files
daxian-dbwSIRMARGIN
authored andcommitted
Remove ThreadJob module and update PSReadLine to 2.4.4-beta4 (PowerShell#26120)
1 parent c49e528 commit ab65df4

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/Modules/PSGalleryModules.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
<PackageReference Include="PackageManagement" Version="1.4.8.1" />
1616
<PackageReference Include="Microsoft.PowerShell.PSResourceGet" Version="1.2.0-preview3" />
1717
<PackageReference Include="Microsoft.PowerShell.Archive" Version="1.2.5" />
18-
<PackageReference Include="PSReadLine" Version="2.3.6" />
19-
<PackageReference Include="ThreadJob" Version="2.1.0" />
18+
<PackageReference Include="PSReadLine" Version="2.4.4-beta4" />
2019
<PackageReference Include="Microsoft.PowerShell.ThreadJob" Version="2.2.0" />
2120
</ItemGroup>
2221

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 -Match '^2.3.\d$'
15+
$module.Version | Should -Match '^2.4.\d$'
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 -Match '^2.3.\d$'
21+
$module.Version | Should -Match '^2.4.\d$'
2222
$module.Path | Should -Be (Join-Path -Path $PSHOME -ChildPath "Modules/PSReadLine/PSReadLine.psd1")
2323
}
2424

0 commit comments

Comments
 (0)