From 74c2ee4ab4f94c62db485f8198b422562984a108 Mon Sep 17 00:00:00 2001 From: Anam Navied Date: Mon, 8 May 2023 15:32:10 -0400 Subject: [PATCH 1/2] Update CHANGELOG for `3.0.21-beta21` --- CHANGELOG.md | 23 +++++++++++++++++++++++ src/PowerShellGet.psd1 | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 142f53ee7..7c8f6cfcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # CHANGELOG +## 3.0.21-beta21 + +### New Features +- add local API code and tests (#1065) +- Add Get-PSScriptFileInfo cmdlet (#839) +- Allow CredentialInfo parameter to accept a hashtable (#836) +- Automate updating `CHANGELOG.md` file (#817) + +### Bug Fixes +- Update properties on PSResourceInfo object (#1077) +- Rename PSScriptFileInfo and Get-PSResource cmdlets (#1071) +- fix ValueFromPipelineByPropertyName on Save, Install (#1070) +- add Help message for mandatory params across cmdlets (#1068) +- fix version range bug for Update-PSResource (#1067) +- Fix attribute bugfixes for Find and Install params (#1066) +- Correct Unexpected spelling of Unexpected (#1059) +- Resolve bug with Find-PSResource -Type Module not returning modules (#1050) +- fix verbose message for untrusted repos gaining trust (#841) +- Bugfix for Update cmdlet attempting to reinstall latest preview version (#834) +- Add SupportsWildcards() attribute to parameters accepting wildcards (#833) +- Perform Repository Trust Check at Install, not Search, Time (#831) +- Fix casing of `PSResource` in `Install-PSResource` (#820) + ## 3.0.20-beta20 - Move off of NuGet client APIs and use direct REST API calls for remote repositories (#1023) diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1 index 66eea7c87..2c6da42ac 100644 --- a/src/PowerShellGet.psd1 +++ b/src/PowerShellGet.psd1 @@ -45,6 +45,29 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +## 3.0.21-beta21 + +### New Features +- add local API code and tests (#1065) +- Add Get-PSScriptFileInfo cmdlet (#839) +- Allow CredentialInfo parameter to accept a hashtable (#836) +- Automate updating `CHANGELOG.md` file (#817) + +### Bug Fixes +- Update properties on PSResourceInfo object (#1077) +- Rename PSScriptFileInfo and Get-PSResource cmdlets (#1071) +- fix ValueFromPipelineByPropertyName on Save, Install (#1070) +- add Help message for mandatory params across cmdlets (#1068) +- fix version range bug for Update-PSResource (#1067) +- Fix attribute bugfixes for Find and Install params (#1066) +- Correct Unexpected spelling of Unexpected (#1059) +- Resolve bug with Find-PSResource -Type Module not returning modules (#1050) +- fix verbose message for untrusted repos gaining trust (#841) +- Bugfix for Update cmdlet attempting to reinstall latest preview version (#834) +- Add SupportsWildcards() attribute to parameters accepting wildcards (#833) +- Perform Repository Trust Check at Install, not Search, Time (#831) +- Fix casing of `PSResource` in `Install-PSResource` (#820) + ## 3.0.20-beta20 - Move off of NuGet client APIs and use direct REST API calls for remote repositories (#1023) From daea81adb4f469067c4c0fe3fb795e17896a6a00 Mon Sep 17 00:00:00 2001 From: Anam Navied Date: Mon, 8 May 2023 15:39:57 -0400 Subject: [PATCH 2/2] update ModuleVersion in neccessary files --- CHANGELOG.md | 10 +--------- src/PowerShellGet.psd1 | 14 +++----------- src/code/PowerShellGet.csproj | 6 +++--- 3 files changed, 7 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c8f6cfcd..4302f1cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,7 @@ ## 3.0.21-beta21 ### New Features -- add local API code and tests (#1065) -- Add Get-PSScriptFileInfo cmdlet (#839) -- Allow CredentialInfo parameter to accept a hashtable (#836) -- Automate updating `CHANGELOG.md` file (#817) +- Move off of NuGet client APIs for local repositories (#1065) ### Bug Fixes - Update properties on PSResourceInfo object (#1077) @@ -17,11 +14,6 @@ - Fix attribute bugfixes for Find and Install params (#1066) - Correct Unexpected spelling of Unexpected (#1059) - Resolve bug with Find-PSResource -Type Module not returning modules (#1050) -- fix verbose message for untrusted repos gaining trust (#841) -- Bugfix for Update cmdlet attempting to reinstall latest preview version (#834) -- Add SupportsWildcards() attribute to parameters accepting wildcards (#833) -- Perform Repository Trust Check at Install, not Search, Time (#831) -- Fix casing of `PSResource` in `Install-PSResource` (#820) ## 3.0.20-beta20 diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1 index 2c6da42ac..0b0b84862 100644 --- a/src/PowerShellGet.psd1 +++ b/src/PowerShellGet.psd1 @@ -3,7 +3,7 @@ @{ RootModule = './net472/PowerShellGet.dll' - ModuleVersion = '3.0.20' + ModuleVersion = '3.0.21' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' @@ -35,7 +35,7 @@ AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo') PrivateData = @{ PSData = @{ - Prerelease = 'beta20' + Prerelease = 'beta21' Tags = @('PackageManagement', 'PSEdition_Desktop', 'PSEdition_Core', @@ -48,10 +48,7 @@ ## 3.0.21-beta21 ### New Features -- add local API code and tests (#1065) -- Add Get-PSScriptFileInfo cmdlet (#839) -- Allow CredentialInfo parameter to accept a hashtable (#836) -- Automate updating `CHANGELOG.md` file (#817) +- Move off of NuGet client APIs for local repositories (#1065) ### Bug Fixes - Update properties on PSResourceInfo object (#1077) @@ -62,11 +59,6 @@ - Fix attribute bugfixes for Find and Install params (#1066) - Correct Unexpected spelling of Unexpected (#1059) - Resolve bug with Find-PSResource -Type Module not returning modules (#1050) -- fix verbose message for untrusted repos gaining trust (#841) -- Bugfix for Update cmdlet attempting to reinstall latest preview version (#834) -- Add SupportsWildcards() attribute to parameters accepting wildcards (#833) -- Perform Repository Trust Check at Install, not Search, Time (#831) -- Fix casing of `PSResource` in `Install-PSResource` (#820) ## 3.0.20-beta20 diff --git a/src/code/PowerShellGet.csproj b/src/code/PowerShellGet.csproj index 6083e56dd..7a3dab98c 100644 --- a/src/code/PowerShellGet.csproj +++ b/src/code/PowerShellGet.csproj @@ -5,9 +5,9 @@ Library PowerShellGet PowerShellGet - 3.0.20.0 - 3.0.20 - 3.0.20 + 3.0.21.0 + 3.0.21 + 3.0.21 net472;netstandard2.0 9.0