From 2af0dfef69c98cdebce38f7635df13c9fc46a8f7 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2020 21:11:49 +0000 Subject: [PATCH 1/2] Bump PSReadLine from 2.0.1 to 2.0.2 in /src/Modules Bumps PSReadLine from 2.0.1 to 2.0.2. Signed-off-by: dependabot-preview[bot] --- src/Modules/PSGalleryModules.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Modules/PSGalleryModules.csproj b/src/Modules/PSGalleryModules.csproj index 1bbabbcfd17..613e3d5ce49 100644 --- a/src/Modules/PSGalleryModules.csproj +++ b/src/Modules/PSGalleryModules.csproj @@ -6,7 +6,7 @@ - + From 5090858dc9805a85cdf5dfab545ef34eaafb9649 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Mon, 8 Jun 2020 13:53:04 -0700 Subject: [PATCH 2/2] Update the target version of PSReadLine in test --- test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 b/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 index 14880823fcf..f09b979e241 100644 --- a/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 +++ b/test/powershell/Modules/PSReadLine/PSReadLine.Tests.ps1 @@ -12,13 +12,13 @@ Describe "PSReadLine" -tags "CI" { Import-Module PSReadLine $module = Get-Module PSReadLine $module.Name | Should -BeExactly 'PSReadLine' - $module.Version | Should -BeExactly '2.0.1' + $module.Version | Should -BeExactly '2.0.2' } It "Should be installed to `$PSHOME" { $module = Get-Module (Join-Path -Path $PSHOME -ChildPath "Modules" -AdditionalChildPath "PSReadLine") -ListAvailable $module.Name | Should -BeExactly 'PSReadLine' - $module.Version | Should -BeExactly '2.0.1' + $module.Version | Should -BeExactly '2.0.2' $module.Path | Should -Be (Join-Path -Path $PSHOME -ChildPath "Modules/PSReadLine/PSReadLine.psd1") }