diff --git a/.ci/ci_release.yml b/.ci/ci_release.yml
index 706572091..924de1a50 100644
--- a/.ci/ci_release.yml
+++ b/.ci/ci_release.yml
@@ -248,7 +248,7 @@ stages:
BuildDropPath: $(signOutPath)
Build_Repository_Uri: 'https://github.com/powershell/powershellget'
PackageName: 'PowerShellGet'
- PackageVersion: '3.0.16'
+ PackageVersion: '3.0.17'
- pwsh: |
$modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules'
diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1
index 6c9289575..7a6f52089 100644
--- a/src/PowerShellGet.psd1
+++ b/src/PowerShellGet.psd1
@@ -3,7 +3,7 @@
@{
RootModule = './netstandard2.0/PowerShellGet.dll'
- ModuleVersion = '3.0.16'
+ ModuleVersion = '3.0.17'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
@@ -34,7 +34,7 @@
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
- Prerelease = 'beta16'
+ Prerelease = 'beta17'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
@@ -44,6 +44,28 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
+## 3.0.17-beta17
+
+### New Features
+- Add -TemporaryPath parameter to Install-PSResource, Save-PSResource, and Update-PSResource (#763)
+- Add String and SecureString as credential types in PSCredentialInfo (#764)
+- Add a warning for when the script installation path is not in Path variable (#750)
+- Expand acceptable paths for Publish-PSResource (Module root directory, module manifest file, script file)(#704)
+- Add -Force parameter to Register-PSResourceRepository cmdlet, to override an existing repository (#717)
+
+### Bug Fixes
+- Change casing of -IncludeXML to -IncludeXml (#739)
+- Update priority range for PSResourceRepository to 0-100 (#741)
+- Editorial pass on cmdlet reference (#743)
+- Fix issue when PSScriptInfo has no empty lines (#744)
+- Make ConfirmImpact low for Register-PSResourceRepository and Save-PSResource (#745)
+- Fix -PassThru for Set-PSResourceRepository cmdlet to return all properties (#748)
+- Rename -FilePath parameter to -Path for PSScriptFileInfo cmdlets (#765)
+- Fix RequiredModules description and add Find example to docs (#769)
+- Remove unneeded inheritance in InstallHelper.cs (#773)
+- Make -Path a required parameter for Save-PSResource cmdlet (#780)
+- Improve script validation for publishing and installing (#781)
+
## 3.0.16-beta16
### Bug Fixes
diff --git a/src/code/PowerShellGet.csproj b/src/code/PowerShellGet.csproj
index 5f6856f3b..5d6b67868 100644
--- a/src/code/PowerShellGet.csproj
+++ b/src/code/PowerShellGet.csproj
@@ -5,9 +5,9 @@
Library
PowerShellGet
PowerShellGet
- 3.0.16.0
- 3.0.16
- 3.0.16
+ 3.0.17.0
+ 3.0.17
+ 3.0.17
netstandard2.0
8.0