From a1f850a126f40f55e363aa71f8a322ba2e6b7029 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2020 21:12:35 +0000 Subject: [PATCH 1/2] Bump PSReadLine from 2.0.0 to 2.0.1 in /src/Modules Bumps PSReadLine from 2.0.0 to 2.0.1. 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 cf9c8cb98a5..dec3d691eb4 100644 --- a/src/Modules/PSGalleryModules.csproj +++ b/src/Modules/PSGalleryModules.csproj @@ -6,7 +6,7 @@ - + From 7d5016f21976ac4c36f7a8811a651a31757dc284 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 1 Apr 2020 15:46:00 -0700 Subject: [PATCH 2/2] Fix tests --- 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 63dbb9a03b9..022e7a69574 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.0' + $module.Version | Should -BeExactly '2.0.1' } 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.0' + $module.Version | Should -BeExactly '2.0.1' $module.Path | Should -Be (Join-Path -Path $PSHOME -ChildPath "Modules/PSReadLine/PSReadLine.psd1") }