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..5e016df9f 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'
@@ -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
'@
}
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