From c7aca90555d64f9c52d8e11715f0e667489c36bc Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Wed, 25 May 2022 12:22:41 -0700 Subject: [PATCH 1/2] Update changelog and pkg version --- .ci/ci_release.yml | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ src/PowerShellGet.psd1 | 2 +- src/code/PowerShellGet.csproj | 6 +++--- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.ci/ci_release.yml b/.ci/ci_release.yml index e3865843d..6aee46f35 100644 --- a/.ci/ci_release.yml +++ b/.ci/ci_release.yml @@ -244,7 +244,7 @@ stages: BuildDropPath: $(signOutPath) Build_Repository_Uri: 'https://github.com/powershell/powershellget' PackageName: 'PowerShellGet' - PackageVersion: '3.0.12' + PackageVersion: '3.0.13' - pwsh: | $modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules' diff --git a/CHANGELOG.md b/CHANGELOG.md index ee2512d2a..971f48232 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## 3.0.13-beta + +### New Features +- Implementation of -RequiredResourceFile and -RequiredResource parameters for Install-PSResource (#610, #592) +- Scope parameters for Get-PSResource and Uninstall-PSResource (#639) +- Support for credential persistence (#480 Thanks @cansuerdogan!) + +### Bug Fixes +- Bug fix for publishing scripts (#642) +- Bug fix for publishing modules with 'RequiredModules' specified in the module manifest (#640) + +### Changes +- 'SupportsWildcard' attribute added to Find-PSResource, Get-PSResource, Get-PSResourceRepository, Uninstall-PSResource, and Update-PSResource (#658) +- Updated help documentation (#651) +- -Repositories parameter changed to singular -Repository in Register-PSResource and Set-PSResource (#645) +- Better prerelease support for Uninstall-PSResource (#593) +- Rename PSResourceInfo's PrereleaseLabel property to match Prerelease column displayed (#591) +- Renaming of parameters -Url to -Uri (#551 Thanks @fsackur!) + ## 3.0.12-beta ### Changes diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1 index dcc368d03..764d901d6 100644 --- a/src/PowerShellGet.psd1 +++ b/src/PowerShellGet.psd1 @@ -3,7 +3,7 @@ @{ RootModule = './netstandard2.0/PowerShellGet.dll' - ModuleVersion = '3.0.12' + ModuleVersion = '3.0.13' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' diff --git a/src/code/PowerShellGet.csproj b/src/code/PowerShellGet.csproj index ccba80588..83ff3a8f3 100644 --- a/src/code/PowerShellGet.csproj +++ b/src/code/PowerShellGet.csproj @@ -5,9 +5,9 @@ Library PowerShellGet PowerShellGet - 3.0.12.0 - 3.0.12 - 3.0.12 + 3.0.13.0 + 3.0.13 + 3.0.13 netstandard2.0 8.0 From 3b70c0e7acc8f0183c1e57b87289c4c0fc886b5a Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Wed, 25 May 2022 12:33:17 -0700 Subject: [PATCH 2/2] Update release notes --- src/PowerShellGet.psd1 | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1 index 764d901d6..5e016df9f 100644 --- a/src/PowerShellGet.psd1 +++ b/src/PowerShellGet.psd1 @@ -40,7 +40,25 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' -### 3.0.12 beta release +## 3.0.13-beta + +### New Features +- Implementation of -RequiredResourceFile and -RequiredResource parameters for Install-PSResource (#610, #592) +- Scope parameters for Get-PSResource and Uninstall-PSResource (#639) +- Support for credential persistence (#480 Thanks @cansuerdogan!) + +### Bug Fixes +- Bug fix for publishing scripts (#642) +- Bug fix for publishing modules with 'RequiredModules' specified in the module manifest (#640) + +### Changes +- 'SupportsWildcard' attribute added to Find-PSResource, Get-PSResource, Get-PSResourceRepository, Uninstall-PSResource, and Update-PSResource (#658) +- Updated help documentation (#651) +- -Repositories parameter changed to singular -Repository in Register-PSResource and Set-PSResource (#645) +- Better prerelease support for Uninstall-PSResource (#593) +- Rename PSResourceInfo's PrereleaseLabel property to match Prerelease column displayed (#591) +- Renaming of parameters -Url to -Uri (#551 Thanks @fsackur!) + See change log (CHANGELOG.md) at https://github.com/PowerShell/PowerShellGet '@ }